hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
22d945c2c5a741ce1f77ab4ed1837cfb6d89ad6f | 18,113 | cpp | C++ | opt/cfs_opt.cpp | onecoolx/xoc | bf8a18cb19826a9f210abf68de21bc684e3e35bf | [
"BSD-3-Clause"
] | 111 | 2015-08-21T01:53:55.000Z | 2022-03-07T12:24:30.000Z | opt/cfs_opt.cpp | onecoolx/xoc | bf8a18cb19826a9f210abf68de21bc684e3e35bf | [
"BSD-3-Clause"
] | 3 | 2016-02-19T03:22:49.000Z | 2020-11-25T07:26:48.000Z | opt/cfs_opt.cpp | onecoolx/xoc | bf8a18cb19826a9f210abf68de21bc684e3e35bf | [
"BSD-3-Clause"
] | 17 | 2015-08-06T03:10:28.000Z | 2021-03-28T11:17:51.000Z | /*@
XOC Release License
Copyright (c) 2013-2014, Alibaba Group, All rights reserved.
compiler@aliexpress.com
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Su Zhenyu nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
author: Su Zhenyu
@*/
#include "cominc.h"
#include "comopt.h"
namespace xoc {
#define TRY_NUM 100 //Defined the maximum number of trials
//If the IF has a nested IF in the ELSE part with identical THEN stmt:
// IF (A) {
// S1;
// } ELSE {
// IF (B) {
// S1;
// } ELSE {
// S2;
// }
// }
//
//transform it to:
//
// IF (A || B) { S1; } ELSE { S2; }
//
//Note S1 can be the empty statement.
//Since this is done bottom up, multiple occurrences of the identical THEN
//stmts can be transformed. If tranformed, the new IF statement is returned;
//otherwise, the original IF.
bool CfsOpt::transformIf4(IR ** head, IR ** ir)
{
//TODO.
DUMMYUSE(ir);
DUMMYUSE(head);
return false;
}
//If the given IF has a nested IF in the THEN part with identical ELSE stmt:
//
// IF (A) THEN { if (B) THEN S1; ELSE S2; } ELSE S2;
//
//transform it to:
//
// IF (A && B) THEN S1; ELSE S2;
//
//S2 can be the empty statement.
//Since this is done bottom up, multiple occurrences of the identical ELSE
//stmts can be commonized. If tranformed, the new IF statement is returned;
//otherwise, the original IF.
bool CfsOpt::transformIf5(IR ** head, IR ** ir)
{
//TODO.
DUMMYUSE(ir);
DUMMYUSE(head);
return false;
}
//Control flow struct optimizations.
//Transform follow struct to do-while loop
//
// LABEL:
// IR-List
// IF DET
// GOTO LABEL
// ...(DEAD CODE)
// ELSE
// FALSE-PART
// ENDIF
//
//is replace by
// LABEL:
// DO {
// IR-List
// } WHILE DET
// FALSE-PART
bool CfsOpt::transformToDoWhile(IR ** head, IR ** ir)
{
ASSERTN(head != nullptr && *head != nullptr, ("invalid parameter"));
if (!(*ir)->is_lab()) { return false; }
IR * prev = (*ir)->get_prev();
UINT num = 0;
for (IR * t = *ir; t != nullptr && num < TRY_NUM; t = t->get_next(), num++) {
if (!t->is_if()) { continue; }
if (IF_truebody(t) != nullptr &&
IF_truebody(t)->is_goto() &&
isSameLabel(LAB_lab((*ir)), GOTO_lab(IF_truebody(t)))) {
//Start transform.
IR * dowhile = m_rg->buildDoWhile(m_rg->dupIRTree(IF_det(t)),
nullptr);
IR * if_stmt = t;
t = (*ir)->get_next();
while (t != nullptr && t != if_stmt) {
IR * c = t;
t = t->get_next();
xcom::remove(head, c);
xcom::add_next(&LOOP_body(dowhile), c);
}
dowhile->setParentPointer(true);
ASSERTN(t == if_stmt, ("illegal IR layout"));
xcom::remove(head, if_stmt);
if (IF_falsebody(if_stmt)) {
xcom::add_next(&dowhile, IF_falsebody(if_stmt));
IF_falsebody(if_stmt) = nullptr;
}
xcom::insertafter(ir, dowhile);
m_rg->freeIRTree(if_stmt); //free IF
//Do not remove label because it might be used as target of
//other branch stmt.
//e.g:
// int test()
// {
// ENTRY:
// goto BODY;
// BODY:
// if (a > 0) {
// goto BODY;
// }
// return 0;
// }
//xcom::remove(head, *ir);
//m_rg->freeIRTree(*ir); //free LABEL
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
}
return false;
}
//ONLY used in this file
static inline bool is_non_branch_ir(IR * ir)
{
return !ir->isConditionalBr() &&
!ir->isUnconditionalBr() &&
!ir->isMultiConditionalBr();
}
//The followed forms
// if (cond) {
// t=1
// a=1
// goto L1;
// }
// f=1
// goto L2;
// L1:
//
//is replaced with
//
// if (!cond) {
// f=1
// goto L2;
// }
// t=1
// a=1
// L1:
//
//'goto L1' is removed and free, and L1 is removed if it is not a target
//of some other instruction.
bool CfsOpt::transformIf1(IR ** head, IR ** ir)
{
ASSERTN(head && *head, ("invalid parameter"));
if ((*ir) == nullptr || !(*ir)->is_if()) { return false; }
IR * prev = (*ir)->get_prev();
//Check true part.
IR * t = IF_truebody(*ir);
while (t != nullptr) {
if (!is_non_branch_ir(t)) {
break;
}
t = t->get_next();
}
if (t != nullptr && t->get_next() == nullptr && t->is_goto()) {
IR * first_goto = t;
t = (*ir)->get_next();
UINT num = 0;
while (t != nullptr && num < TRY_NUM) {
if (!is_non_branch_ir(t)) { break; }
t = t->get_next();
num++;
}
if (t != nullptr && t->is_goto()) {
IR * second_goto = t;
if (IR_next(second_goto) != nullptr &&
IR_next(second_goto)->is_lab() &&
isSameLabel(GOTO_lab(first_goto),
LAB_lab(IR_next(second_goto)))) {
//Start transforming.
Refine::invertCondition(&IF_det(*ir), m_rg);
IR * new_list1 = nullptr;
IR * new_list2 = nullptr;
t = IF_truebody(*ir);
//Split true body of IF.
IR * last = nullptr;
while (t != first_goto) {
IR * c = t;
t = t->get_next();
xcom::remove(&IF_truebody(*ir), c);
xcom::add_next(&new_list1, &last, c);
}
ASSERTN(t && t == first_goto, ("invalid control flow"));
xcom::remove(&IF_truebody(*ir), first_goto);
m_rg->freeIRTree(first_goto);
//Split all irs between IF and L1.
t = (*ir)->get_next();
while (t != second_goto) {
IR * c = t;
t = t->get_next();
xcom::remove(head, c);
xcom::add_next(&new_list2, c);
}
ASSERTN(t != nullptr && t == second_goto, ("???"));
xcom::remove(head, second_goto);
xcom::add_next(&new_list2, second_goto);
//Swap new_list1 and new_list2
xcom::insertbefore(&IF_truebody(*ir), IF_truebody(*ir),
new_list2);
//Update the IR_parent for new_list2.
(*ir)->setParentPointer(true);
ASSERTN(IF_truebody(*ir) == new_list2,
("illegal insertbefore<T>"));
xcom::insertafter(ir, new_list1);
//Update the IR_parent for new_list1.
for (IR * tmp = new_list1; tmp != nullptr; tmp = IR_next(tmp)) {
IR_parent(tmp) = IR_parent(*ir);
}
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
}
}
return false;
}
//The followed forms
// if (cond) {
//
// } else {
// IR-list
// }
//
//is replaced by
//
// if (!cond) {
// IR-list
// }
bool CfsOpt::transformIf2(IR ** head, IR ** ir)
{
ASSERTN(head && *head, ("invalid parameter"));
if (*ir == nullptr || !(*ir)->is_if()) { return false; }
IR * prev = (*ir)->get_prev();
//Check true part
if (IF_truebody(*ir) == nullptr) {
if (IF_falsebody(*ir) == nullptr) {
xcom::remove(head, *ir);
m_rg->freeIRTree(*ir);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
Refine::invertCondition(&IF_det(*ir), m_rg);
//Swap true and false body.
IF_truebody(*ir) = IF_falsebody(*ir);
IF_falsebody(*ir) = nullptr;
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
return false;
}
//The followed forms
// x is signed
// IF(x > 0x7FFFFFFF) {a=1} ELSE {b=1} => b=1
// IF(x < 0x80000000) {a=1} ELSE {b=1} => b=1
//
// x is unsigned
// IF(x > 0xFFFFFFFF){a=1} ELSE {b=1} => b=1
// IF(x < 0x0) {a=1} ELSE {b=1} => b=1
bool CfsOpt::transformIf3(IR ** head, IR ** ir)
{
ASSERTN(head && *head, ("invalid parameter"));
if ((*ir) == nullptr || !(*ir)->is_if()) { return false; }
IR * prev = (*ir)->get_prev();
IR * det = IF_det(*ir);
if (det->is_gt()) {
IR * opnd0 = BIN_opnd0(det);
IR * opnd1 = BIN_opnd1(det);
if (opnd0->is_ld() &&
opnd0->is_int() &&
opnd1->is_const() &&
opnd1->is_int() &&
m_rg->getIntegerInDataTypeValueRange(opnd1) ==
m_rg->getMaxInteger(m_tm->getDTypeBitSize(
TY_dtype(opnd1->getType())),
opnd1->is_signed())) {
//e.g:
// x is unsigned, if(x>0xFFFFFFFF) {a=1} else {b=1} => b=1
// x is signed, if(x>0x7FFFFFFF) {a=1} else {b=1} => b=1
IR * allocir = nullptr;
if (IF_falsebody(*ir) != nullptr) {
allocir = m_rg->dupIRTree(IF_falsebody(*ir));
}
xcom::replace(head, *ir, allocir);
if (allocir != nullptr) {
IR_parent(allocir) = IR_parent(*ir);
}
m_rg->freeIRTree(*ir);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
} else if (det->is_lt()) {
IR * opnd0 = BIN_opnd0(det);
IR * opnd1 = BIN_opnd1(det);
if (opnd0->is_ld() &&
opnd0->is_int() &&
opnd1->is_const() &&
opnd1->is_int() &&
m_rg->getIntegerInDataTypeValueRange(opnd1) ==
m_rg->getMinInteger(m_tm->getDTypeBitSize(
TY_dtype(opnd1->getType())),
opnd1->is_signed())) {
//e.g:x is signed, IF(x < 0x80000000) {a=1} ELSE {b=1} => b=1
IR * allocir = nullptr;
if (IF_falsebody(*ir) != nullptr) {
allocir = m_rg->dupIRTree(IF_falsebody(*ir));
}
xcom::replace(head, *ir, allocir);
if (allocir != nullptr) {
IR_parent(allocir) = IR_parent(*ir);
}
m_rg->freeIRTree(*ir);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
} else if (opnd0->is_ld() &&
opnd1->is_const() &&
opnd0->is_uint() &&
CONST_int_val(opnd1) == 0) {
//e.g:x is unsigned, if(x<0) {a=1} else {b=1} => b=1
IR * allocir = nullptr;
if (IF_falsebody(*ir) != nullptr) {
allocir = m_rg->dupIRTree(IF_falsebody(*ir));
}
xcom::replace(head, *ir, allocir);
if (allocir != nullptr) {
IR_parent(allocir) = IR_parent(*ir);
}
m_rg->freeIRTree(*ir);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
}
return false;
}
//Hoist det of loop.
//e.g: while (a=10,b+=3,c<a) {
// IR-List;
// }
//
//be replaced by
//
// a = 10;
// b += 3;
// while (c<a) {
// IR-List;
// a = 10;
// b += 3;
// }
bool CfsOpt::hoistLoop(IR ** head, IR ** ir)
{
ASSERT0((*ir)->is_dowhile() || (*ir)->is_whiledo() || (*ir)->is_doloop());
ASSERTN(LOOP_det(*ir), ("DET is nullptr"));
IR * det = LOOP_det(*ir);
INT i = 0;
while (det != nullptr) {
i++;
det = det->get_next();
}
IR * new_list = nullptr, * new_body_list = nullptr;
if (i > 1) {
det = LOOP_det(*ir);
while (i > 1) {
IR * c = det;
ASSERTN(c->is_stmt(), ("Non-stmt ir should be remove "
"during reshape_ir_tree()"));
det = det->get_next();
xcom::remove(&LOOP_det(*ir), c);
xcom::add_next(&new_list, c);
i--;
}
new_body_list = m_rg->dupIRTreeList(new_list);
IR * prev = (*ir)->get_prev();
xcom::insertbefore(head, *ir, new_list);
xcom::add_next(&LOOP_body(*ir), new_body_list);
(*ir)->setParentPointer(false);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
return false;
}
//Canonicalize det of IF.
//e.g: if (a=10, b+=3, c<a) {...}
// will be replaced by
// a = 10;
// b += 3;
// if (c<a) {...}
bool CfsOpt::hoistIf(IR ** head, IR ** ir)
{
ASSERTN((*ir)->is_if(), ("requires IF"));
ASSERTN(IF_det(*ir), ("DET is nullptr"));
IR * det = IF_det(*ir);
INT i = 0;
while (det != nullptr) {
i++;
det = det->get_next();
}
IR * new_list = nullptr;
if (i > 1) {
det = IF_det(*ir);
while (i > 1) {
IR * c = det;
ASSERTN(c->is_stmt(), ("Non-stmt ir should be remove"
" during reshape_ir_tree()"));
det = det->get_next();
xcom::remove(&IF_det(*ir), c);
xcom::add_next(&new_list, c);
i--;
}
IR * prev = (*ir)->get_prev();
xcom::insertbefore(head, *ir, new_list);
if (prev == nullptr) {
*ir = *head;
} else {
*ir = prev;
}
return true;
}
return false;
}
bool CfsOpt::doCfsOpt(MOD IR ** ir_list, SimpCtx const& sc)
{
bool change = false;
for (IR * ir = *ir_list; ir != nullptr;) {
if (transformToDoWhile(ir_list, &ir)) {
change = true;
continue;
}
//if (ir->is_if() && transformIf1(ir_list, &ir)) {
// change = true;
// continue;
//}
//if (ir->is_if() && transformIf2(ir_list, &ir)) {
// change = true;
// continue;
//}
//if (ir->is_if() && transformIf3(ir_list, &ir)) {
// change = true;
// continue;
//}
switch (ir->getCode()) {
case IR_IF:
if (hoistIf(ir_list, &ir)) {
change = true;
//ir = *ir_list;
continue;
}
if (doCfsOpt(&IF_truebody(ir), sc)) {
change = true;
//ir = *ir_list;
continue;
}
if (doCfsOpt(&IF_falsebody(ir), sc)) {
change = true;
//ir = *ir_list;
continue;
}
break;
case IR_DO_WHILE:
case IR_WHILE_DO:
case IR_DO_LOOP:
if (hoistLoop(ir_list, &ir)) {
change = true;
//ir = *ir_list;
continue;
}
if (doCfsOpt(&LOOP_body(ir), sc)) {
change = true;
//ir = *ir_list;
continue;
}
break;
case IR_SWITCH:
if (doCfsOpt(&SWITCH_body(ir), sc)) {
change = true;
//ir = *ir_list;
continue;
}
break;
default:;
}
ir = ir->get_next();
}
return change;
}
//Control flow structure optimization and up to bottom walk through
//the IR tree. High level IRs include IR_IF, IR_WHILE_DO...
//High Level Reshaping phase consist of:
// 1. goto reduction
// 2. if restructure
// 3. loop restructure
bool CfsOpt::perform(SimpCtx const& sc)
{
START_TIMER(t, getPassName());
ASSERT0(!SIMP_if(&sc) &&
!SIMP_doloop(&sc) &&
!SIMP_dowhile(&sc) &&
!SIMP_whiledo(&sc) &&
!SIMP_switch(&sc) &&
!SIMP_break(&sc) &&
!SIMP_continue(&sc));
IR * irs = m_rg->getIRList();
bool change = doCfsOpt(&irs, sc);
if (change) {
m_rg->setIRList(irs);
}
END_TIMER(t, getPassName());
return change;
}
} //namespace xoc
| 27.780675 | 81 | 0.474521 |
698ae14eedda34eea05fc5272c4ec2d80c73f47c | 5,770 | lua | Lua | tools/swept/sys/sweeper.lua | suilteam/suil | 5cc143891147cb9bec1448d3f319cead9b4ccad9 | [
"MIT"
] | 2 | 2018-09-21T05:55:46.000Z | 2018-10-29T13:51:00.000Z | tools/swept/sys/sweeper.lua | suilteam/suil | 5cc143891147cb9bec1448d3f319cead9b4ccad9 | [
"MIT"
] | 7 | 2016-06-08T13:17:27.000Z | 2016-06-27T06:50:29.000Z | tools/swept/sys/sweeper.lua | suilteam/suil | 5cc143891147cb9bec1448d3f319cead9b4ccad9 | [
"MIT"
] | 1 | 2018-09-21T05:55:49.000Z | 2018-09-21T05:55:49.000Z | --
-- Created by IntelliJ IDEA.
-- User: dc
-- Date: 2020-03-04
-- Time: 12:29 a.m.
-- To change this template use File | Settings | File Templates.
--
local Reporter = import('sys/reporter')
TestCase, Fixture = import('sys/testcase')
local Testit = setmetatable({
applyFilters = function(this, logger, files, filters)
local function includeFile(file)
for _,filter in ipairs(filters) do
if file:find(filter.expr.F) then
if filter.ex then return false,filter.expr else return true, filter.expr end
end
end
return #filters == 0
end
local output = {}
for _, file in ipairs(files) do
local ok,expr = includeFile(file)
if ok then
output[#output+1] = {file = file, T = expr.T}
else
logger:dbg("test file '%s' filtered out by filter ~%s",
file, (expr and expr.F or ''))
end
end
return output
end,
resolveFilters = function(this, logger, filters)
assert(filters and type(filters) == 'table', "invalid filter list provided")
local output = {}
local hasInclusive = false
for i,filter in ipairs(filters) do
if type(filter) ~= 'string' or not filter then
logger:err("ignoring filter #%d (%s) is invalid, it has invalid format", i, tostring(filter or ''))
else
local ex = filter:byte(1) == string.byte('~', 1)
if ex then
filter = filter:sub(2)
end
hasInclusive = hasInclusive or not(ex)
local parts = filter:split(':')
assert(#parts < 3, "invalid filter, can be file filter or with a test filter")
local expr = {F = parts[1]}
if parts[2] then expr.T = parts[2] end
output[#output+1] = {ex = ex, expr = expr}
end
end
if not hasInclusive then
-- this is very important, if all filters are exclusive and a file
-- does not match any of them, this will ensure the file is included
output[#output + 1] = {expr = {F = '.*'}}
end
return output
end
}, {
__call = function(this)
if not pathExists(Swept.Config.root) then
Log:err("tests directory '"..Swept.Config.root.."' does not exist")
return false
end
local files = _find(Swept.Config.root, '-name', "'test_*.lua'"):s():split('\r\n')
if #files == 0 then
Log:wrn("found 0 test cases in directory '"..Swept.Config.root.."'")
return false
end
local filters = this:resolveFilters(Log, Swept.Config.filters)
local enabledFiles = files
local filesTable = false
if #filters > 0 then
filesTable = true
enabledFiles = this:applyFilters(Log, files, filters)
end
if #enabledFiles == 0 then
Log:wrn("all test files filtered out, nothing to execute")
return false
end
local Report = Reporter.Fanout({
junit = Reporter.Structured(Reporter.JUnit),
default = Reporter.Console
})
local cleanRoot = cleanString(Swept.Config.root)
Log:inf("proceeding with %s test files", #enabledFiles)
for _,value in pairs(enabledFiles) do
local testFile = filesTable and value.file or value
local testFilter = filesTable and value.T or nil
local short_path = testFile:gsub(cleanRoot, '${ROOT}')
local ctx = setmetatable({ reporter = Report, logger = Log }, {
__index = function (self, key)
if self.reporter[key] then
return self.reporter[key]
elseif self.logger[key] then
return self.logger[key]
else
return nil
end
end,
__call = function(_ctx, tag, fmt, ...)
_ctx.reporter:message(tag, fmt, ...)
end
})
-- start running collection
Report:startCollection(short_path)
local func,msg = loadfile(testFile, 't', _ENV)
if not func then
-- loading test cases failed
Log:err("loading test file '%s' failed - %s", short_path, msg)
Report:failCollection("loading test file '%s' failed - %s", short_path, msg)
else
local suite, msg = func()
if not suite then
-- loading test suites failed
Log:err("loading test suites failed - %s", msg or 'no returned fixture')
Report:failCollection("loading test suites failed - %s", msg or 'no returned fixture')
else
Report:update(suite._name, suite._descr)
local ok, msg = pcall(function(_ctx) suite:_exec(_ctx, testFilter) end, ctx)
if not ok then
-- unhandled error when executing suite
Log:err("unhandled error - %s", msg)
Report:failCollection("unhandled error - %s", msg)
else
Report:endCollection()
end
end
end
end
local path = (Swept.Config.resdir or Dirs.RESULTS)..'/'..Swept.Config.filename
Log:dbg("Finalizing log reports to %s", path)
return Report:finalize(path)
end
})
return function() return Testit end | 38.986486 | 115 | 0.52305 |
fbacb4327c80d5a83f3b870f91dec5a4aa3537cc | 1,117 | java | Java | mesh/src/main/java/no/nordicsemi/android/mesh/sensorutils/Illuminance.java | real7-0925/1005 | 110dd72fe47f49a0bdc1881cc84eb930606238e9 | [
"BSD-3-Clause"
] | 315 | 2018-06-07T15:43:37.000Z | 2022-03-30T07:56:20.000Z | mesh/src/main/java/no/nordicsemi/android/mesh/sensorutils/Illuminance.java | real7-0925/1005 | 110dd72fe47f49a0bdc1881cc84eb930606238e9 | [
"BSD-3-Clause"
] | 310 | 2018-06-08T16:34:44.000Z | 2022-03-31T09:47:49.000Z | mesh/src/main/java/no/nordicsemi/android/mesh/sensorutils/Illuminance.java | real7-0925/1005 | 110dd72fe47f49a0bdc1881cc84eb930606238e9 | [
"BSD-3-Clause"
] | 156 | 2018-06-07T15:43:39.000Z | 2022-03-16T02:27:57.000Z | package no.nordicsemi.android.mesh.sensorutils;
import androidx.annotation.NonNull;
import no.nordicsemi.android.mesh.utils.MeshParserUtils;
/**
* The Illuminance characteristic is used to represent a measure of illuminance in units of lux.
*/
public class Illuminance extends DevicePropertyCharacteristic<Float> {
public Illuminance(@NonNull final byte[] data, final int offset) {
super(data, offset);
value = ((((data[offset + 2] & 0xFF) << 16) | ((data[offset + 1] & 0xFF) << 8) | data[offset] & 0xFF)) / 100f;
if (value == 0xFFFFFF || value < 0.0f || value > 167772.14f)
value = null;
}
/**
* Illuminance characteristic.
*
* @param illuminance Illuminance
*/
public Illuminance(final float illuminance) {
value = illuminance;
}
@NonNull
@Override
public String toString() {
return String.valueOf(value);
}
@Override
public int getLength() {
return 3;
}
@Override
public byte[] getBytes() {
return MeshParserUtils.convertIntTo24Bits(value.intValue());
}
}
| 25.386364 | 118 | 0.631155 |
e7fcb403c125d5647a5fdcb4339ffbade5bc81e8 | 1,556 | py | Python | goless/__init__.py | ctismer/goless | 02168a40902691264b32c7da6f453819ed7a91cf | [
"Apache-2.0"
] | 1 | 2015-05-28T03:12:47.000Z | 2015-05-28T03:12:47.000Z | goless/__init__.py | ctismer/goless | 02168a40902691264b32c7da6f453819ed7a91cf | [
"Apache-2.0"
] | null | null | null | goless/__init__.py | ctismer/goless | 02168a40902691264b32c7da6f453819ed7a91cf | [
"Apache-2.0"
] | null | null | null | """
``goless`` introduces go-like channels and select to Python,
built on top of Stackless Python (and maybe one day gevent).
Use :func:`goless.chan` to create a synchronous or buffered channel.
Use :func:`goless.select` like you would the ``Select`` function in Go's reflect package
(since Python lacks a switch/case statement, replicating Go's select statement syntax
wasn't very effective).
"""
import logging
import sys
import traceback
from .backends import current as _be
# noinspection PyUnresolvedReferences
from .channels import chan, ChannelClosed
# noinspection PyUnresolvedReferences
from .selecting import dcase, rcase, scase, select
version_info = 0, 0, 1
version = '.'.join([str(v) for v in version_info])
def on_panic(etype, value, tb):
"""
Called when there is an unhandled error in a goroutine.
By default, logs and exits the process.
"""
logging.critical(traceback.format_exception(etype, value, tb))
_be.propagate_exc(SystemExit, 1)
def go(func, *args, **kwargs):
"""
Run a function in a new tasklet, like a goroutine.
If the goroutine raises an unhandled exception (*panics*),
the :func:`goless.on_panic` will be called,
which by default logs the error and exits the process.
:param args: Positional arguments to ``func``.
:param kwargs: Keyword arguments to ``func``.
"""
def safe_wrapped(f):
# noinspection PyBroadException
try:
f(*args, **kwargs)
except:
on_panic(*sys.exc_info())
_be.start(safe_wrapped, func)
| 30.509804 | 88 | 0.703728 |
a1d62e84d3330357921ae10dd3449cd08007c664 | 2,091 | h | C | CPP_Encrypt/include/naive.h | Andreas237/Encode128 | caf9d1019068769eac96a92f75b7a637f10d6630 | [
"MIT"
] | null | null | null | CPP_Encrypt/include/naive.h | Andreas237/Encode128 | caf9d1019068769eac96a92f75b7a637f10d6630 | [
"MIT"
] | 3 | 2019-10-16T22:04:52.000Z | 2019-10-22T02:59:09.000Z | CPP_Encrypt/include/naive.h | Andreas237/Encode128 | caf9d1019068769eac96a92f75b7a637f10d6630 | [
"MIT"
] | null | null | null | #include <string>
#include "encryption_parameters.h"
// alphabet: string showing the next letter in line
// plain: plaintext to be incremented
// current: current letter to be incrememented
void padder(std::string &plain){
while(sizeof(plain) < 16)
plain.append("0");
} //end void mapper(const std::string &alphabet, std::string &plain, int current)
// Encrypt a string by incrementing each character by 1
EncryptionParameters encryptNaive(std::string plain){
std::string const perm = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
int permLen = perm.size();
// pad the input to 16 bytes
padder(plain);
int myLen = plain.size();
CryptoPP::SecByteBlock key, iv; // empty since naive doesn't require these
// For every character of the input string
for(int currentPos = 0; currentPos < myLen; currentPos++){
int currentPerm = perm.find(plain[currentPos]);
// increment that character one full cycle
// permLen-1 so that it ends on a different character than it began
for(int inc = 0; inc < permLen; inc++){
plain[currentPos] = perm[ (currentPerm + inc) % permLen ];
}//for(int inc = 0; inc < permLen; inc++)
}// end for(int currentPos = 0; currentPos < permLen; currentPos++)
return EncryptionParameters(key,iv,plain);
}// end EncryptionParameters encryptNaive(std::string plain)
// Naive benchmark
/*
Measurements to collect:
- Cycles-per-byte: (time of one round)/[(clock speed)*(size of one round)]
- MB per second:
- execution time for one round: (time one iteration of encryption)-> seconds
*/
void encryptNaive_Benchmark(std::string plain){
auto t1 = std::chrono::high_resolution_clock::now();
encryptNaive(plain);
auto t2 = std::chrono::high_resolution_clock::now();
const auto singleRound = std::chrono::duration_cast<std::chrono::microseconds>(t2 - t1);
//const double cyclesPerByte =
}//end void encryptNaive_Benchmark(std::string plain)
| 18.504425 | 94 | 0.667623 |
dfabf9cd502d5dd0ed44e2406b5c5e67ff58d82d | 3,652 | ts | TypeScript | src/@types/ngl/declarations/store/residue-type.d.ts | mirimCZ/react-ngl | 75bd5c7316748c0e999faed73353b883209627d4 | [
"MIT"
] | 15 | 2020-08-14T05:58:40.000Z | 2022-01-02T15:07:09.000Z | src/@types/ngl/declarations/store/residue-type.d.ts | mirimCZ/react-ngl | 75bd5c7316748c0e999faed73353b883209627d4 | [
"MIT"
] | 7 | 2020-10-13T07:18:51.000Z | 2022-03-10T06:19:49.000Z | src/@types/ngl/declarations/store/residue-type.d.ts | mirimCZ/react-ngl | 75bd5c7316748c0e999faed73353b883209627d4 | [
"MIT"
] | 5 | 2020-12-14T12:03:55.000Z | 2021-08-17T18:18:32.000Z | /**
* @file Residue Type
* @author Alexander Rose <alexander.rose@weirdbyte.de>
* @author Fred Ludlow
* @private
*/
import { ResidueBonds } from '../structure/structure-utils';
import Structure from '../structure/structure';
import ResidueProxy from '../proxy/residue-proxy';
import AtomProxy from '../proxy/atom-proxy';
export interface BondGraph {
[k: number]: number[];
}
export interface RingData {
atomRings: number[][];
rings: number[][];
}
/**
* Residue type
*/
export default class ResidueType {
readonly structure: Structure;
resname: string;
atomTypeIdList: number[];
hetero: number;
chemCompType: string;
bonds?: ResidueBonds;
rings?: RingData;
bondGraph?: BondGraph;
aromaticAtoms?: Uint8Array;
aromaticRings?: number[][];
atomCount: number;
moleculeType: number;
backboneType: number;
backboneEndType: number;
backboneStartType: number;
backboneIndexList: number[];
traceAtomIndex: number;
direction1AtomIndex: number;
direction2AtomIndex: number;
backboneStartAtomIndex: number;
backboneEndAtomIndex: number;
rungEndAtomIndex: number;
bondReferenceAtomIndices: number[];
/**
* @param {Structure} structure - the structure object
* @param {String} resname - name of the residue
* @param {Array} atomTypeIdList - list of IDs of {@link AtomType}s corresponding
* to the atoms of the residue
* @param {Boolean} hetero - hetero flag
* @param {String} chemCompType - chemical component type
* @param {Object} [bonds] - TODO
*/
constructor(structure: Structure, resname: string, atomTypeIdList: number[], hetero: boolean, chemCompType: string, bonds?: ResidueBonds);
getBackboneIndexList(): number[];
getMoleculeType(): 1 | 2 | 3 | 0 | 4 | 6 | 5;
getBackboneType(position: number): 1 | 2 | 3 | 0 | 4 | 6 | 5;
isProtein(): boolean;
isCg(): boolean;
isNucleic(): boolean;
isRna(): boolean;
isDna(): boolean;
isHetero(): boolean;
isIon(): boolean;
isWater(): boolean;
isSaccharide(): boolean;
isStandardAminoacid(): boolean;
isStandardBase(): boolean;
hasBackboneAtoms(position: number, type: number): boolean;
hasProteinBackbone(position: number): boolean;
hasRnaBackbone(position: number): boolean;
hasDnaBackbone(position: number): boolean;
hasCgProteinBackbone(position: number): boolean;
hasCgRnaBackbone(position: number): boolean;
hasCgDnaBackbone(position: number): boolean;
hasBackbone(position: number): boolean;
getAtomIndexByName(atomname: string | string[]): number | undefined;
hasAtomWithName(...atomnames: (string | string[])[]): boolean;
getBonds(r?: ResidueProxy): ResidueBonds;
getRings(): RingData | undefined;
getBondGraph(): BondGraph | undefined;
getAromatic(a?: AtomProxy): Uint8Array | undefined;
getAromaticRings(r?: ResidueProxy): number[][] | undefined;
/**
* @return {Object} bondGraph - represents the bonding in this
* residue: { ai1: [ ai2, ai3, ...], ...}
*/
calculateBondGraph(): void;
/**
* Find all rings up to 2 * RingFinderMaxDepth
*/
calculateRings(): void;
isAromatic(atom: AtomProxy): boolean;
calculateAromatic(r: ResidueProxy): void;
/**
* For bonds with order > 1, pick a reference atom
* @return {undefined}
*/
assignBondReferenceAtomIndices(): void;
getBondIndex(atomIndex1: number, atomIndex2: number): number | undefined;
getBondReferenceAtomIndex(atomIndex1: number, atomIndex2: number): number | undefined;
}
| 35.456311 | 142 | 0.668401 |
f83cc814829d86d3ac4a48bf30598b65afbfe61f | 28,277 | swift | Swift | Dreamio/Controller/NewEntryVC.swift | boldlion/dreamio-app | bd631197f0f820f0c02e8bf49a9b89e0ce8f465a | [
"MIT"
] | null | null | null | Dreamio/Controller/NewEntryVC.swift | boldlion/dreamio-app | bd631197f0f820f0c02e8bf49a9b89e0ce8f465a | [
"MIT"
] | null | null | null | Dreamio/Controller/NewEntryVC.swift | boldlion/dreamio-app | bd631197f0f820f0c02e8bf49a9b89e0ce8f465a | [
"MIT"
] | null | null | null | //
// NewEntryVC.swift
// Dreamio
//
// Created by Bold Lion on 4.03.19.
// Copyright © 2019 Bold Lion. All rights reserved.
//
import UIKit
import SCLAlertView
protocol NewEntrtVCDelegate: AnyObject {
func fetchNewEntryWith(id: String)
}
class NewEntryVC: UIViewController {
@IBOutlet weak var entryContentUITextView: UITextView!
@IBOutlet weak var entryTitleTextView: UITextView!
@IBOutlet weak var titleHeightConstraint: NSLayoutConstraint!
@IBOutlet weak var saveButton: UIBarButtonItem!
@IBOutlet weak var contentBottomConstraint: NSLayoutConstraint!
var titlePlaceholder : UILabel!
var contentPlaceholder: UILabel!
var notebookId: String?
var entry: Entry?
var entryId: String?
lazy var labels: [String] = {
let labels = [String]()
return labels
}()
var hasLabels = false
var updatedLabels: [String]?
weak var delegate: NewEntrtVCDelegate?
override var preferredStatusBarStyle: UIStatusBarStyle {
return .lightContent
}
override func viewDidLoad() {
super.viewDidLoad()
populateEntryFields()
saveButton.isEnabled = false
NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillShow), name: UIResponder.keyboardWillShowNotification, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillHide), name: UIResponder.keyboardWillHideNotification, object: nil)
}
override func viewWillLayoutSubviews() {
super.viewWillLayoutSubviews()
NavBar.setGradientNavigationBar(for: navigationController)
}
override func viewWillDisappear(_ animated: Bool) {
super.viewWillDisappear(animated)
tabBarController?.tabBar.isHidden = false
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// createToolbar()
setTextViewsDelegates()
}
func populateEntryFields() {
if let uid = entryId {
fetchEntryWith(uid: uid)
}
if let title = entry?.title, let content = entry?.content {
entryTitleTextView.text = title
entryContentUITextView.text = content
setupTitleTextViewPlaceholder()
setupContentTextViewPlaceholder()
textViewDidChange(entryTitleTextView)
textViewDidChange(entryContentUITextView)
navigationItem.title = "Edit & View Entry"
}
if let entryUid = entry?.id {
fetchLabelsForEntryWith(uid: entryUid)
}
}
func fetchLabelsForEntryWith(uid: String) {
Api.Entry_Labels.fetchAllLabelsForEntryWith(uid: uid,
onSuccess: { [unowned self] labels in
self.labels = labels
self.createToolbar()
}, onNoLabels: { [unowned self] in
self.labels = []
self.createToolbar()
}, onError: { errorMessage in
SCLAlertView().showError("Error", subTitle: errorMessage)
})
}
func fetchEntryWith(uid: String) {
Api.Entries.fetchEntryWith(uid: uid,
onSuccess: { [unowned self] entry in
self.entry = entry
self.entryId = nil
self.populateEntryFields() },
onError: { errorMessage in
SCLAlertView().showError("Error", subTitle: errorMessage)
})
}
func createToolbar() {
let toolBar = UIToolbar()
toolBar.sizeToFit()
toolBar.barTintColor = .white
toolBar.tintColor = Colors.purpleDarker
let doneButton = UIBarButtonItem(title: "Done", style: .done, target: self, action: #selector(dismissKeyboard))
let flexibleSpace = UIBarButtonItem(barButtonSystemItem: UIBarButtonItem.SystemItem.flexibleSpace, target: nil, action: nil)
var imageName = ""
if let updated = updatedLabels {
imageName = updated.count > 0 ? "label_selected" : "label_empty"
}
else {
imageName = labels.count > 0 ? "label_selected" : "label_empty"
}
let labelButton = UIBarButtonItem(image: UIImage(named: imageName), style: .plain, target: self, action: #selector(goToLabelsVC))
toolBar.isUserInteractionEnabled = true
toolBar.items = [labelButton, flexibleSpace, doneButton]
entryTitleTextView.inputAccessoryView = toolBar
entryContentUITextView.inputAccessoryView = toolBar
}
@objc func dismissKeyboard() {
view.endEditing(true)
}
@objc func goToLabelsVC() {
view.endEditing(true)
var labelsToSend = [String]()
if let updated = updatedLabels, updated.count >= 0 {
labelsToSend = updated
}
else {
labelsToSend = labels
}
performSegue(withIdentifier: Segues.NewEntryToLabelsVC, sender: labelsToSend)
}
@objc func keyboardWillShow(notification: Notification) {
if let keyboardSize = (notification.userInfo?[UIResponder.keyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue {
UIView.animate(withDuration: 0.2, animations: { [unowned self] in
self.contentBottomConstraint.constant = keyboardSize.height
self.view.layoutIfNeeded()
})
}
}
@objc func keyboardWillHide(notification: Notification) {
UIView.animate(withDuration: 0.2, animations: { [unowned self] in
self.contentBottomConstraint.constant = 20
self.view.layoutIfNeeded()
})
}
@IBAction func cancelTapped(_ sender: UIBarButtonItem) {
view.endEditing(true)
if saveButton.isEnabled {
Alerts.showWarningWithTwoCustomActions(title: "Wait!", subtitle: "You haven't saved your dream entry. Tap on SAVE button or dismiss it. You can always edit your entry.", dismissTitle: "Dismiss",
dismissAction: { [unowned self] in
self.clear()
self.dismiss(animated: true)
},
customAction2: { [unowned self] in
self.saveEntry()
},
action2Title: "Save")
}
else {
clear()
dismiss(animated: true, completion: nil)
}
}
@IBAction func saveTapped(_ sender: UIBarButtonItem) {
saveEntry()
}
func saveEntry() {
view.endEditing(true)
saveButton.isEnabled = !saveButton.isEnabled
if notebookId != nil {
guard let title = entryTitleTextView.text else { return }
guard let content = entryContentUITextView.text else { return }
guard let notebId = notebookId else { return }
if entry != nil {
guard let entryId = entry?.id else { return }
updateDreamEntry(notebookId: notebId, entryId: entryId, title: title, content: content)
}
else {
createNewEntry(notebookId: notebId, title: title, content: content)
}
}
else {
performSegue(withIdentifier: Segues.NewEntryToSelectNotebookVC, sender: nil)
}
}
func success(alert: SCLAlertViewResponder, entryId: String) {
alert.close()
self.delegate?.fetchNewEntryWith(id: entryId)
self.clear()
self.dismiss(animated: true)
}
func createNewEntry(notebookId: String, title: String, content: String) {
guard let entryID = Api.Entries.REF_ENTRIES.childByAutoId().key else { return }
let alert = SCLAlertView().showWait("Saving...", subTitle: "Please wait...")
// NOTE: Entry with labels
if labels.count > 0 {
Api.Entries.saveEntry(forNotebookUid: notebookId, entryUid: entryID, title: title, content: content,
onSuccess: { [unowned self] in
Api.Labels.doesLabelExistAlready(labels: self.labels,
onExist: { label in
Api.Labels.addNewEntryIdForLabel(label: label, entryId: entryID,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryID, labels: [label],
onSuccess: {
Api.Entries_Timestamp.setEntryTimestampFor(notebookWith: notebookId, entryId: entryID,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryID) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onDoesntExist: { label in
Api.Labels.addNewLabel(label: label, entryId: entryID,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryID, labels: [label],
onSuccess: {
Api.User_Labels.updateLabels(labels: [label],
onSuccess: {
Api.Entries_Timestamp.setEntryTimestampFor(notebookWith: notebookId, entryId: entryID,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryID) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
// NOTE: Entry without labels
else {
Api.Entries.saveEntry(forNotebookUid: notebookId, entryUid: entryID, title: title, content: content,
onSuccess: { [unowned self] in
Api.Entries_Timestamp.setEntryTimestampFor(notebookWith: notebookId, entryId: entryID,
onSuccess: { [unowned self, alert] in
self.success(alert: alert, entryId: entryID) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
}
func updateErrorBlock(alert: SCLAlertViewResponder, message: String) {
alert.close()
saveButton.isEnabled = true
SCLAlertView().showError("Oh, Bummer!", subTitle: message)
}
// MARK:- Updated Dream Entry
func updateDreamEntry(notebookId: String, entryId: String, title: String, content: String) {
let alert = SCLAlertView().showWait("Saving...", subTitle: "Please wait...")
if labels.isEmpty && updatedLabels == nil {
// NOTE: The entry simply has no labels - Update Entry with title and content only
Api.Entries.updateEntryWithUid(uid: entryId, title: title, content: content,
onSuccess: { [unowned self, alert] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
else if labels.isEmpty && updatedLabels != nil {
//NOTE: User just added labels to the entry
guard let updatedL = updatedLabels else { return }
Api.Labels.doesLabelExistAlready(labels: updatedL,
onExist: { label in
Api.Labels.addNewEntryIdForLabel(label: label, entryId: entryId,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryId, labels: [label],
onSuccess: {
Api.Entries_Timestamp.setEntryTimestampFor(notebookWith: notebookId, entryId: entryId,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onDoesntExist: { label in
Api.Labels.addNewLabel(label: label, entryId: entryId,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryId, labels: [label],
onSuccess: {
Api.User_Labels.updateLabels(labels: [label],
onSuccess: {
Api.Entries_Timestamp.setEntryTimestampFor(notebookWith: notebookId, entryId: entryId,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
else if !labels.isEmpty && updatedLabels != nil {
// NOTE: Entry has existing labels but the user might have changed them (they might be the same, deleted or added more)
guard let updatedLbls = updatedLabels else { return }
if labels.containsSameElement(as: updatedLbls) {
// Labels & Updated labels are the same, proceed to just update the title & content only
Api.Entries.updateEntryWithUid(uid: entryId, title: title, content: content,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
else {
// Labels are different ... see if they deleted or added labels and if it even have labels (LABELS ARE DEF NOT THE SAME!)
if labels.count > updatedLbls.count || labels.count == updatedLbls.count || updatedLbls.count > labels.count {
// User Deleted Labels - remove deleted labels from database & update the labels based on updatedLabels elements
let possibleLabelsToDelete = Array(Set(labels).subtracting(updatedLbls))
if possibleLabelsToDelete.count > 0 {
for label in possibleLabelsToDelete {
Api.Labels.deleteLabelForEntryWith(uid: entryId, label: label,
onSuccess: { [unowned self] in
Api.Entry_Labels.deleteLabelForEntryWith(id: entryId, label: label,
onSuccess: {
self.updateLabelsAndEntryFor(entryId: entryId, title: title, content: content,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: {[unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
deleteUserLabel: {
Api.User_Labels.deleteLabel(label: label,
onSuccess: { [unowned self] in
self.updateLabelsAndEntryFor(entryId: entryId, title: title, content: content,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message) }) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
}
else {
// No Old Labels To delete - proceed to save new updated labels
updateLabelsAndEntryFor(entryId: entryId, title: title, content: content,
onSuccess: { [unowned self] in
self.success(alert: alert, entryId: entryId) },
onError: { [unowned self] message in
self.updateErrorBlock(alert: alert, message: message)
})
}
}
}
}
}
func updateLabelsAndEntryFor(entryId: String, title: String, content: String, onSuccess: @escaping () -> Void, onError: @escaping (_ message: String) -> Void) {
if let updatedL = updatedLabels, updatedL.count == 0 {
// User deleted all labels and there are no new ones, Update only Entry details
Api.Entries.updateEntryWithUid(uid: entryId, title: title, content: content,
onSuccess: {
onSuccess() },
onError: { message in
onError(message)
return
})
}
else {
guard let updatedL = updatedLabels else { return }
// Update /labels & /entry_labels & entry
Api.Entries.updateEntryWithUid(uid: entryId, title: title, content: content,
onSuccess: {
Api.Labels.doesLabelExistAlready(labels: updatedL,
onExist: { label in
Api.Labels.addNewEntryIdForLabel(label: label, entryId: entryId,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryId, labels: [label],
onSuccess: {
onSuccess() },
onError: { message in
onError(message)
return }) },
onError: { message in
onError(message)
return }) },
onDoesntExist: { label in
Api.Labels.addNewLabel(label: label, entryId: entryId,
onSuccess: {
Api.Entry_Labels.saveEntryLabelsWith(entryUid: entryId, labels: [label],
onSuccess: {
Api.User_Labels.updateLabels(labels: [label],
onSuccess: {
onSuccess() },
onError: { message in
onError(message)
return }) },
onError: { message in
onError(message)
return }) },
onError: { message in
onError(message)
return }) },
onError: { message in
onError(message)
return }) },
onError: { message in
onError(message)
})
}
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == Segues.NewEntryToSelectNotebookVC {
let destinationVC = segue.destination as! SelectNotebookVC
destinationVC.delegate = self
}
if segue.identifier == Segues.NewEntryToLabelsVC {
let navController = segue.destination as! UINavigationController
var destinationVC = LabelsVC()
destinationVC = navController.viewControllers[0] as! LabelsVC
if let updatedL = updatedLabels, updatedL.count >= 0 {
destinationVC.labels = updatedL
}
else if labels.count >= 1 {
destinationVC.labels = labels
}
destinationVC.delegate = self
}
}
func clear() {
updatedLabels?.removeAll()
labels.removeAll()
}
deinit {
print("NewEntryVC deinit")
}
}
extension NewEntryVC: UITextViewDelegate {
@objc func changeSaveButtonState() {
guard let updated = updatedLabels
else {
// NO UPDATED LABELS
if !entryTitleTextView.text.isEmpty, entryTitleTextView.text != "", let content = entryContentUITextView.text, !content.isEmpty, content != "" {
saveButton.isEnabled = true
return
}
else {
saveButton.tintColor = UIColor.lightGray
saveButton.isEnabled = false
}
return
}
// UPDATED LABELS
if !labels.containsSameElement(as: updated) || !entryTitleTextView.text.isEmpty, entryTitleTextView.text != "", let content = entryContentUITextView.text, !content.isEmpty, content != "" {
saveButton.isEnabled = true
return
}
else {
saveButton.tintColor = UIColor.lightGray
saveButton.isEnabled = false
}
}
func setTextViewsDelegates() {
entryTitleTextView.delegate = self
entryContentUITextView.delegate = self
setupTitleTextViewPlaceholder()
setupContentTextViewPlaceholder()
}
func setupTitleTextViewPlaceholder() {
titlePlaceholder = UILabel()
titlePlaceholder.text = "Dream title"
titlePlaceholder.textAlignment = .center
titlePlaceholder.sizeToFit()
entryTitleTextView.addSubview(titlePlaceholder)
titlePlaceholder.frame.origin = CGPoint(x: 5, y: (entryTitleTextView.font?.pointSize)! / 2)
titlePlaceholder.textColor = UIColor.lightGray
titlePlaceholder.isHidden = !entryTitleTextView.text.isEmpty
}
func setupContentTextViewPlaceholder() {
contentPlaceholder = UILabel()
contentPlaceholder.text = "Enter dream content"
contentPlaceholder.sizeToFit()
entryContentUITextView.addSubview(contentPlaceholder)
contentPlaceholder.frame.origin = CGPoint(x: 5, y: (entryContentUITextView.font?.pointSize)! / 2)
contentPlaceholder.textColor = UIColor.lightGray
contentPlaceholder.isHidden = !entryContentUITextView.text.isEmpty
}
func textViewDidChange(_ textView: UITextView) {
if textView == entryTitleTextView {
titlePlaceholder.isHidden = !entryTitleTextView.text.isEmpty
let size = CGSize(width: entryTitleTextView.bounds.width, height: .infinity)
let estimatedSize = entryTitleTextView.sizeThatFits(size)
if estimatedSize.height >= 120 {
titleHeightConstraint.constant = 120
entryTitleTextView.isScrollEnabled = true
}
else {
entryTitleTextView.isScrollEnabled = false
titleHeightConstraint.constant = estimatedSize.height
// let style = NSMutableParagraphStyle()
// style.lineSpacing = 20
// let attributes = [NSAttributedString.Key.paragraphStyle : style]
// entryTitleTextView.attributedText = NSAttributedString(string: textView.text, attributes: attributes)
}
}
else if textView == entryContentUITextView {
contentPlaceholder.isHidden = !entryContentUITextView.text.isEmpty
}
guard let title = entryTitleTextView.text, !title.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty,
let content = entryContentUITextView.text, !content.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty
else {
saveButton.tintColor = UIColor.lightGray
saveButton.isEnabled = false
return
}
saveButton.isEnabled = true
saveButton.tintColor = .white
}
}
extension NewEntryVC: SelectNotebookDelegate {
func setNotebookIdForEntry(notebookId: String) {
self.notebookId = notebookId
}
}
extension NewEntryVC: LabelsVCDelegate {
func transferedLabels(labels: [String]) {
if entry == nil {
// New Entry - Initial Label setting
self.labels = labels
}
else {
// Existing Entry - Update on Labels
updatedLabels = labels
}
changeSaveButtonState()
}
}
| 48.419521 | 206 | 0.524879 |
5aef583c84ab8b62849b5cd4437d74e75f87dfba | 718 | rs | Rust | src/command/strings.rs | shafreeck/kiss | 308a9fbc012b585010636827baacb2246118229e | [
"Apache-2.0"
] | null | null | null | src/command/strings.rs | shafreeck/kiss | 308a9fbc012b585010636827baacb2246118229e | [
"Apache-2.0"
] | null | null | null | src/command/strings.rs | shafreeck/kiss | 308a9fbc012b585010636827baacb2246118229e | [
"Apache-2.0"
] | null | null | null | use super::Context;
use super::super::storage::object::Object;
use crate::resp;
pub fn get(ctx: &Context) ->resp::Kind {
// let dict = &ctx.db.dict;
// let cmd = &ctx.cmd;
// let key = &cmd.args[0];
// if let Some(Object::Value(s)) = dict.get(key) {
// resp::Kind::BulkString(Some(s.to_vec()))
// }else {
// resp::Kind::BulkString(None)
// }
resp::Kind::BulkString(Some("hello".as_bytes().to_vec()))
}
//fn set(ctx: &mut Context) -> resp::Kind {
// let cmd = &ctx.cmd;
// let dict = &ctx.db.dict;
// let (key, val) = (&cmd.args[0], &cmd.args[1]);
// dict.insert(key.to_vec(), Object::Value(val.to_vec()));
// resp::Kind::SimpleString("OK".as_bytes().to_vec())
//} | 27.615385 | 61 | 0.568245 |
16aa651d0baafd5bd99f553af3e775675c84984a | 315 | ts | TypeScript | packages/realmail-core/src/utils/isSectionBlock.ts | realmail-editor/realmail | 6798419b90572bf2b79f22189f7952def549bca8 | [
"MIT"
] | null | null | null | packages/realmail-core/src/utils/isSectionBlock.ts | realmail-editor/realmail | 6798419b90572bf2b79f22189f7952def549bca8 | [
"MIT"
] | 2 | 2022-03-24T15:25:24.000Z | 2022-03-27T03:44:30.000Z | packages/realmail-core/src/utils/isSectionBlock.ts | realmail-editor/realmail | 6798419b90572bf2b79f22189f7952def549bca8 | [
"MIT"
] | null | null | null | import { ISection } from '@core/blocks';
import { AdvancedType, BasicType } from '@core/constants';
import { IBlockData } from '@core/typings';
export function isSectionBlock(blockData: IBlockData): blockData is ISection {
return blockData.type === BasicType.SECTION || blockData.type === AdvancedType.SECTION;
} | 45 | 89 | 0.749206 |
2631d76474dfc233c1fbfab3e48813a1a98cc7df | 276 | java | Java | application/src/main/java/org/thingsboard/server/dft/entities/DamTomStaffEntityKey.java | binhdv37/nong-nghiep-v2 | 554aed1107a8dcc03a942c021fe94786ac3b7f4f | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | application/src/main/java/org/thingsboard/server/dft/entities/DamTomStaffEntityKey.java | binhdv37/nong-nghiep-v2 | 554aed1107a8dcc03a942c021fe94786ac3b7f4f | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | application/src/main/java/org/thingsboard/server/dft/entities/DamTomStaffEntityKey.java | binhdv37/nong-nghiep-v2 | 554aed1107a8dcc03a942c021fe94786ac3b7f4f | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | package org.thingsboard.server.dft.entities;
import java.io.Serializable;
import java.util.UUID;
import org.thingsboard.server.dao.model.sql.UserEntity;
public class DamTomStaffEntityKey implements Serializable {
private UUID damtomId;
private UserEntity staff;
}
| 21.230769 | 59 | 0.800725 |
2d9d9c5ffea9bef40fd0404b0530b87317dab888 | 1,366 | html | HTML | layouts/_default/li.blog.html | fathyar/elementary | 149f52a259d88447e42af06efe89bf636c4eb253 | [
"MIT"
] | null | null | null | layouts/_default/li.blog.html | fathyar/elementary | 149f52a259d88447e42af06efe89bf636c4eb253 | [
"MIT"
] | null | null | null | layouts/_default/li.blog.html | fathyar/elementary | 149f52a259d88447e42af06efe89bf636c4eb253 | [
"MIT"
] | null | null | null | <li style="list-style: none;">
<div>
<details>
<summary style="cursor: pointer;list-style-position: outside;">
<small><time>{{ .Date.Format (default "2006-01-02" .Site.Params.dateFmt) }}</time></small>
<span style="font-family: var(--font-serif);"><a href="{{ .RelPermalink }}">{{.Title }}</a></span>
</summary>
<small>
{{ with .Params.categories }}
{{ range first 1 . }} in <a href="{{ "/cat/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> {{- end -}}
{{ range after 1 . -}} , <a href="{{ "/cat/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> {{- end -}}
·
{{ end }}
{{ with .ReadingTime }}{{ . }} min read {{ end }}
{{ with .Params.tags }}
· tagged:
{{ range first 1 . }}
<a href="{{ "/tag/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{- end -}}
{{- range after 1 . -}}
, <a href="{{ "/tag/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{- end -}}
{{ end }}
<br>
<p>{{ .Summary }}</p>
</small>
</details>
</div>
</li> | 47.103448 | 121 | 0.352855 |
135c6ddf345ade8cb9c7242edc01d050c89a1dc1 | 4,156 | h | C | ocs2_raisim/ocs2_raisim_ros/include/ocs2_raisim_ros/RaisimHeightmapRosConverter.h | RIVeR-Lab/ocs2 | 399d3fad27b4a49e48e075a544f2f717944c5da9 | [
"BSD-3-Clause"
] | null | null | null | ocs2_raisim/ocs2_raisim_ros/include/ocs2_raisim_ros/RaisimHeightmapRosConverter.h | RIVeR-Lab/ocs2 | 399d3fad27b4a49e48e075a544f2f717944c5da9 | [
"BSD-3-Clause"
] | null | null | null | ocs2_raisim/ocs2_raisim_ros/include/ocs2_raisim_ros/RaisimHeightmapRosConverter.h | RIVeR-Lab/ocs2 | 399d3fad27b4a49e48e075a544f2f717944c5da9 | [
"BSD-3-Clause"
] | null | null | null | /******************************************************************************
Copyright (c) 2017, Farbod Farshidian. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#include <grid_map_msgs/GridMap.h>
#include <ros/node_handle.h>
#include <ros/publisher.h>
#include <ros/subscriber.h>
#include <raisim/object/terrain/HeightMap.hpp>
namespace ocs2 {
/**
* @brief RaisimHeightmapRosConverter is a helper class for transmitting the Raisim height map via ROS for visualization and distribution
* across processes
*/
class RaisimHeightmapRosConverter {
public:
/**
* @brief Default constructor
* @note This will instantiate a ros::NodeHandle. ros::init(...) should be called by the user before instantiation of this class.
*/
RaisimHeightmapRosConverter() = default;
~RaisimHeightmapRosConverter() = default;
/**
* @brief Converts the Raisim height map to a GridMap ROS message
* @param[in] heightMap: The heightMap object from Raisim
* @param[in] frameId: The frameId for the GridMap ROS message
* @return The converted GridMap ROS message
*/
static grid_map_msgs::GridMapPtr convertHeightmapToGridmap(const raisim::HeightMap& heightMap, const std::string& frameId = "world");
/**
* @brief Converts a GridMap ROS message to a Raisim height map
* @param[in] gridMap: The GridMap ROS message
* @return The converted raisim heightmap
*/
static std::unique_ptr<raisim::HeightMap> convertGridmapToHeightmap(const grid_map_msgs::GridMapConstPtr& gridMap);
/**
* @brief Publishes the Raisim height map through a ROS publisher. It internally calls convertHeightmapToGridmap
* @note The publisher is latched, hence the timing of publishing is not dependent on the subscriber's state
* @param[in] frameId: The frameId for the GridMap ROS message
* @param[in] heightMap: The heightMap object from Raisim
*/
void publishGridmap(const raisim::HeightMap& heightMap, const std::string& frameId = "world");
/**
* @brief Obtains the raisim heightmap from ros, e.g., if the terrain is created and published by another node
* @note Using this method without an instantiation of this class assumes that the ros node has already been fully initialized
* @param[in] timeout Maximum waiting time if no message is received
* @return The received raisim heightmap and GridMap (or both nullptr if no message was received before the timeout)
*/
static std::pair<std::unique_ptr<raisim::HeightMap>, grid_map_msgs::GridMapConstPtr> getHeightmapFromRos(double timeout = 5.0);
private:
ros::NodeHandle nodeHandle_;
std::unique_ptr<ros::Publisher> gridmapPublisher_;
};
} // namespace ocs2
| 46.696629 | 137 | 0.741338 |
04977a5d307af7146bbb61ca9db98c1707ddf82b | 4,238 | java | Java | src/test/java/com/github/cameltooling/lsp/internal/hover/CamelKModelineComponentPropertyHoverTest.java | apupier/camel-language-server-1 | 861b9b25c94cb65416ed052bd23ffd743abac8f6 | [
"Apache-2.0"
] | 35 | 2018-03-22T18:50:20.000Z | 2022-02-28T10:06:39.000Z | src/test/java/com/github/cameltooling/lsp/internal/hover/CamelKModelineComponentPropertyHoverTest.java | apupier/camel-language-server-1 | 861b9b25c94cb65416ed052bd23ffd743abac8f6 | [
"Apache-2.0"
] | 300 | 2018-03-22T15:34:09.000Z | 2022-02-16T00:24:12.000Z | src/test/java/com/github/cameltooling/lsp/internal/hover/CamelKModelineComponentPropertyHoverTest.java | apupier/camel-language-server-1 | 861b9b25c94cb65416ed052bd23ffd743abac8f6 | [
"Apache-2.0"
] | 14 | 2018-08-04T21:06:17.000Z | 2021-12-20T12:44:12.000Z | /**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.cameltooling.lsp.internal.hover;
import static org.assertj.core.api.Assertions.assertThat;
import java.net.URISyntaxException;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import org.eclipse.lsp4j.Hover;
import org.eclipse.lsp4j.HoverParams;
import org.eclipse.lsp4j.Position;
import org.eclipse.lsp4j.Range;
import org.eclipse.lsp4j.TextDocumentIdentifier;
import org.junit.jupiter.api.Test;
import com.github.cameltooling.lsp.internal.AbstractCamelLanguageServerTest;
import com.github.cameltooling.lsp.internal.CamelLanguageServer;
class CamelKModelineComponentPropertyHoverTest extends AbstractCamelLanguageServerTest {
@Test
void testProvideDocumentationOnHoverOfComponentName() throws Exception {
testProvideDocumentationOnHover("// camel-k: property=camel.component.timer.autowiredEnabled=true", 38, "Generate messages in specified intervals using java.util.Timer.");
}
@Test
void testProvideDocumentationOnHoverOfComponentAttribute() throws Exception {
testProvideDocumentationOnHover("// camel-k: property=camel.component.timer.autowiredEnabled=true", 50, "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.");
}
@Test
void testNoErrorWithPartialNoComponentNameSpecified() throws Exception {
testProvideDocumentationOnHover("// camel-k: property=camel.component.timer", 38, "Generate messages in specified intervals using java.util.Timer.");
}
@Test
void testNoErrorWithUnknownComponent() throws Exception {
testProvideDocumentationOnHover("// camel-k: property=camel.component.unknown", 38, null);
}
@Test
void testNoErrorWithUnknownParameter() throws Exception {
testProvideDocumentationOnHover("// camel-k: property=camel.component.timer.unknown", 50, null);
}
@Test
void testRange() throws Exception {
Hover hover = testProvideDocumentationOnHover("// camel-k: property=camel.component.timer.autowiredEnabled=true", 50, "Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.");
assertThat(hover.getRange()).isEqualTo(new Range(new Position(0, 43), new Position(0, 59)));
}
private Hover testProvideDocumentationOnHover(String modeline, int position, String expectedDescription) throws URISyntaxException, InterruptedException, ExecutionException {
CamelLanguageServer camelLanguageServer = initializeLanguageServer(modeline, ".java");
HoverParams hoverParams = new HoverParams(new TextDocumentIdentifier(DUMMY_URI+".java"), new Position(0, position));
CompletableFuture<Hover> hover = camelLanguageServer.getTextDocumentService().hover(hoverParams);
if (expectedDescription != null) {
assertThat(hover.get().getContents().getLeft().get(0).getLeft()).isEqualTo(expectedDescription);
return hover.get();
} else {
assertThat(hover.get()).isNull();
return null;
}
}
}
| 51.060241 | 478 | 0.791411 |
d127d5340d0a440014cd04da5bc189deebef6e92 | 6,475 | rs | Rust | src/directed/bfs.rs | age-rs/pathfinding | ccdccef5e336cc96161a6ebe17267fe4936db6ef | [
"Apache-2.0",
"MIT-0",
"MIT"
] | 475 | 2016-12-30T12:01:52.000Z | 2022-03-29T11:20:35.000Z | src/directed/bfs.rs | age-rs/pathfinding | ccdccef5e336cc96161a6ebe17267fe4936db6ef | [
"Apache-2.0",
"MIT-0",
"MIT"
] | 330 | 2017-01-27T12:10:34.000Z | 2022-03-29T12:09:30.000Z | src/directed/bfs.rs | age-rs/pathfinding | ccdccef5e336cc96161a6ebe17267fe4936db6ef | [
"Apache-2.0",
"MIT-0",
"MIT"
] | 53 | 2017-01-06T11:09:11.000Z | 2022-03-11T18:19:06.000Z | //! Compute a shortest path using the [breadth-first search
//! algorithm](https://en.wikipedia.org/wiki/Breadth-first_search).
use indexmap::map::Entry::Vacant;
use std::collections::{HashSet, VecDeque};
use std::hash::Hash;
use std::usize;
use super::reverse_path;
use crate::directed::FxIndexMap;
/// Compute a shortest path using the [breadth-first search
/// algorithm](https://en.wikipedia.org/wiki/Breadth-first_search).
///
/// The shortest path starting from `start` up to a node for which `success` returns `true` is
/// computed and returned in a `Some`. If no path can be found, `None`
/// is returned instead.
///
/// - `start` is the starting node.
/// - `successors` returns a list of successors for a given node.
/// - `success` checks whether the goal has been reached. It is not a node as some problems require
/// a dynamic solution instead of a fixed node.
///
/// A node will never be included twice in the path as determined by the `Eq` relationship.
///
/// The returned path comprises both the start and end node.
///
/// # Example
///
/// We will search the shortest path on a chess board to go from (1, 1) to (4, 6) doing only knight
/// moves.
///
/// The first version uses an explicit type `Pos` on which the required traits are derived.
///
/// ```
/// use pathfinding::prelude::bfs;
///
/// #[derive(Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
/// struct Pos(i32, i32);
///
/// impl Pos {
/// fn successors(&self) -> Vec<Pos> {
/// let &Pos(x, y) = self;
/// vec![Pos(x+1,y+2), Pos(x+1,y-2), Pos(x-1,y+2), Pos(x-1,y-2),
/// Pos(x+2,y+1), Pos(x+2,y-1), Pos(x-2,y+1), Pos(x-2,y-1)]
/// }
/// }
///
/// static GOAL: Pos = Pos(4, 6);
/// let result = bfs(&Pos(1, 1), |p| p.successors(), |p| *p == GOAL);
/// assert_eq!(result.expect("no path found").len(), 5);
/// ```
///
/// The second version does not declare a `Pos` type, makes use of more closures,
/// and is thus shorter.
///
/// ```
/// use pathfinding::prelude::bfs;
///
/// static GOAL: (i32, i32) = (4, 6);
/// let result = bfs(&(1, 1),
/// |&(x, y)| vec![(x+1,y+2), (x+1,y-2), (x-1,y+2), (x-1,y-2),
/// (x+2,y+1), (x+2,y-1), (x-2,y+1), (x-2,y-1)],
/// |&p| p == GOAL);
/// assert_eq!(result.expect("no path found").len(), 5);
/// ```
pub fn bfs<N, FN, IN, FS>(start: &N, successors: FN, success: FS) -> Option<Vec<N>>
where
N: Eq + Hash + Clone,
FN: FnMut(&N) -> IN,
IN: IntoIterator<Item = N>,
FS: FnMut(&N) -> bool,
{
bfs_core(start, successors, success, true)
}
fn bfs_core<N, FN, IN, FS>(
start: &N,
mut successors: FN,
mut success: FS,
check_first: bool,
) -> Option<Vec<N>>
where
N: Eq + Hash + Clone,
FN: FnMut(&N) -> IN,
IN: IntoIterator<Item = N>,
FS: FnMut(&N) -> bool,
{
if check_first && success(start) {
return Some(vec![start.clone()]);
}
let mut to_see = VecDeque::new();
let mut parents: FxIndexMap<N, usize> = FxIndexMap::default();
to_see.push_back(0);
parents.insert(start.clone(), usize::max_value());
while let Some(i) = to_see.pop_front() {
let node = parents.get_index(i).unwrap().0;
for successor in successors(node) {
if success(&successor) {
let mut path = reverse_path(&parents, |&p| p, i);
path.push(successor);
return Some(path);
}
if let Vacant(e) = parents.entry(successor) {
to_see.push_back(e.index());
e.insert(i);
}
}
}
None
}
/// Return one of the shortest loop from start to start if it exists, `None` otherwise.
///
/// - `start` is the starting node.
/// - `successors` returns a list of successors for a given node.
///
/// Except the start node which will be included both at the beginning and the end of
/// the path, a node will never be included twice in the path as determined
/// by the `Eq` relationship.
pub fn bfs_loop<N, FN, IN>(start: &N, successors: FN) -> Option<Vec<N>>
where
N: Eq + Hash + Clone,
FN: FnMut(&N) -> IN,
IN: IntoIterator<Item = N>,
{
bfs_core(start, successors, |n| n == start, false)
}
/// Visit all nodes that are reachable from a start node. The node will be visited
/// in BFS order, starting from the `start` node and following the order returned
/// by the `successors` function.
///
/// # Examples
///
/// The iterator stops when there are no new nodes to visit:
///
/// ```
/// use pathfinding::prelude::bfs_reach;
///
/// let all_nodes = bfs_reach(3, |_| (1..=5)).collect::<Vec<_>>();
/// assert_eq!(all_nodes, vec![3, 1, 2, 4, 5]);
/// ```
///
/// The iterator can be used as a generator. Here are for examples
/// the multiples of 2 and 3 (although not in natural order but in
/// the order they are discovered by the BFS algorithm):
///
/// ```
/// use pathfinding::prelude::bfs_reach;
///
/// let mut it = bfs_reach(1, |&n| vec![n*2, n*3]).skip(1);
/// assert_eq!(it.next(), Some(2)); // 1*2
/// assert_eq!(it.next(), Some(3)); // 1*3
/// assert_eq!(it.next(), Some(4)); // (1*2)*2
/// assert_eq!(it.next(), Some(6)); // (1*2)*3
/// // (1*3)*2 == 6 which has been seen already
/// assert_eq!(it.next(), Some(9)); // (1*3)*3
/// assert_eq!(it.next(), Some(8)); // ((1*2)*2)*2
/// assert_eq!(it.next(), Some(12)); // ((1*2)*2)*3
/// ```
pub fn bfs_reach<N, FN, IN>(start: N, successors: FN) -> BfsReachable<N, FN>
where
N: Eq + Hash + Clone,
FN: FnMut(&N) -> IN,
IN: IntoIterator<Item = N>,
{
let (mut to_see, mut seen) = (VecDeque::new(), HashSet::new());
to_see.push_back(start.clone());
seen.insert(start);
BfsReachable {
to_see,
seen,
successors,
}
}
/// Struct returned by [`bfs_reach`](crate::directed::bfs::bfs_reach).
pub struct BfsReachable<N, FN> {
to_see: VecDeque<N>,
seen: HashSet<N>,
successors: FN,
}
impl<N, FN, IN> Iterator for BfsReachable<N, FN>
where
N: Eq + Hash + Clone,
FN: FnMut(&N) -> IN,
IN: IntoIterator<Item = N>,
{
type Item = N;
fn next(&mut self) -> Option<Self::Item> {
if let Some(n) = self.to_see.pop_front() {
for s in (self.successors)(&n) {
if !self.seen.contains(&s) {
self.to_see.push_back(s.clone());
self.seen.insert(s);
}
}
Some(n)
} else {
None
}
}
}
| 31.280193 | 99 | 0.573436 |
b86ea5ac9f051da55cbabdb61610b2e3149f5d5b | 49 | rs | Rust | api/tests/main.rs | dimfeld/ergo | e8610f0a826378e827d72e51d386839c28fa67d5 | [
"Apache-2.0",
"MIT"
] | 64 | 2021-03-14T08:50:12.000Z | 2022-03-05T16:44:36.000Z | api/tests/main.rs | dimfeld/ergo | e8610f0a826378e827d72e51d386839c28fa67d5 | [
"Apache-2.0",
"MIT"
] | 24 | 2021-03-17T19:03:16.000Z | 2022-02-05T21:27:33.000Z | api/tests/main.rs | dimfeld/ergo | e8610f0a826378e827d72e51d386839c28fa67d5 | [
"Apache-2.0",
"MIT"
] | 4 | 2021-04-23T22:48:53.000Z | 2022-01-21T08:32:59.000Z | mod auth;
mod common;
mod smoke_test;
mod tasks;
| 9.8 | 15 | 0.755102 |
13551944cd93c2357beb5d11ce2dbf7eac74782f | 255 | h | C | cnn/struct/layer/function/softmax_layer_module.h | hslee1539/cnn | 816418af0a0057d777f41ac072c3a97fea7e2027 | [
"MIT"
] | null | null | null | cnn/struct/layer/function/softmax_layer_module.h | hslee1539/cnn | 816418af0a0057d777f41ac072c3a97fea7e2027 | [
"MIT"
] | null | null | null | cnn/struct/layer/function/softmax_layer_module.h | hslee1539/cnn | 816418af0a0057d777f41ac072c3a97fea7e2027 | [
"MIT"
] | null | null | null | #pragma once
#include "./activation_function_layer_module.h"
void cnn_softmax_crossentropy_layer_forward(struct cnn_Layer *layer, int index, int max_index);
void cnn_softmax_crossentropy_layer_backward(struct cnn_Layer *layer, int index, int max_index); | 42.5 | 96 | 0.843137 |
fb8e1da262cc71b80eb550895b1bc117c88ebb73 | 661 | h | C | PrivateFrameworks/CoreWLANKit/UTF8Formatter.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 17 | 2018-11-13T04:02:58.000Z | 2022-01-20T09:27:13.000Z | PrivateFrameworks/CoreWLANKit/UTF8Formatter.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 3 | 2018-04-06T02:02:27.000Z | 2018-10-02T01:12:10.000Z | PrivateFrameworks/CoreWLANKit/UTF8Formatter.h | phatblat/macOSPrivateFrameworks | 9047371eb80f925642c8a7c4f1e00095aec66044 | [
"MIT"
] | 1 | 2018-09-28T13:54:23.000Z | 2018-09-28T13:54:23.000Z | //
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import <CoreWLANKit/APFormatter.h>
__attribute__((visibility("hidden")))
@interface UTF8Formatter : APFormatter
{
unsigned long long _maxByteCount;
}
+ (id)utf8FormatterWithMaxByteCount:(int)arg1 maxLength:(int)arg2;
+ (id)utf8Formatter:(int)arg1;
+ (id)utf8Formatter;
- (unsigned long long)maxByteCount;
- (void)setMaxByteCount:(unsigned long long)arg1;
- (BOOL)isPartialStringValid:(id)arg1 newEditingString:(id *)arg2 errorDescription:(id *)arg3;
- (id)initWithMaxByteCount:(int)arg1 maxLength:(int)arg2;
@end
| 26.44 | 94 | 0.733737 |
424b06d24f8eda8cb78d1d2317121f934910cbe4 | 1,603 | lua | Lua | flags/flags.lua | avid/lua-flags | cc2fc7b8c9baab7a0686f6dec067b825de9bd9d1 | [
"MIT"
] | null | null | null | flags/flags.lua | avid/lua-flags | cc2fc7b8c9baab7a0686f6dec067b825de9bd9d1 | [
"MIT"
] | null | null | null | flags/flags.lua | avid/lua-flags | cc2fc7b8c9baab7a0686f6dec067b825de9bd9d1 | [
"MIT"
] | null | null | null | local T_STR = 'string'
local T_BOOL = 'boolean'
local T_NUM = 'number'
local T_TBL = 'table'
local flags = {
config = {},
values = {}
}
function flags:string(key, default)
assert(type(key) == T_STR)
assert(default == nil or type(default) == T_STR)
self.config[key] = { key = key, type = T_STR, default = default }
end
function flags:boolean(key)
assert(type(key) == T_STR)
self.config[key] = { key = key, type = T_BOOL, default = false }
end
function flags:number(key, default)
assert(type(key) == T_STR)
assert(default == nil or type(default) == T_NUM)
self.config[key] = { key = key, type = T_NUM, default = default }
end
function flags:table(key, default)
assert(type(key) == T_STR)
assert(default == nil or type(default) == T_TBL)
self.config[key] = { key = key, type = T_TBL, default = default }
end
function flags:parse(args)
assert(type(args) == T_TBL)
local c, v
for i = 1, #args do
if string.sub(args[i], 1, 1) == '-' then
c = self.config[string.sub(args[i], -1)]
if c ~= nil then
i = i + 1
v = args[i]
if c.type == T_STR then
self.values[c.key] = v
elseif c.type == T_NUM then
self.values[c.key] = tonumber(v, 10)
elseif c.type == T_TBL then
local tbl = self.values[c.key]
if tbl == nil then
tbl = { v }
else
tbl[#tbl + 1] = v
end
self.values[c.key] = tbl
elseif c.type == T_BOOL then
self.values[c.key] = true
end
end
end
i = i + 1
end
for _, v in pairs(self.config) do
if self.values[v.key] == nil then
self.values[v.key] = v.default
end
end
end
return flags | 23.231884 | 66 | 0.613849 |
b344de856b8f54154dc0591028bbb6f9125fd139 | 1,000 | dart | Dart | lib/resultado.dart | desouzagabriel/perguntas-appflutter | bd5e99756ec86a09df55984e78e45e6c0444f9ef | [
"CC0-1.0"
] | null | null | null | lib/resultado.dart | desouzagabriel/perguntas-appflutter | bd5e99756ec86a09df55984e78e45e6c0444f9ef | [
"CC0-1.0"
] | null | null | null | lib/resultado.dart | desouzagabriel/perguntas-appflutter | bd5e99756ec86a09df55984e78e45e6c0444f9ef | [
"CC0-1.0"
] | null | null | null | import 'package:flutter/material.dart';
class Resultado extends StatelessWidget {
final int pontuacao;
final void Function() reiniciarQuestionario;
Resultado(this.pontuacao, this.reiniciarQuestionario);
String get fraseResultado {
if (pontuacao < 8) {
return 'Dorime! Ameno!';
} else if (pontuacao < 12) {
return 'Interino!';
} else if (pontuacao < 16) {
return 'Flutter/Dart Ameno!';
} else {
return 'Your are a Jedi!';
}
}
@override
Widget build(BuildContext context) {
return Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Center(
child: Text(
fraseResultado,
style: TextStyle(fontSize: 28),
),
),
FlatButton(
child: Text(
'Reiniciar?',
style: TextStyle(fontSize: 18),
),
textColor: Colors.blue,
onPressed: reiniciarQuestionario,
)
],
);
}
}
| 23.255814 | 56 | 0.572 |
1af639e32ee410c1f7dc11453a351f8560e335db | 102 | dart | Dart | lib/board/model/popup_menu.dart | he0119/smart-home-flutter | 4b47828f9ec22aee459d53a980b2e413994b7eab | [
"MIT"
] | 3 | 2020-12-02T11:54:08.000Z | 2021-11-03T09:54:12.000Z | lib/board/model/popup_menu.dart | he0119/smart-home-flutter | 4b47828f9ec22aee459d53a980b2e413994b7eab | [
"MIT"
] | 86 | 2020-02-27T03:03:50.000Z | 2022-02-17T09:48:47.000Z | lib/board/model/popup_menu.dart | he0119/smart-home-flutter | 4b47828f9ec22aee459d53a980b2e413994b7eab | [
"MIT"
] | null | null | null | /// 话题详情
///
/// 编辑,删除,置顶,取消置顶,关闭,开启
enum TopicDetailMenu { edit, delete, pin, unpin, close, reopen }
| 20.4 | 64 | 0.647059 |
0ec2678b8ec49cb0dbfedc705fb1d26007d921fd | 2,364 | ts | TypeScript | server/serverHelpers.ts | atao60/minimal-ts-web-client-server | edf4a47265a927bee0957e939c6c422d8d8db418 | [
"MIT"
] | null | null | null | server/serverHelpers.ts | atao60/minimal-ts-web-client-server | edf4a47265a927bee0957e939c6c422d8d8db418 | [
"MIT"
] | null | null | null | server/serverHelpers.ts | atao60/minimal-ts-web-client-server | edf4a47265a927bee0957e939c6c422d8d8db418 | [
"MIT"
] | null | null | null | import { IncomingMessage } from 'http';
import { parse as urlParse } from 'url';
import { join, parse as pathParse } from 'path';
import { existsSync } from 'fs';
export const WEB_ROOT_DIR = './public';
export const SRC_DIR = './src';
const NODE_MODULES_DIR = './node_modules';
const RUNNING_FILE_EXT = '.js';
const defaultContentType = 'text/plain';
const contentTypeMap: { [key: string]: string; } = {
css: 'text/css',
js: 'text/javascript',
html: 'text/html',
plain: defaultContentType
} as const;
const determineContentType = (extension: string, contentTypeByDefault = defaultContentType) => {
return contentTypeMap[extension] || contentTypeByDefault;
};
// to be used only with full path, ie the file extension is known if any.
export const fetchContentType = (filePath: string, contentTypeByDefault?: string) => {
const extension = pathParse(filePath).ext.replace('.', '');
const contentType = determineContentType(extension, contentTypeByDefault);
return contentType;
};
export const fetchFilePathOnServer = (request: IncomingMessage): string => {
const requestUrl = request.url || '';
const parsedUrl = urlParse(requestUrl);
const pathname = parsedUrl.pathname || '';
const pathParts: string[] = [];
if (!/^\.{0,2}\//.exec(pathname)) { // bare module resolving
// add relative path of node_modules
// and if no file ext., add '.js' as such
pathParts.push(NODE_MODULES_DIR);
const hasNoFileExt = !fetchContentType(pathname, '');
const extension = hasNoFileExt ? RUNNING_FILE_EXT : '';
const longpath = pathname + extension;
pathParts.push(longpath);
}
else if (pathname === '/') {
pathParts.push(WEB_ROOT_DIR)
pathParts.push('index.html');
}
else if (/^\.{0,2}\/node_modules/.exec(pathname)) { // explicit node module
pathParts.push(pathname);
}
else { // inner project module
// always relative to WEB_ROOT_DIR
// first search as it then if no file ext, with ext. '.js'
// filePathOnServerParts.push(WEB_ROOT_DIR)
const shortpath = join(WEB_ROOT_DIR, pathname);
const extension = existsSync(shortpath) ? '' : RUNNING_FILE_EXT;
const longpath = shortpath + extension;
pathParts.push(longpath);
}
return join('.', ...pathParts);
} | 37.52381 | 96 | 0.659475 |
277d56889ab156f219245d1beb93918850cce147 | 26,696 | css | CSS | resources/assets/admin/css/all-css/icheck.css | S-Jegan/walkin-admin-app | 0e330399b9ab4177d9fae045134661b8f2c412bf | [
"MIT"
] | null | null | null | resources/assets/admin/css/all-css/icheck.css | S-Jegan/walkin-admin-app | 0e330399b9ab4177d9fae045134661b8f2c412bf | [
"MIT"
] | null | null | null | resources/assets/admin/css/all-css/icheck.css | S-Jegan/walkin-admin-app | 0e330399b9ab4177d9fae045134661b8f2c412bf | [
"MIT"
] | null | null | null | .noty_animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/* iCheck plugin Minimal skin
----------------------------------- */
.icheckbox_minimal,
.iradio_minimal {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background-image: url("../images/icheck-minimal/minimal.png");
background-repeat: no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal {
background-position: 0 0;
}
.icheckbox_minimal.hover {
background-position: -20px 0;
}
.icheckbox_minimal.checked {
background-position: -40px 0;
}
.icheckbox_minimal.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal {
background-position: -100px 0;
}
.iradio_minimal.hover {
background-position: -120px 0;
}
.iradio_minimal.checked {
background-position: -140px 0;
}
.iradio_minimal.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal,
.iradio_minimal {
background-image: url("../images/icheck-minimal/minimal@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* red */
.icheckbox_minimal-red,
.iradio_minimal-red {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/red.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-red {
background-position: 0 0;
}
.icheckbox_minimal-red.hover {
background-position: -20px 0;
}
.icheckbox_minimal-red.checked {
background-position: -40px 0;
}
.icheckbox_minimal-red.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-red.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-red {
background-position: -100px 0;
}
.iradio_minimal-red.hover {
background-position: -120px 0;
}
.iradio_minimal-red.checked {
background-position: -140px 0;
}
.iradio_minimal-red.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-red.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-red,
.iradio_minimal-red {
background-image: url("../images/icheck-minimal/red@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* green */
.icheckbox_minimal-green,
.iradio_minimal-green {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/green.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-green {
background-position: 0 0;
}
.icheckbox_minimal-green.hover {
background-position: -20px 0;
}
.icheckbox_minimal-green.checked {
background-position: -40px 0;
}
.icheckbox_minimal-green.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-green.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-green {
background-position: -100px 0;
}
.iradio_minimal-green.hover {
background-position: -120px 0;
}
.iradio_minimal-green.checked {
background-position: -140px 0;
}
.iradio_minimal-green.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-green.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-green,
.iradio_minimal-green {
background-image: url("../images/icheck-minimal/green@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* blue */
.icheckbox_minimal-blue,
.iradio_minimal-blue {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/blue.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-blue {
background-position: 0 0;
}
.icheckbox_minimal-blue.hover {
background-position: -20px 0;
}
.icheckbox_minimal-blue.checked {
background-position: -40px 0;
}
.icheckbox_minimal-blue.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-blue.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-blue {
background-position: -100px 0;
}
.iradio_minimal-blue.hover {
background-position: -120px 0;
}
.iradio_minimal-blue.checked {
background-position: -140px 0;
}
.iradio_minimal-blue.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-blue.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-blue,
.iradio_minimal-blue {
background-image: url("../images/icheck-minimal/blue@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* aero */
.icheckbox_minimal-aero,
.iradio_minimal-aero {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/aero.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-aero {
background-position: 0 0;
}
.icheckbox_minimal-aero.hover {
background-position: -20px 0;
}
.icheckbox_minimal-aero.checked {
background-position: -40px 0;
}
.icheckbox_minimal-aero.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-aero.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-aero {
background-position: -100px 0;
}
.iradio_minimal-aero.hover {
background-position: -120px 0;
}
.iradio_minimal-aero.checked {
background-position: -140px 0;
}
.iradio_minimal-aero.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-aero.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-aero,
.iradio_minimal-aero {
background-image: url("../images/icheck-minimal/aero@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* grey */
.icheckbox_minimal-grey,
.iradio_minimal-grey {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/grey.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-grey {
background-position: 0 0;
}
.icheckbox_minimal-grey.hover {
background-position: -20px 0;
}
.icheckbox_minimal-grey.checked {
background-position: -40px 0;
}
.icheckbox_minimal-grey.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-grey.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-grey {
background-position: -100px 0;
}
.iradio_minimal-grey.hover {
background-position: -120px 0;
}
.iradio_minimal-grey.checked {
background-position: -140px 0;
}
.iradio_minimal-grey.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-grey.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-grey,
.iradio_minimal-grey {
background-image: url("../images/icheck-minimal/grey@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* orange */
.icheckbox_minimal-orange,
.iradio_minimal-orange {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url(orange.png) no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-orange {
background-position: 0 0;
}
.icheckbox_minimal-orange.hover {
background-position: -20px 0;
}
.icheckbox_minimal-orange.checked {
background-position: -40px 0;
}
.icheckbox_minimal-orange.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-orange.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-orange {
background-position: -100px 0;
}
.iradio_minimal-orange.hover {
background-position: -120px 0;
}
.iradio_minimal-orange.checked {
background-position: -140px 0;
}
.iradio_minimal-orange.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-orange.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-orange,
.iradio_minimal-orange {
background-image: url("../images/icheck-minimal/orange@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* yellow */
.icheckbox_minimal-yellow,
.iradio_minimal-yellow {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/yellow.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-yellow {
background-position: 0 0;
}
.icheckbox_minimal-yellow.hover {
background-position: -20px 0;
}
.icheckbox_minimal-yellow.checked {
background-position: -40px 0;
}
.icheckbox_minimal-yellow.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-yellow.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-yellow {
background-position: -100px 0;
}
.iradio_minimal-yellow.hover {
background-position: -120px 0;
}
.iradio_minimal-yellow.checked {
background-position: -140px 0;
}
.iradio_minimal-yellow.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-yellow.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-yellow,
.iradio_minimal-yellow {
background-image: url("../images/icheck-minimal/yellow@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* pink */
.icheckbox_minimal-pink,
.iradio_minimal-pink {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/pink.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-pink {
background-position: 0 0;
}
.icheckbox_minimal-pink.hover {
background-position: -20px 0;
}
.icheckbox_minimal-pink.checked {
background-position: -40px 0;
}
.icheckbox_minimal-pink.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-pink.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-pink {
background-position: -100px 0;
}
.iradio_minimal-pink.hover {
background-position: -120px 0;
}
.iradio_minimal-pink.checked {
background-position: -140px 0;
}
.iradio_minimal-pink.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-pink.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_minimal-pink,
.iradio_minimal-pink {
background-image: url("../images/icheck-minimal/pink@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* purple */
.icheckbox_minimal-purple,
.iradio_minimal-purple {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 18px;
height: 18px;
background: url("../images/icheck-minimal/purple.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_minimal-purple {
background-position: 0 0;
}
.icheckbox_minimal-purple.hover {
background-position: -20px 0;
}
.icheckbox_minimal-purple.checked {
background-position: -40px 0;
}
.icheckbox_minimal-purple.disabled {
background-position: -60px 0;
cursor: default;
}
.icheckbox_minimal-purple.checked.disabled {
background-position: -80px 0;
}
.iradio_minimal-purple {
background-position: -100px 0;
}
.iradio_minimal-purple.hover {
background-position: -120px 0;
}
.iradio_minimal-purple.checked {
background-position: -140px 0;
}
.iradio_minimal-purple.disabled {
background-position: -160px 0;
cursor: default;
}
.iradio_minimal-purple.checked.disabled {
background-position: -180px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
.icheckbox_minimal-purple,
.iradio_minimal-purple {
background-image: url("../images/icheck-minimal/purple@2x.png");
-webkit-background-size: 200px 20px;
background-size: 200px 20px;
}
}
/* iCheck plugin Square skin
----------------------------------- */
.icheckbox_square,
.iradio_square {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background-image: url("../images/icheck-square/square.png");
background-repeat: no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square {
background-position: 0 0;
}
.icheckbox_square.hover {
background-position: -24px 0;
}
.icheckbox_square.checked {
background-position: -48px 0;
}
.icheckbox_square.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square.checked.disabled {
background-position: -96px 0;
}
.iradio_square {
background-position: -120px 0;
}
.iradio_square.hover {
background-position: -144px 0;
}
.iradio_square.checked {
background-position: -168px 0;
}
.iradio_square.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square,
.iradio_square {
background-image: url("../images/icheck-square/square.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* red */
.icheckbox_square-red,
.iradio_square-red {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/red.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-red {
background-position: 0 0;
}
.icheckbox_square-red.hover {
background-position: -24px 0;
}
.icheckbox_square-red.checked {
background-position: -48px 0;
}
.icheckbox_square-red.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-red.checked.disabled {
background-position: -96px 0;
}
.iradio_square-red {
background-position: -120px 0;
}
.iradio_square-red.hover {
background-position: -144px 0;
}
.iradio_square-red.checked {
background-position: -168px 0;
}
.iradio_square-red.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-red.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-red,
.iradio_square-red {
background-image: url("../images/icheck-square/red@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* green */
.icheckbox_square-green,
.iradio_square-green {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/green.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-green {
background-position: 0 0;
}
.icheckbox_square-green.hover {
background-position: -24px 0;
}
.icheckbox_square-green.checked {
background-position: -48px 0;
}
.icheckbox_square-green.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-green.checked.disabled {
background-position: -96px 0;
}
.iradio_square-green {
background-position: -120px 0;
}
.iradio_square-green.hover {
background-position: -144px 0;
}
.iradio_square-green.checked {
background-position: -168px 0;
}
.iradio_square-green.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-green.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-green,
.iradio_square-green {
background-image: url("../images/icheck-square/green@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* blue */
.icheckbox_square-blue,
.iradio_square-blue {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/blue.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-blue {
background-position: 0 0;
}
.icheckbox_square-blue.hover {
background-position: -24px 0;
}
.icheckbox_square-blue.checked {
background-position: -48px 0;
}
.icheckbox_square-blue.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-blue.checked.disabled {
background-position: -96px 0;
}
.iradio_square-blue {
background-position: -120px 0;
}
.iradio_square-blue.hover {
background-position: -144px 0;
}
.iradio_square-blue.checked {
background-position: -168px 0;
}
.iradio_square-blue.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-blue.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-blue,
.iradio_square-blue {
background-image: url("../images/icheck-square/blue@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* aero */
.icheckbox_square-aero,
.iradio_square-aero {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/aero.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-aero {
background-position: 0 0;
}
.icheckbox_square-aero.hover {
background-position: -24px 0;
}
.icheckbox_square-aero.checked {
background-position: -48px 0;
}
.icheckbox_square-aero.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-aero.checked.disabled {
background-position: -96px 0;
}
.iradio_square-aero {
background-position: -120px 0;
}
.iradio_square-aero.hover {
background-position: -144px 0;
}
.iradio_square-aero.checked {
background-position: -168px 0;
}
.iradio_square-aero.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-aero.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-aero,
.iradio_square-aero {
background-image: url("../images/icheck-square/aero@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* grey */
.icheckbox_square-grey,
.iradio_square-grey {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/grey.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-grey {
background-position: 0 0;
}
.icheckbox_square-grey.hover {
background-position: -24px 0;
}
.icheckbox_square-grey.checked {
background-position: -48px 0;
}
.icheckbox_square-grey.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-grey.checked.disabled {
background-position: -96px 0;
}
.iradio_square-grey {
background-position: -120px 0;
}
.iradio_square-grey.hover {
background-position: -144px 0;
}
.iradio_square-grey.checked {
background-position: -168px 0;
}
.iradio_square-grey.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-grey.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-grey,
.iradio_square-grey {
background-image: url("../images/icheck-square/grey@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* orange */
.icheckbox_square-orange,
.iradio_square-orange {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/orange.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-orange {
background-position: 0 0;
}
.icheckbox_square-orange.hover {
background-position: -24px 0;
}
.icheckbox_square-orange.checked {
background-position: -48px 0;
}
.icheckbox_square-orange.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-orange.checked.disabled {
background-position: -96px 0;
}
.iradio_square-orange {
background-position: -120px 0;
}
.iradio_square-orange.hover {
background-position: -144px 0;
}
.iradio_square-orange.checked {
background-position: -168px 0;
}
.iradio_square-orange.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-orange.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-orange,
.iradio_square-orange {
background-image: url("../images/icheck-square/orange@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* yellow */
.icheckbox_square-yellow,
.iradio_square-yellow {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/yellow.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-yellow {
background-position: 0 0;
}
.icheckbox_square-yellow.hover {
background-position: -24px 0;
}
.icheckbox_square-yellow.checked {
background-position: -48px 0;
}
.icheckbox_square-yellow.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-yellow.checked.disabled {
background-position: -96px 0;
}
.iradio_square-yellow {
background-position: -120px 0;
}
.iradio_square-yellow.hover {
background-position: -144px 0;
}
.iradio_square-yellow.checked {
background-position: -168px 0;
}
.iradio_square-yellow.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-yellow.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-yellow,
.iradio_square-yellow {
background-image: url("../images/icheck-square/yellow@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* pink */
.icheckbox_square-pink,
.iradio_square-pink {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/pink.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-pink {
background-position: 0 0;
}
.icheckbox_square-pink.hover {
background-position: -24px 0;
}
.icheckbox_square-pink.checked {
background-position: -48px 0;
}
.icheckbox_square-pink.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-pink.checked.disabled {
background-position: -96px 0;
}
.iradio_square-pink {
background-position: -120px 0;
}
.iradio_square-pink.hover {
background-position: -144px 0;
}
.iradio_square-pink.checked {
background-position: -168px 0;
}
.iradio_square-pink.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-pink.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
.icheckbox_square-pink,
.iradio_square-pink {
background-image: url("../images/icheck-square/pink@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
/* purple */
.icheckbox_square-purple,
.iradio_square-purple {
display: inline-block;
*display: inline;
vertical-align: middle;
margin: 0;
padding: 0;
width: 22px;
height: 22px;
background: url("../images/icheck-square/purple.png") no-repeat;
border: none;
cursor: pointer;
}
.icheckbox_square-purple {
background-position: 0 0;
}
.icheckbox_square-purple.hover {
background-position: -24px 0;
}
.icheckbox_square-purple.checked {
background-position: -48px 0;
}
.icheckbox_square-purple.disabled {
background-position: -72px 0;
cursor: default;
}
.icheckbox_square-purple.checked.disabled {
background-position: -96px 0;
}
.iradio_square-purple {
background-position: -120px 0;
}
.iradio_square-purple.hover {
background-position: -144px 0;
}
.iradio_square-purple.checked {
background-position: -168px 0;
}
.iradio_square-purple.disabled {
background-position: -192px 0;
cursor: default;
}
.iradio_square-purple.checked.disabled {
background-position: -216px 0;
}
/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
.icheckbox_square-purple,
.iradio_square-purple {
background-image: url("../images/icheck-square/purple@2x.png");
-webkit-background-size: 240px 24px;
background-size: 240px 24px;
}
}
| 24.028803 | 135 | 0.711904 |
68116cda0e6fb433f4332cadc4c6a11c2e568323 | 425 | html | HTML | FaultyNetworkClient/src/app/components/input/input.component.html | dakotalraymond/Faulty-Network-Chat | bd580cc73d0438c50eec6ce5fd1550ae054f0b85 | [
"MIT"
] | null | null | null | FaultyNetworkClient/src/app/components/input/input.component.html | dakotalraymond/Faulty-Network-Chat | bd580cc73d0438c50eec6ce5fd1550ae054f0b85 | [
"MIT"
] | null | null | null | FaultyNetworkClient/src/app/components/input/input.component.html | dakotalraymond/Faulty-Network-Chat | bd580cc73d0438c50eec6ce5fd1550ae054f0b85 | [
"MIT"
] | null | null | null | <div>
<mat-form-field class="input-area">
<mat-label>Enter Message Here</mat-label>
<textarea
matInput
cdkTextareaAutosize
#autosize="cdkTextareaAutosize"
cdkAutosizeMinRows="1"
[(ngModel)]="chatInput"
cdkAutosizeMaxRows="5"
></textarea>
</mat-form-field>
<br />
<button
mat-raised-button
color="primary"
(click)="handleSendClick()"
>Send</button>
</div>
| 21.25 | 45 | 0.623529 |
65909318babfdbd9dc78aa978437a77c16b45261 | 175 | sql | SQL | test/integration/062_defer_state_test/models/table_model.sql | jankytara2/dbt | 3f4069ab6d4d5b3fc34f8fe785761b5617357b0f | [
"Apache-2.0"
] | 3,156 | 2017-03-05T09:59:23.000Z | 2021-06-30T01:27:52.000Z | test/integration/062_defer_state_test/models/table_model.sql | jankytara2/dbt | 3f4069ab6d4d5b3fc34f8fe785761b5617357b0f | [
"Apache-2.0"
] | 2,608 | 2017-02-27T15:39:40.000Z | 2021-06-30T01:49:20.000Z | test/integration/062_defer_state_test/models/table_model.sql | jankytara2/dbt | 3f4069ab6d4d5b3fc34f8fe785761b5617357b0f | [
"Apache-2.0"
] | 693 | 2017-03-13T03:04:49.000Z | 2021-06-25T15:57:41.000Z | {{ config(materialized='table') }}
select * from {{ ref('ephemeral_model') }}
-- establish a macro dependency to trigger state:modified.macros
-- depends on: {{ my_macro() }} | 35 | 64 | 0.691429 |
401582c896f376b99f86038450177c993aa633f7 | 1,980 | swift | Swift | Guardian/Crypto/Data+Base64URL.swift | johnryan16/Guardian.swift | 1a422ddc15d6abe7da31d2a5ba86db4c2d5f7325 | [
"MIT"
] | 4 | 2018-02-13T15:18:36.000Z | 2021-08-12T18:16:13.000Z | Guardian/Crypto/Data+Base64URL.swift | johnryan16/Guardian.swift | 1a422ddc15d6abe7da31d2a5ba86db4c2d5f7325 | [
"MIT"
] | 10 | 2016-11-29T03:13:17.000Z | 2022-01-18T16:45:34.000Z | Guardian/Crypto/Data+Base64URL.swift | johnryan16/Guardian.swift | 1a422ddc15d6abe7da31d2a5ba86db4c2d5f7325 | [
"MIT"
] | 15 | 2018-03-18T07:10:31.000Z | 2021-06-01T15:05:18.000Z | // Data+Base64URL.swift
//
// Copyright (c) 2016 Auth0 (http://auth0.com)
//
// 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.
import Foundation
extension Data {
init?(base64URLEncoded string: String) {
let base64Encoded = string
.replacingOccurrences(of: "_", with: "/")
.replacingOccurrences(of: "-", with: "+")
// iOS can't handle base64 encoding without padding. Add manually
let padLength = (4 - (base64Encoded.count % 4)) % 4
let base64EncodedWithPadding = base64Encoded + String(repeating: "=", count: padLength)
self.init(base64Encoded: base64EncodedWithPadding)
}
func base64URLEncodedString() -> String {
// use URL safe encoding and remove padding
return self.base64EncodedString()
.replacingOccurrences(of: "/", with: "_")
.replacingOccurrences(of: "+", with: "-")
.replacingOccurrences(of: "=", with: "")
}
}
| 44 | 95 | 0.69899 |
ac0b388cdc9f9903c33a44e8524f1221290567bc | 830 | sql | SQL | klondike/src/main/resources/schema.sql | nwoike/patience | e2fd64ad1d07ae4de62ced1d6b34782b8e5ed4a1 | [
"MIT"
] | null | null | null | klondike/src/main/resources/schema.sql | nwoike/patience | e2fd64ad1d07ae4de62ced1d6b34782b8e5ed4a1 | [
"MIT"
] | 1 | 2018-03-14T03:54:00.000Z | 2018-03-14T03:54:00.000Z | klondike/src/main/resources/schema.sql | nwoike/patience | e2fd64ad1d07ae4de62ced1d6b34782b8e5ed4a1 | [
"MIT"
] | null | null | null | CREATE TABLE IF NOT EXISTS Klondike (
game_id VARCHAR(36) PRIMARY KEY,
data TEXT NOT NULL,
version INTEGER NOT NULL
);
CREATE TABLE IF NOT EXISTS KlondikeScore (
game_id VARCHAR(36) PRIMARY KEY,
data TEXT NOT NULL,
version INTEGER NOT NULL
);
CREATE TABLE IF NOT EXISTS Events (
event_id INTEGER GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1) PRIMARY KEY,
event_type VARCHAR(256) NOT NULL,
event_body TEXT NOT NULL,
occurred_on TIMESTAMP NOT NULL
);
CREATE TABLE IF NOT EXISTS ProcessedEventTracker (
constrain INTEGER PRIMARY KEY NOT NULL DEFAULT(1),
latest_event_id INTEGER NOT NULL REFERENCES Events(event_id),
CONSTRAINT pet_single_row CHECK (constrain = 1)
); | 34.583333 | 93 | 0.650602 |
fb194776a60c2a6332430561190a3603b398aa98 | 1,263 | h | C | libgamestream/xml.h | Michanne/exhale | 2c34fd06b0e6f24fb7cc8fc9da77c63d0e1ade5f | [
"MIT"
] | 1 | 2021-09-03T05:47:30.000Z | 2021-09-03T05:47:30.000Z | libgamestream/xml.h | Michanne/exhale | 2c34fd06b0e6f24fb7cc8fc9da77c63d0e1ade5f | [
"MIT"
] | null | null | null | libgamestream/xml.h | Michanne/exhale | 2c34fd06b0e6f24fb7cc8fc9da77c63d0e1ade5f | [
"MIT"
] | null | null | null | /*
* This file is part of Moonlight Embedded.
*
* Copyright (C) 2015 Iwan Timmer
*
* Moonlight is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Moonlight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Moonlight; if not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <stdio.h>
typedef struct _APP_LIST {
char* name;
int id;
struct _APP_LIST *next;
} APP_LIST, *PAPP_LIST;
typedef struct _DISPLAY_MODE {
unsigned int height;
unsigned int width;
unsigned int refresh;
struct _DISPLAY_MODE *next;
} DISPLAY_MODE, *PDISPLAY_MODE;
int xml_search(char* data, size_t len, char* node, char** result);
int xml_applist(char* data, size_t len, PAPP_LIST *app_list);
int xml_modelist(char* data, size_t len, PDISPLAY_MODE *mode_list);
int xml_status(char* data, size_t len);
| 31.575 | 71 | 0.741093 |
a8960b3ddaa7afd42ad88fedf560be2069c718d3 | 908 | sql | SQL | create_databases.sql | cdlib/aspace_deploy | 066d59c0b0a0180e53c933b57ecbc47dc15442cd | [
"BSD-2-Clause"
] | null | null | null | create_databases.sql | cdlib/aspace_deploy | 066d59c0b0a0180e53c933b57ecbc47dc15442cd | [
"BSD-2-Clause"
] | null | null | null | create_databases.sql | cdlib/aspace_deploy | 066d59c0b0a0180e53c933b57ecbc47dc15442cd | [
"BSD-2-Clause"
] | 1 | 2019-07-19T00:02:11.000Z | 2019-07-19T00:02:11.000Z | create database ucsf default character set utf8 default collate utf8_general_ci;
create database ucmppdc default character set utf8 default collate utf8_general_ci;
create database ucbeda default character set utf8 default collate utf8_general_ci;
create database ucsc default character set utf8 default collate utf8_general_ci;
create database ucrcmp default character set utf8 default collate utf8_general_ci;
create database uclaclark default character set utf8 default collate utf8_general_ci;
create database ucm default character set utf8 default collate utf8_general_ci;
create database uclacsrc default character set utf8 default collate utf8_general_ci;
create database uci default character set utf8 default collate utf8_general_ci;
create database ucrie default character set utf8 default collate utf8_general_ci;
create database ucrlib default character set utf8 default collate utf8_general_ci;
| 75.666667 | 85 | 0.86674 |
b86ecc379d881d5101fb137b9e0f1438f993b080 | 2,675 | ps1 | PowerShell | module/functions/azure/aad/Assert-AzureAdAppForAppService.ps1 | corvus-dotnet/Corvus.Deployment | 38a6754bacd32433d1e3e7c04d8eb0598728629d | [
"Apache-2.0"
] | 1 | 2021-03-12T12:08:56.000Z | 2021-03-12T12:08:56.000Z | module/functions/azure/aad/Assert-AzureAdAppForAppService.ps1 | corvus-dotnet/Corvus.Deployment | 38a6754bacd32433d1e3e7c04d8eb0598728629d | [
"Apache-2.0"
] | 20 | 2020-06-04T07:59:50.000Z | 2022-02-04T18:03:07.000Z | module/functions/azure/aad/Assert-AzureAdAppForAppService.ps1 | corvus-dotnet/Corvus.Deployment | 38a6754bacd32433d1e3e7c04d8eb0598728629d | [
"Apache-2.0"
] | null | null | null | # <copyright file="Assert-AzureAdAppForAppService.ps1" company="Endjin Limited">
# Copyright (c) Endjin Limited. All rights reserved.
# </copyright>
<#
.SYNOPSIS
Ensures that an AzureAD application for use with an Azure AppService exists.
.DESCRIPTION
For AzureAD applications that don't already exist, one will be created with a '.azurewebsites.net'
homepage URI and be configured with the SignInAndReadProfile required access.
.PARAMETER AppName
The name of the application.
.PARAMETER AppId
For existing applications and scenarios where suitable Azure graph access is not available, the
application be specified by its ApplicationID.
.OUTPUTS
Microsoft.Azure.Commands.ActiveDirectory.PSADApplication
#>
function Assert-AzureAdAppForAppService
{
[CmdletBinding()]
param
(
[Parameter(Mandatory=$true)]
[string] $AppName,
[string] $AppId
)
# Check whether we have a valid AzPowerShell connection
_EnsureAzureConnection -AzPowerShell -ErrorAction Stop
if ( !(Test-AzureGraphAccess) ) {
if (-not $AppId) {
Write-Error "AppId for $AppName was not supplied and access to the Azure AD graph is not available. Either run this in a context where graph access is available, or pass this app id in as an argument."
}
$adApp = Get-AzADApplication -ApplicationId $AppId
Write-Host ("AppId for {0} ({1}) is {2}" -f $AppName, $AppName, $AppId)
return $adApp
}
$EasyAuthCallbackTail = ".auth/login/aad/callback"
$AppUri = "https://" + $AppName + ".azurewebsites.net/"
# When we add APIM support, this would need to use the public-facing service root, assuming
# we still actually want callback URI support.
$ReplyUrls = @(($AppUri + $EasyAuthCallbackTail))
$app = Assert-AzureAdApp -DisplayName $AppName `
-AppUri $AppUri `
-ReplyUrls $ReplyUrls
Write-Host ("AppId for {0} ({1}) is {2}" -f $AppName, $AppName, $app.ApplicationId)
$Principal = Get-AzAdServicePrincipal -ApplicationId $app.ApplicationId
if (-not $Principal)
{
$newSp = New-AzAdServicePrincipal -ApplicationId $app.ApplicationId -DisplayName $AppName -SkipAssignment
}
$GraphApiAppId = "00000002-0000-0000-c000-000000000000"
$SignInAndReadProfileScopeId = "311a71cc-e848-46a1-bdf8-97ff7156d8e6"
$manifest = Assert-RequiredResourceAccessContains `
-App $app `
-ResourceId $GraphApiAppId `
-AccessRequirements @( @{Id=$SignInAndReadProfileScopeId; Type="Scope"} )
return $app
} | 36.643836 | 214 | 0.672897 |
d719ebc36c56f2b168c25ec8c4ebe566b7bbc8d2 | 77 | sql | SQL | spec/fixtures/glob/test.sql | sdogruyol/tren | c2e2fc2e77b722fa34c4a2fce3f4bcdf45e2ef2a | [
"MIT"
] | 127 | 2016-10-08T19:32:00.000Z | 2021-11-14T01:15:51.000Z | spec/fixtures/glob/test.sql | sdogruyol/tren | c2e2fc2e77b722fa34c4a2fce3f4bcdf45e2ef2a | [
"MIT"
] | 12 | 2016-10-10T22:23:38.000Z | 2021-03-21T05:58:51.000Z | spec/fixtures/glob/test.sql | sdogruyol/tren | c2e2fc2e77b722fa34c4a2fce3f4bcdf45e2ef2a | [
"MIT"
] | 6 | 2016-10-10T22:17:53.000Z | 2019-08-01T13:06:16.000Z | -- name: glob_1
select * from users
-- name: glob_2
select * from products | 11 | 22 | 0.688312 |
afd01755eb4ca84ca082f7da18c736048d7e8616 | 455 | html | HTML | SpringWEB/SpringSecurity/LiveSessions/Authentication/login/src/main/resources/templates/hidden.html | anupamdev/Spring | 3236bce601779f65809ead080621cff9c743ea7f | [
"Apache-2.0"
] | 25 | 2020-08-24T20:07:37.000Z | 2022-03-04T20:13:20.000Z | SpringWEB/SpringSecurity/LiveSessions/Authentication/login/src/main/resources/templates/hidden.html | anupamdev/Spring | 3236bce601779f65809ead080621cff9c743ea7f | [
"Apache-2.0"
] | 20 | 2021-05-18T19:45:12.000Z | 2022-03-24T06:25:40.000Z | SpringWEB/SpringSecurity/LiveSessions/Authentication/login/src/main/resources/templates/hidden.html | anupamdev/Spring | 3236bce601779f65809ead080621cff9c743ea7f | [
"Apache-2.0"
] | 19 | 2020-09-07T10:01:20.000Z | 2022-03-05T11:34:45.000Z | <!doctype html>
<html lang="en" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
<head><title>Yahaha! You Found Me!</title></head>
<body>
<div layout:fragment="content">
<iframe width="560"
height="315"
src="https://www.youtube.com/embed/4FuDOhWUrak"
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen>
</iframe>
</div>
</body>
</html> | 30.333333 | 101 | 0.610989 |
c1b933a6b0a11739fa3be61e3413cb11d8a3fe0f | 1,258 | rs | Rust | src/idp/error.rs | agrinman/samael | e654fa62b3a61b88ace3ec1ee7880e0f3d2534c9 | [
"MIT"
] | null | null | null | src/idp/error.rs | agrinman/samael | e654fa62b3a61b88ace3ec1ee7880e0f3d2534c9 | [
"MIT"
] | null | null | null | src/idp/error.rs | agrinman/samael | e654fa62b3a61b88ace3ec1ee7880e0f3d2534c9 | [
"MIT"
] | null | null | null | use snafu::Snafu;
#[derive(Debug, Snafu)]
pub enum Error {
NoSignature,
NoKeyInfo,
NoCertificate,
NoSPSsoDescriptors,
SignatureFailed,
UnexpectedError,
MismatchedCertificate,
InvalidCertificateEncoding,
MissingAudience,
MissingAcsUrl,
NonHttpPostBindingUnsupported,
MissingAuthnRequestSubjectNameID,
MissingAuthnRequestIssuer,
#[snafu(display("Invalid AuthnRequest: {}", error))]
InvalidAuthnRequest {
error: crate::schema::authn_request::Error,
},
#[snafu(display("OpenSSL Error: {}", stack))]
OpenSSLError {
stack: openssl::error::ErrorStack,
},
#[snafu(display("Verification Error: {}", error))]
VerificationError {
error: crate::crypto::Error,
},
}
impl From<openssl::error::ErrorStack> for Error {
fn from(error: openssl::error::ErrorStack) -> Self {
Error::OpenSSLError { stack: error }
}
}
impl From<crate::crypto::Error> for Error {
fn from(error: crate::crypto::Error) -> Self {
Error::VerificationError { error }
}
}
impl From<crate::schema::authn_request::Error> for Error {
fn from(error: crate::schema::authn_request::Error) -> Self {
Error::InvalidAuthnRequest { error }
}
} | 23.296296 | 65 | 0.653418 |
1a9d61c3485747622b3d6245b75c12dc94bb1051 | 2,097 | rs | Rust | src/app/widgets/gallery.rs | AngelOfSol/art-organize | ed4ad1d936a585a80e9f98b672d7875edb553f5d | [
"MIT"
] | null | null | null | src/app/widgets/gallery.rs | AngelOfSol/art-organize | ed4ad1d936a585a80e9f98b672d7875edb553f5d | [
"MIT"
] | null | null | null | src/app/widgets/gallery.rs | AngelOfSol/art-organize | ed4ad1d936a585a80e9f98b672d7875edb553f5d | [
"MIT"
] | null | null | null | use std::collections::BTreeMap;
use db::BlobId;
use glam::Vec2;
use imgui::{im_str, Ui};
use crate::{
app::gui_state::GuiHandle,
consts::{IMAGE_BUFFER, THUMBNAIL_SIZE},
raw_image::TextureImage,
};
use super::blob;
pub fn render<'a, I: Iterator<Item = BlobId>, T: Fn(BlobId), L: Fn(BlobId) -> &'a str>(
ui: &Ui,
blobs: I,
gui_handle: &GuiHandle,
thumbnails: &BTreeMap<BlobId, TextureImage>,
loading: L,
tooltip: T,
) -> Option<BlobId> {
let mut ret = None;
for blob in blobs {
let label = im_str!("##{:?}", blob);
if let Some(thumbnail) = thumbnails.get(&blob) {
// TODO integrate loading button into it
match blob::thumbnail_button(&label, thumbnail, ui) {
blob::ThumbnailResponse::None => {}
blob::ThumbnailResponse::Hovered => {
ui.tooltip(|| {
tooltip(blob);
});
}
blob::ThumbnailResponse::Clicked => {
ret = Some(blob);
}
}
} else {
imgui::ChildWindow::new(&label)
.size([THUMBNAIL_SIZE + IMAGE_BUFFER; 2])
.draw_background(false)
.build(ui, || {
ui.set_cursor_pos(
(Vec2::from(ui.cursor_pos()) + Vec2::splat(IMAGE_BUFFER) / 2.0).into(),
);
if ui.button_with_size(&im_str!("{}", loading(blob)), [THUMBNAIL_SIZE; 2]) {
ret = Some(blob);
}
if ui.is_item_visible() {
gui_handle.request_load_thumbnail(blob);
}
if ui.is_item_hovered() {
ui.tooltip(|| {
tooltip(blob);
});
}
});
}
ui.same_line();
if ui.content_region_avail()[0] < THUMBNAIL_SIZE + IMAGE_BUFFER {
ui.new_line();
}
}
ret
}
| 30.391304 | 96 | 0.452551 |
d248c7f9603d442e4c503b3a836de0d63a5ebd44 | 174 | php | PHP | resources/views/includes/pendaftaran/script.blade.php | ukmpolicy/template | 772c9b98c9ff4bd8622ac4c68559af22b3c9a057 | [
"MIT"
] | 1 | 2021-01-24T08:12:57.000Z | 2021-01-24T08:12:57.000Z | resources/views/includes/pendaftaran/script.blade.php | ukmpolicy/template | 772c9b98c9ff4bd8622ac4c68559af22b3c9a057 | [
"MIT"
] | null | null | null | resources/views/includes/pendaftaran/script.blade.php | ukmpolicy/template | 772c9b98c9ff4bd8622ac4c68559af22b3c9a057 | [
"MIT"
] | null | null | null | <script src="{{ url('or/frontend/libraries/bootstrap/js/bootstrap.min.js') }}"></script>
<script src="{{ url('or/frontend/libraries/jquery/jquery-3.5.1.min.js') }}"></script> | 87 | 88 | 0.683908 |
0e4769f9fc767b5972d128ce15e9457f71d9f8d4 | 9,067 | swift | Swift | FanFindSDK/ViewControllers/PlaceDetailsViewController.swift | Turnoutt/FanFind-iOS | 75704cb8bc407ffaeefa5511810c4a9a48ef9b60 | [
"MIT"
] | null | null | null | FanFindSDK/ViewControllers/PlaceDetailsViewController.swift | Turnoutt/FanFind-iOS | 75704cb8bc407ffaeefa5511810c4a9a48ef9b60 | [
"MIT"
] | null | null | null | FanFindSDK/ViewControllers/PlaceDetailsViewController.swift | Turnoutt/FanFind-iOS | 75704cb8bc407ffaeefa5511810c4a9a48ef9b60 | [
"MIT"
] | null | null | null | //
// PlaceDetailsViewController.swift
// FanFindSDK
//
// Created by Christopher Woolum on 7/16/19.
// Copyright © 2019 Turnoutt Inc. All rights reserved.
//
import Foundation
import MapKit
internal class PlaceDetailsViewController : UIViewController{
@IBOutlet var dealsEventsView: SelfSizedTableView!
@IBOutlet var hoursTableView: SelfSizedTableView!
@IBOutlet var logo: UIImageView!
@IBOutlet var fanCount: PeopleCountNumbers!
@IBOutlet var placeInfoHeader: PlaceInfoHeaderView!
@IBOutlet var websiteButton: UIButton!
@IBOutlet var backButton: UIButton!
var bundle = Bundle(for: PlaceDetailsViewController.self)
@IBAction func goBack(_ sender: Any) {
dismiss(animated: true, completion: nil)
}
@IBAction func navigate(_ sender: Any) {
let locationCoords = CLLocationCoordinate2D(
latitude: (self.place!.latitude)!,
longitude: (self.place!.longitude)!
)
if let place = place{
let location = NavigatorLocation(coords: locationCoords, name: place.name ?? "", address: place.fullAddress)
Navigator.presentPicker(destination: location, presentOn: self)
}
}
@IBAction func callPlace(_ sender: Any) {
if let phoneNumber = self.placeDetails?.phoneNumber {
guard let number = URL(string: "tel://" + phoneNumber) else { return }
UIApplication.shared.open(number)
}
}
var deals: Array<PlaceDeal> = []
var events: Array<PlaceEvent> = []
var hours: Array<BusinessHour> = []
var placeDetails: NearByPlaceDetails? = nil
var place: NearByPlace? = nil
public init(place: NearByPlace, placeDetails: NearByPlaceDetails) {
self.place = place
self.placeDetails = placeDetails
self.hours = placeDetails.hours.sorted(by: { (prev, next) -> Bool in
if(prev.dayNumberOfWeek == next.dayNumberOfWeek){
return prev.startTime < next.startTime
}
return prev.dayNumberOfWeek < next.dayNumberOfWeek
})
self.deals = placeDetails.deals
self.events = placeDetails.events
super.init(nibName: "PlaceDetailsViewController", bundle: self.bundle)
}
required public init?(coder aDecoder: NSCoder) {
super.init(nibName: "PlaceDetailsViewController", bundle: self.bundle)
}
override var shouldAutorotate: Bool{
return false
}
override var supportedInterfaceOrientations: UIInterfaceOrientationMask{
return .portrait
}
override func viewDidLoad() {
super.viewDidLoad()
self.placeInfoHeader.showExtendedDetails = true
self.view.backgroundColor = FanFindConfiguration.backgroundColor
dealsEventsView.delegate = self
dealsEventsView.dataSource = self
dealsEventsView.allowsSelection = false
dealsEventsView.separatorStyle = .none
hoursTableView.delegate = self
hoursTableView.dataSource = self
hoursTableView.allowsSelection = false
hoursTableView.separatorStyle = .none
if(self.hours.count == 0){
hoursTableView.isHidden = true
}
if(FanFindConfiguration.currentTheme == .Dark){
backButton.setTitleColor(UIColor.white, for: UIControl.State.normal)
}
DispatchQueue.main.async {
self.fanCount.setTotals(maleCount: self.place?.peopleCount ?? 0, femaleCount: 0, neutralCount: 0)
self.placeInfoHeader.setPlace(place: self.place!)
self.placeInfoHeader.setPlaceDetails(place: self.placeDetails!)
self.websiteButton.isHidden = true
}
if(self.place?.primaryCategory == "Full-Service Restaurants"){
let restaurantImage = UIImage(named: "CafeHeader_" + FanFindConfiguration.currentTheme.rawValue, in: self.bundle, compatibleWith: nil)
self.logo.image = restaurantImage
}else{
let barImage = UIImage(named: "BarHeader_" + FanFindConfiguration.currentTheme.rawValue, in: self.bundle, compatibleWith: nil)
self.logo.image = barImage
}
dealsEventsView.register(UINib(nibName: "EventsTableViewCell", bundle: Bundle(for: EventsTableViewCell.self)), forCellReuseIdentifier: "eventsTableViewCell")
dealsEventsView.register(UINib(nibName: "DealsTableViewCell", bundle: Bundle(for: DealsTableViewCell.self)), forCellReuseIdentifier: "dealsTableViewCell")
dealsEventsView.register(UINib(nibName: "StandardHeaderTableViewCell", bundle: Bundle(for: StandardHeaderTableViewCell.self)), forHeaderFooterViewReuseIdentifier: "standardHeaderTableViewCell")
hoursTableView.register(UINib(nibName: "HoursHeaderTableViewCell", bundle: Bundle(for: HoursHeaderTableViewCell.self)), forHeaderFooterViewReuseIdentifier: "hoursHeaderTableViewCell")
hoursTableView.register(UINib(nibName: "HoursTableViewCell", bundle: Bundle(for: HoursTableViewCell.self)), forCellReuseIdentifier: "hoursTableViewCell")
}
}
extension PlaceDetailsViewController: UITableViewDataSource{
func numberOfSections(in tableView: UITableView) -> Int {
if(tableView == self.hoursTableView){
return 1
}
if deals.count == 0 {
if events.count == 0 {
return 0
}
return 1
}
return 2
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if(tableView == self.dealsEventsView){
switch section {
case 0:
if deals.count == 0 {
return events.count
}else{
return deals.count
}
case 1:
return events.count
default:
return 0
}
}
return hours.count
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 0
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
if(tableView == self.hoursTableView){
let cell = tableView.dequeueReusableHeaderFooterView(withIdentifier: "hoursHeaderTableViewCell") as! HoursHeaderTableViewCell
cell.setHours(hours: hours)
return cell
} else {
let cell = tableView.dequeueReusableHeaderFooterView(withIdentifier: "standardHeaderTableViewCell") as! StandardHeaderTableViewCell
switch section {
case 0:
if deals.count == 0 {
cell.label.text = "EVENTS"
}else{
cell.label.text = "DEALS"
}
case 1:
cell.label.text = "EVENTS"
default:
cell.label.text = ""
}
return cell
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if(tableView == self.hoursTableView){
let cell = tableView.dequeueReusableCell(withIdentifier: "hoursTableViewCell") as! HoursTableViewCell
cell.dayOfWeek.text = hours[indexPath.row].dayOfWeek
cell.setTime(startTime: hours[indexPath.row].startTime, endTime: hours[indexPath.row].endTime, dayNumberOfWeek: hours[indexPath.row].dayNumberOfWeek)
return cell
} else {
switch indexPath.section {
case 0:
if deals.count == 0 {
let cell = tableView.dequeueReusableCell(withIdentifier: "eventsTableViewCell") as! EventsTableViewCell
cell.setEvent(event: events[indexPath.row])
return cell
} else {
let cell = tableView.dequeueReusableCell(withIdentifier: "dealsTableViewCell") as! DealsTableViewCell
cell.label.text = deals[indexPath.row].dealText
return cell
}
case 1:
let cell = tableView.dequeueReusableCell(withIdentifier: "eventsTableViewCell") as! EventsTableViewCell
cell.setEvent(event: events[indexPath.row])
return cell
default:
let cell = tableView.dequeueReusableCell(withIdentifier: "dealsTableViewCell") as! DealsTableViewCell
cell.label.text = deals[indexPath.row].dealText
return cell
}
}
}
}
extension PlaceDetailsViewController: UITableViewDelegate{
}
| 36.560484 | 201 | 0.605051 |
3bc13e7fb9b70195a97c99bf67d5351988fbc7b9 | 1,019 | html | HTML | manuscript/page-1681/body.html | marvindanig/vanity-fair | 0c19618738f4b544fac59b7ed4218e32bc2614e0 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | manuscript/page-1681/body.html | marvindanig/vanity-fair | 0c19618738f4b544fac59b7ed4218e32bc2614e0 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | manuscript/page-1681/body.html | marvindanig/vanity-fair | 0c19618738f4b544fac59b7ed4218e32bc2614e0 | [
"BlueOak-1.0.0",
"MIT"
] | null | null | null | <div class="leaf "><div class="inner justify"><p class="no-indent ">how good and generous you were, and who taught me to love you as a brother. Have you not been everything to me and my boy? Our dearest, truest, kindest friend and protector? Had you come a few months sooner perhaps you might have spared me that—that dreadful parting. Oh, it nearly killed me, William—but you didn't come, though I wished and prayed for you to come, and they took him too away from me. Isn't he a noble boy, William? Be his friend still and mine"—and here her voice broke, and she hid her face on his shoulder.</p><p>The Major folded his arms round her, holding her to him as if she was a child, and kissed her head. "I will not change, dear Amelia," he said. "I ask for no more than your love. I think I would not have it otherwise. Only let me stay near you and see you often."</p><p class=" stretch-last-line ">"Yes, often," Amelia said. And so William was at liberty to look and long—as the poor boy at school who</p></div> </div> | 1,019 | 1,019 | 0.741904 |
fba39f8ed699930627883eaeaed6b4375f1061fa | 722 | java | Java | Ex_41.java | fmanapaula/Exercicio18ao45 | 8b5ba370f54fd27300920756686bae7520a3c63a | [
"Apache-2.0"
] | null | null | null | Ex_41.java | fmanapaula/Exercicio18ao45 | 8b5ba370f54fd27300920756686bae7520a3c63a | [
"Apache-2.0"
] | null | null | null | Ex_41.java | fmanapaula/Exercicio18ao45 | 8b5ba370f54fd27300920756686bae7520a3c63a | [
"Apache-2.0"
] | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author paulakanae
*/
import javax.swing.JOptionPane;
public class Ex_41 {
public static void main(String args[]){
int dado;
dado = 0;
for(int i = 1;i<=7;i++){
dado = 0;
for( int j = 1; j<=7;j++){
dado = i+j;
if (dado ==7){
JOptionPane.showMessageDialog(null,i +" e "+ j +".");
}
}
}
}
}
| 20.628571 | 80 | 0.433518 |
6923a2dd760f52e68e40da59c22ad723d36ab25d | 212 | dart | Dart | lib/ui/utility/ann-icon.dart | PingAK9/app_shop_flutter | 818195b5749649017508737107f3fc9a68a25dd8 | [
"MIT"
] | null | null | null | lib/ui/utility/ann-icon.dart | PingAK9/app_shop_flutter | 818195b5749649017508737107f3fc9a68a25dd8 | [
"MIT"
] | null | null | null | lib/ui/utility/ann-icon.dart | PingAK9/app_shop_flutter | 818195b5749649017508737107f3fc9a68a25dd8 | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
class AnnIcon extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Image.asset('assets/images/ui/ann.png', fit: BoxFit.contain,);
}
}
| 23.555556 | 73 | 0.735849 |
dd355e84ec58cd8fb7ee86419aa1983796bffa09 | 1,729 | ps1 | PowerShell | build/DynamicPlaceholders/ReformatDynamicplaceholders.ps1 | uwe-e/mch.habitat.v91 | 781e4f3b4a65211e677fa4dfaf8c4f3933fba92b | [
"Apache-2.0"
] | null | null | null | build/DynamicPlaceholders/ReformatDynamicplaceholders.ps1 | uwe-e/mch.habitat.v91 | 781e4f3b4a65211e677fa4dfaf8c4f3933fba92b | [
"Apache-2.0"
] | null | null | null | build/DynamicPlaceholders/ReformatDynamicplaceholders.ps1 | uwe-e/mch.habitat.v91 | 781e4f3b4a65211e677fa4dfaf8c4f3933fba92b | [
"Apache-2.0"
] | null | null | null | # This script will transform the layout definitions on all items from the custom dynamicplaceholder format to the new standard v9 format
# Run this script using the Sitecore Powershell extensions
function Replace($renderings, $item) {
[regex]$placeholderRegEx = "([\w-_\.]*)_([{(]?[0-9A-Fa-f]{8}[-]?([0-9A-Fa-f]{4}[-]?){3}[0-9A-Fa-f]{12}[)}]?)"
$matches = $placeholderRegEx.Matches($renderings)
if ($matches.Count -gt 0)
{
Write-Host $item.Paths.FullPath
}
while ($matches.Count -gt 0) {
$match = $matches[0]
$placeholder = $match.Groups[1].Value
$id = $match.Groups[2].Value.ToUpper()
$newPlaceholderReference = "$placeholder-{$id}-0"
$renderings = $renderings.Remove($match.Index, $match.Length).Insert($match.Index, $newPlaceholderReference);
$matches = $placeholderRegEx.Matches($renderings)
}
return $renderings
}
Set-Location -Path master:\content\Habitat
$items = Get-ChildItem -Recurse
foreach ($item in $items) {
foreach ($itemVersion in $item.Versions.GetVersions()) {
$finalRenderings = $itemVersion["{04BF00DB-F5FB-41F7-8AB7-22408372A981}"]
$renderings = $itemVersion["{F1A1FE9E-A60C-4DDB-A3A0-BB5B29FE732E}"]
$newFinalRenderings = Replace $finalRenderings $itemVersion
$newRenderings = Replace $renderings $itemVersion
if ($newFinalRenderings -ne $finalRenderings -or $newRenderings -ne $renderings) {
$item.Editing.BeginEdit()
$item["{04BF00DB-F5FB-41F7-8AB7-22408372A981}"] = $newFinalRenderings
$item["{F1A1FE9E-A60C-4DDB-A3A0-BB5B29FE732E}"] = $newRenderings
$item.Editing.EndEdit()
}
}
}
| 41.166667 | 136 | 0.64546 |
46bbadf28dd665d2a9498c343488760df182e054 | 357,395 | html | HTML | fi/Le-zoom-de-la-r-daction.html | vpmalley/vpmalley.github.io | 2de4116078bab5ef51d6bc8256daf07bc7bd3ff0 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | fi/Le-zoom-de-la-r-daction.html | vpmalley/vpmalley.github.io | 2de4116078bab5ef51d6bc8256daf07bc7bd3ff0 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | fi/Le-zoom-de-la-r-daction.html | vpmalley/vpmalley.github.io | 2de4116078bab5ef51d6bc8256daf07bc7bd3ff0 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Émissions pour le programme Le zoom de la rédaction - rss-cacher</title>
<style>
@import url("http://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900");
body {
background: #444a55;
}
body, input, select, textarea {
color: #b1b1b1;
font-family: 'Raleway', sans-serif;
font-size: 14pt;
font-weight: 400;
line-height: 1.6em;
width: 80%;
margin: 1em;
}
a {
color: #999999;
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.item {
background: #333944;
padding: 0.5em 0.5em 0 0.5em;
margin: 1em 0 1em 0;
}
.btn {
background: #222833;
padding: 0.3em;
margin: 0.1em;
}
.feed {
padding: 0.1em;
}
</style>
</head>
<body>
<table>
<tr>
<td>
<div class="btn"><a href="./index.html">Tous les programmes de la radio</a></div>
</td>
</tr>
</table>
<h1>Émissions pour le programme Le zoom de la rédaction</h1><br>
<ul>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-06-octobre-2016">À Mossoul, la guerre est déjà là</a></h2>
<p>Thu Oct 06 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:32 - Le zoom de la rédaction - Les forces irakiennes, soutenues par la coalition, devraient prochainement lancer l’offensive à Mossoul contre le groupe État islamique. Phillipe Randé s'est rendu sur place.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.10.2016-ITEMA_21096456-0.mp3" download="À Mossoul, la guerre est déjà là">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.10.2016-ITEMA_21096456-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-05-octobre-2016">La libération de Syrte, rue par rue, maison par maison</a></h2>
<p>Wed Oct 05 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:53 - Le zoom de la rédaction - VIDÉO | La lutte contre le djihadisme se joue aussi en Libye, où de violents combats se déroulent depuis dimanche. Notre reporter Omar Ouahmane a suivi les forces gouvernementales.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.10.2016-ITEMA_21095339-0.mp3" download="La libération de Syrte, rue par rue, maison par maison">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.10.2016-ITEMA_21095339-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-04-octobre-2016">Affaire Traoré : Autopsie de dysfonctionnements judiciaires en série...</a></h2>
<p>Tue Oct 04 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - L'AffaireTraoré du nom de ce français d'origine malienne mort à la suite d'une interpellation par trois gendarmes le 19 juillet dernier à Beaumont-sur-Oise.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.10.2016-ITEMA_21094250-0.mp3" download="Affaire Traoré : Autopsie de dysfonctionnements judiciaires en série...">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.10.2016-ITEMA_21094250-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-03-octobre-2016">Les boues rouges de Gardanne</a></h2>
<p>Mon Oct 03 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - Zoom ce matin sur un dossier sensible qui oppose au gouvernement Manuel Valls et Ségolène Royal. Sur le terrain l’industriel Altéo affronte des dizaines d’associations.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.10.2016-ITEMA_21093136-0.mp3" download="Les boues rouges de Gardanne">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.10.2016-ITEMA_21093136-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-29-septembre-2016">La voiture autonome circule déjà sur le périphérique</a></h2>
<p>Thu Sep 29 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - Pendant longtemps, c'était de la science-fiction : la voiture autonome est désormais une réalité. Nous avons fait un tour de périphérique à bord d'une voiture rendue intelligente.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.09.2016-ITEMA_21089840-0.mp3" download="La voiture autonome circule déjà sur le périphérique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.09.2016-ITEMA_21089840-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-28-septembre-2016">Cinéma : "Fuocoammare", la tragédie des migrants sur grand écran</a></h2>
<p>Wed Sep 28 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:06 - Le zoom de la rédaction - Le film &quot;Fuocoammare, par-delà Lampedusa&quot;, Ours d'or à Berlin, sort en France aujourd'hui. A cette occasion, reportage à Lampedusa.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.09.2016-ITEMA_21088738-0.mp3" download="Cinéma : "Fuocoammare", la tragédie des migrants sur grand écran">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.09.2016-ITEMA_21088738-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-27-septembre-2016">Alstom Belfort : paroles de salariés</a></h2>
<p>Tue Sep 27 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:09 - Le zoom de la rédaction - Journée de grève chez Alstom Transport ce mardi, alors que le site de Belfort est menacé. Le Zoom de la rédaction donne la parole aux salariés belfortins.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.09.2016-ITEMA_21087650-0.mp3" download="Alstom Belfort : paroles de salariés">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.09.2016-ITEMA_21087650-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-26-septembre-2016">A New-York, les jeunes électeurs attendent Hillary Clinton au tournant</a></h2>
<p>Mon Sep 26 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction - A quelques heures du premier débat télévisé entre Hillary Clinton et Donald Trump, Bertrand Gallicher est allé à New-York, fief démocrate, à la rencontre de jeunes électeurs.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.09.2016-ITEMA_21086544-0.mp3" download="A New-York, les jeunes électeurs attendent Hillary Clinton au tournant">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.09.2016-ITEMA_21086544-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-22-septembre-2016">Notre-Dame-des-Landes, en attendant l'évacuation</a></h2>
<p>Thu Sep 22 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Sur le site du futur aéroport, les zadistes se préparent à une évacuation de plus en plus probable.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.09.2016-ITEMA_21083179-0.mp3" download="Notre-Dame-des-Landes, en attendant l'évacuation">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.09.2016-ITEMA_21083179-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-21-septembre-2016">La maladie d'Alzheimer : quand les malades cohabitent à domicile</a></h2>
<p>Wed Sep 21 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Un reportage de Véronique Julia.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.09.2016-ITEMA_21082098-0.mp3" download="La maladie d'Alzheimer : quand les malades cohabitent à domicile">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.09.2016-ITEMA_21082098-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-20-septembre-2016">Derrière les barreaux, l’ennui et la surpopulation</a></h2>
<p>Tue Sep 20 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:06:04 - Le zoom de la rédaction - À Fresnes, la vie s'organise comme au sein d'une ville. Reportage dans la deuxième prison de France, avec Corinne Audouin.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.09.2016-ITEMA_21080993-0.mp3" download="Derrière les barreaux, l’ennui et la surpopulation">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.09.2016-ITEMA_21080993-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-19-septembre-2016">Monaco va encore rogner sur la mer</a></h2>
<p>Mon Sep 19 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:51 - Le zoom de la rédaction - Monaco va encore s'étendre sur la mer ! Et créer un nouveau quartier luxueux, qui se veut exemplaire sur le plan environnemental.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.09.2016-ITEMA_21079873-0.mp3" download="Monaco va encore rogner sur la mer">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.09.2016-ITEMA_21079873-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-15-septembre-2016">Le renouveau de l'habitat participatif</a></h2>
<p>Thu Sep 15 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - L'habitat partagé séduit de plus en plus de Français. Ces espaces collectifs autogérés sont devenus une véritable alternative à la propriété. Reportage à Montreuil, près de Paris.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.09.2016-ITEMA_21076619-0.mp3" download="Le renouveau de l'habitat participatif">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.09.2016-ITEMA_21076619-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-14-septembre-2016">Elections en Russie : les opposants ne désarment pas</a></h2>
<p>Wed Sep 14 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:57 - Le zoom de la rédaction - La Russie votera dimanche prochain pour élire ses députés, des gouverneurs, et des centaines de conseillers locaux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.09.2016-ITEMA_21075552-0.mp3" download="Elections en Russie : les opposants ne désarment pas">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.09.2016-ITEMA_21075552-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-13-septembre-2016">Les enseignants vont-ils être remplacés par des logiciels ?</a></h2>
<p>Tue Sep 13 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:15 - Le zoom de la rédaction - Le gouvernement a lancé un grand plan pour le numérique à l'école. Son but est d’offrir un enseignement plus moderne, ludique, personnalisé et égalitaire.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.09.2016-ITEMA_21074501-0.mp3" download="Les enseignants vont-ils être remplacés par des logiciels ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.09.2016-ITEMA_21074501-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-12-septembre-2016">En Grande-Bretagne, la parole raciste se libère</a></h2>
<p>Mon Sep 12 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Depuis la campagne du Brexit, certains Britanniques ont moins de scrupules à montrer leur animosité envers les immigrants, accusés de tous les maux économiques du pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.09.2016-ITEMA_21073419-0.mp3" download="En Grande-Bretagne, la parole raciste se libère">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.09.2016-ITEMA_21073419-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-08-septembre-2016">État d’urgence et lutte anti-terroriste : les policiers ont toujours le blues</a></h2>
<p>Thu Sep 08 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:03 - Le zoom de la rédaction - Avec l’état d’urgence prolongé cet été, la police multiplie ses réquisitions et a même obtenu des renforts humains…mais sur le terrain, l’effet est encore loin de se faire sentir.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.09.2016-ITEMA_21070225-0.mp3" download="État d’urgence et lutte anti-terroriste : les policiers ont toujours le blues">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.09.2016-ITEMA_21070225-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-07-septembre-2016">Médiateurs à l'école, moins de harcèlement, plus de réussite</a></h2>
<p>Wed Sep 07 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Une nouvelle présence pour la rentrée 2016 dans certains collèges des quartiers classés prioritaires,50 médiateurs intègrent ces établissements.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.09.2016-ITEMA_21069148-0.mp3" download="Médiateurs à l'école, moins de harcèlement, plus de réussite">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.09.2016-ITEMA_21069148-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-06-septembre-2016">En France, la santé sacrifiée faute de moyens</a></h2>
<p>Tue Sep 06 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Le zoom de la rédaction est consacré à l'enquête du Secours populaire sur la précarité en France, enquête dont France inter vous dévoile les premiers chiffres.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.09.2016-ITEMA_21068054-0.mp3" download="En France, la santé sacrifiée faute de moyens">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.09.2016-ITEMA_21068054-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-05-septembre-2016">Le zoom de la rédaction</a></h2>
<p>Mon Sep 05 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.09.2016-ITEMA_21066772-0.mp3" download="Le zoom de la rédaction">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.09.2016-ITEMA_21066772-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/">Le zoom de la rédaction 02.09.2016</a></h2>
<p>Fri Sep 02 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.09.2016-ITEMA_21064696-0.mp3" download="Le zoom de la rédaction 02.09.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.09.2016-ITEMA_21064696-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-01-septembre-2016">Quelle sécurité pour les écoles juives ?</a></h2>
<p>Thu Sep 01 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:12 - Le zoom de la rédaction - Après un été endeuillé par les tueries de Nice et Saint-Etienne-du-Rouvray, la sécurité des écoles est renforcée. Reportage à l'école Ohr Torah, visée en 2012 par Mohamed Merah.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.09.2016-ITEMA_21063670-0.mp3" download="Quelle sécurité pour les écoles juives ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.09.2016-ITEMA_21063670-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-31-aout-2016">Qui sont les "trumpistes" ?</a></h2>
<p>Wed Aug 31 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:45 - Le zoom de la rédaction - Le candidat à la présidentielle américaine doit prononcer ce mercredi soir un discours sur l'immigration, pierre angulaire de sa campagne, qui a attiré bon nombre de soutiens.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.08.2016-ITEMA_21062660-0.mp3" download="Qui sont les "trumpistes" ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.08.2016-ITEMA_21062660-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-30-aout-2016">Quand la laiterie devient responsable</a></h2>
<p>Tue Aug 30 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - En plein bras de fer entre les éleveurs et le géant du lait Lactalis, reportage dans une laiterie qui essaie de valoriser au maximum le travail des producteurs.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.08.2016-ITEMA_21061555-0.mp3" download="Quand la laiterie devient responsable">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.08.2016-ITEMA_21061555-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-29-aout-2016">Vintimille, la dernière frontière ?</a></h2>
<p>Mon Aug 29 2016 05:15:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - Plus de 100 000 migrants sont arrivés par la mer en Italie depuis le début de l’année. Quelques-uns demandent l’asile en Italie, la plupart veulent aller dans le Nord de l'Europe.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.08.2016-ITEMA_21060547-0.mp3" download="Vintimille, la dernière frontière ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.08.2016-ITEMA_21060547-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-28-aout-2016">InterClass': Les femmes et le sport</a></h2>
<p>Sun Aug 28 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:12 - Le zoom de la rédaction - Quelles sont les différences entre les sportives et les sportifs?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.08.2016-ITEMA_21060133-0.mp3" download="InterClass': Les femmes et le sport">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.08.2016-ITEMA_21060133-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-27-aout-2016">InterClass': ma religion fait partie de mon identité</a></h2>
<p>Sat Aug 27 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:15 - Le zoom de la rédaction - A la rencontre des croyants de Grigny</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.08.2016-ITEMA_21059697-0.mp3" download="InterClass': ma religion fait partie de mon identité">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.08.2016-ITEMA_21059697-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-26-aout-2016">Interclass' : les filles victimes de leur réputation</a></h2>
<p>Fri Aug 26 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction - Direction Mantes-la-Jolie, avec les élèves du collège Louis-Pasteur, sur la place de la femme dans les quartiers et sur les questions de rumeur et de réputation.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.08.2016-ITEMA_21058775-0.mp3" download="Interclass' : les filles victimes de leur réputation">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.08.2016-ITEMA_21058775-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-25-aout-2016">Le blues des médecins généralistes</a></h2>
<p>Thu Aug 25 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:03 - Le zoom de la rédaction - L'augmentation du prix de la consultation n'efface pas les inquiétudes des médecins, qui s'inquiètent en particulier du manque d'attrait des jeunes pour ce métier si particulier.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.08.2016-ITEMA_21057854-0.mp3" download="Le blues des médecins généralistes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.08.2016-ITEMA_21057854-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-24-aout-2016">Les Pokémon, une mine d'or à portée de smartphone</a></h2>
<p>Wed Aug 24 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Le jeu vidéo Pokémon GO, gigantesque succès sur les smartphones du monde entier, est gratuit. Mais il pourrait rapporter gros à beaucoup de monde, et pas seulement son éditeur...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.08.2016-ITEMA_21057024-0.mp3" download="Les Pokémon, une mine d'or à portée de smartphone">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.08.2016-ITEMA_21057024-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-23-aout-2016">La réserve opérationnelle, une idée en marche</a></h2>
<p>Tue Aug 23 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - L'appel lancé par François Hollande au lendemain de l'attentat de Nice a été entendu par les Français. Les inscriptions pour intégrer la réserve opérationnelle ont explosé.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.08.2016-ITEMA_21056220-0.mp3" download="La réserve opérationnelle, une idée en marche">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.08.2016-ITEMA_21056220-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-22-aout-2016">Les voies sur berge définitivement fermées à la circulation ?</a></h2>
<p>Mon Aug 22 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - La Mairie de Paris a décidé de rendre aux piétons 3,3 kilomètres de route le long de la Seine. Un choix polémique qui bouscule les habitudes de plus de 40 000 automobilistes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.08.2016-ITEMA_21055408-0.mp3" download="Les voies sur berge définitivement fermées à la circulation ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.08.2016-ITEMA_21055408-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-21-aout-2016">Le zoom de la rédaction InterClass' : les transports scolaires en milieu rural</a></h2>
<p>Sun Aug 21 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Les élèves du collège Jean Campin de la Ferté-Gaucher se sont intéressés aux transports scolaires en milieu rural.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.08.2016-ITEMA_21055010-0.mp3" download="Le zoom de la rédaction InterClass' : les transports scolaires en milieu rural">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.08.2016-ITEMA_21055010-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-20-aout-2016">Le zoom de la rédaction Interclass' : peut-on aimer qui l'on veut ?</a></h2>
<p>Sat Aug 20 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:16 - Le zoom de la rédaction - La religion peut-elle être un obstacle à l'amour entre deux personnes ? C'est la question soulevée par les élèves du collège Pierre de Geyter.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.08.2016-ITEMA_21054607-0.mp3" download="Le zoom de la rédaction Interclass' : peut-on aimer qui l'on veut ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.08.2016-ITEMA_21054607-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-19-aout-2016">Interclass' : l'amour en prison</a></h2>
<p>Fri Aug 19 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:13 - Le zoom de la rédaction - Un peu plus de 68 000 personnes sont actuellement détenues dans les 188 prisons françaises. Comment se passe la relation amoureuse pour ces hommes et ces femmes enfermés ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.08.2016-ITEMA_21053820-0.mp3" download="Interclass' : l'amour en prison">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.08.2016-ITEMA_21053820-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-18-aout-2016">Comment maintenir des services dans les campagnes ?</a></h2>
<p>Thu Aug 18 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - A Lavoncourt, un peu plus de 350 habitants au cœur de la Haute-Saône, tout est mis en oeuvre pour essayer coûte que coûte de conserver des services de proximité.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.08.2016-ITEMA_21053068-0.mp3" download="Comment maintenir des services dans les campagnes ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.08.2016-ITEMA_21053068-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-17-aout-2016">Tout plaquer pour devenir un "néo-rural"</a></h2>
<p>Wed Aug 17 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:17 - Le zoom de la rédaction - Travailler à la campagne quand on y est né, c'est parfois une contrainte. Pour d'autres, c'est un eldorado : de nombreux cadres décident de rompre avec la vie citadine...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.08.2016-ITEMA_21052355-0.mp3" download="Tout plaquer pour devenir un "néo-rural"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.08.2016-ITEMA_21052355-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-16-aout-2016">Lormes dans le Morvan a la fibre numérique</a></h2>
<p>Tue Aug 16 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:58 - Le zoom de la rédaction - Dans la série &quot;Ces territoires ruraux qui ont des idées&quot;, Lormes dans le Morvan (Nièvre) s'illustre par ses nombreux projets de développement numérique.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.08.2016-ITEMA_21051635-0.mp3" download="Lormes dans le Morvan a la fibre numérique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.08.2016-ITEMA_21051635-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-15-aout-2016">Faut-il brader nos campagnes pour les sauver ?</a></h2>
<p>Mon Aug 15 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - A Berrien, un millier d'habitants au coeur du Finistère, la mairie a décidé il y a un an de vendre 10 terrains à un euro le m2. L'objectif : attirer des couples avec enfants.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.08.2016-ITEMA_21050923-0.mp3" download="Faut-il brader nos campagnes pour les sauver ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.08.2016-ITEMA_21050923-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-14-aout-2016">InterClass' : L'amour et les réseaux sociaux</a></h2>
<p>Sun Aug 14 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Est-il possible de tomber amoureux sur les réseaux sociaux ? C'est la question que se sont posés les élèves du collège Pierre de Geyter à Saint-Denis.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.08.2016-ITEMA_21050544-0.mp3" download="InterClass' : L'amour et les réseaux sociaux">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.08.2016-ITEMA_21050544-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-13-aout-2016">InterClass' : l'art à la campagne, la Galleria Continua</a></h2>
<p>Sat Aug 13 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Les élèves du collège Jean Campin visitent La Galleria Continua à Boissy-le-Châtel</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.08.2016-ITEMA_21050163-0.mp3" download="InterClass' : l'art à la campagne, la Galleria Continua">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.08.2016-ITEMA_21050163-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-12-aout-2016">Interclass' : la grande Borne, le mythe d’une cité différente</a></h2>
<p>Fri Aug 12 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:55 - Le zoom de la rédaction - Les élèves du Collège Jean Vilar ont presque tous ont grandi à la Grande Borne et ils ont voulu savoir ce qui faisait l’identité de leur cité, construite sans grandes tours</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.08.2016-ITEMA_21049451-0.mp3" download="Interclass' : la grande Borne, le mythe d’une cité différente">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.08.2016-ITEMA_21049451-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-11-aout-2016">A la découverte de nos organes : les yeux et la rétine artificielle</a></h2>
<p>Thu Aug 11 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Zooms cette semaine sur quelques-uns des organes essentiels à notre vie et sur les dernières découvertes qui permettent de mieux les comprendre et les soigner.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.08.2016-ITEMA_21048721-0.mp3" download="A la découverte de nos organes : les yeux et la rétine artificielle">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.08.2016-ITEMA_21048721-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-10-aout-2016">A la découverte de nos organes : comment réparer un cœur malade</a></h2>
<p>Wed Aug 10 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:18 - Le zoom de la rédaction - Quand le cœur fonctionne mal, c'est l'insuffisance cardiaque. Elle touche 1 à 2% de la population et tue 22.000 personnes chaque année en France. Quelles sont les solutions ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.08.2016-ITEMA_21048015-0.mp3" download="A la découverte de nos organes : comment réparer un cœur malade">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.08.2016-ITEMA_21048015-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-09-aout-2016">A la découverte de nos organes : le cerveau et ses tumeurs</a></h2>
<p>Tue Aug 09 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:10 - Le zoom de la rédaction - Les tumeurs sont heureusement assez rares, mais pour la plupart d'entre elles le diagnostic reste sombre, même si la science progresse et les solutions thérapeutiques s'étoffent</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.08.2016-ITEMA_21047298-0.mp3" download="A la découverte de nos organes : le cerveau et ses tumeurs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.08.2016-ITEMA_21047298-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-08-aout-2016">A la découverte de nos organes : l'intestin</a></h2>
<p>Mon Aug 08 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:14 - Le zoom de la rédaction - Série sur quelques-uns de nos organes et les dernières découvertes qui permettent de mieux les comprendre : l'intestin, organe mal aimé qui connait un retour de flamme.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.08.2016-ITEMA_21046587-0.mp3" download="A la découverte de nos organes : l'intestin">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.08.2016-ITEMA_21046587-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-07-aout-2016">InterClass' : Les talents du 19ème arrondissement de Paris</a></h2>
<p>Sun Aug 07 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:12 - Le zoom de la rédaction - Est-il facile de réussir quand on vient du 19ème arrondissement? C'est la question que les élèves du collège George Rouault se sont posée.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.08.2016-ITEMA_21046208-0.mp3" download="InterClass' : Les talents du 19ème arrondissement de Paris">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.08.2016-ITEMA_21046208-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-06-aout-2016">Zoom InterClass' : "Du maïs à la cité"</a></h2>
<p>Sat Aug 06 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:34 - Le zoom de la rédaction - Comment s'est construite la cité de la Grande Borne à Grigny ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.08.2016-ITEMA_21045820-0.mp3" download="Zoom InterClass' : "Du maïs à la cité"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.08.2016-ITEMA_21045820-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-05-aout-2016">InterClass' : à Grigny, nos origines sont notre richesse</a></h2>
<p>Fri Aug 05 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:35 - Le zoom de la rédaction - Reportage à Grigny, où les habitants ont des origines diverses, et réussissent à en faire une force.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.08.2016-ITEMA_21045116-0.mp3" download="InterClass' : à Grigny, nos origines sont notre richesse">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.08.2016-ITEMA_21045116-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-04-aout-2016">Aux JO de Rio, Stéphanie Tirode défend les ‘valeurs simples’ de l’équipe de France de tir</a></h2>
<p>Thu Aug 04 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Dernier portrait de la série consacrée aux athlètes discrets mais valeureux qui défendent la France aux JO de Rio : Stéphanie Tirode, membre de l'équipe de France de tir.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.08.2016-ITEMA_21044380-0.mp3" download="Aux JO de Rio, Stéphanie Tirode défend les ‘valeurs simples’ de l’équipe de France de tir">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.08.2016-ITEMA_21044380-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-03-aout-2016">Parmi les challengers des JO de Rio : Emmanuel Lebesson, n°2 du tennis de table français</a></h2>
<p>Wed Aug 03 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Parmi les 396 athlètes tricolores en compétition aux JO de Rio : Emmanuel Lebesson, 28 ans, numéro deux français du tennis de table, surnommé le &quot;Lucky Luke de la petite balle&quot;.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.08.2016-ITEMA_21043670-0.mp3" download="Parmi les challengers des JO de Rio : Emmanuel Lebesson, n°2 du tennis de table français">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.08.2016-ITEMA_21043670-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-02-aout-2016">JO, ils sont peu médiatisés, mais "médaillables" : la boxeuse Sarah Ourahmoune</a></h2>
<p>Tue Aug 02 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:11 - Le zoom de la rédaction - Suite de la série qui nous fait découvrir les jeunes challengers sélectionnés pour les JO Rio. Baptême du feu pour la boxeuse Sarah Ourahmoune. Portrait par Géraldine Hallot.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.08.2016-ITEMA_21042957-0.mp3" download="JO, ils sont peu médiatisés, mais "médaillables" : la boxeuse Sarah Ourahmoune">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.08.2016-ITEMA_21042957-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-01-aout-2016">Les athlètes français présents à Rio pour les JO : Jean-Charles Valladont</a></h2>
<p>Mon Aug 01 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - A Rio, il y aura les stars comme Teddy Riner ou Tony Parker, et les quasi-anonymes, comme le tireur à l'arc Jean-Charles Valladont.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.08.2016-ITEMA_21042246-0.mp3" download="Les athlètes français présents à Rio pour les JO : Jean-Charles Valladont">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.08.2016-ITEMA_21042246-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-31-juillet-2016">InterClass': les femmes et la société à Mantes-la-Jolie</a></h2>
<p>Sun Jul 31 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:40 - Le zoom de la rédaction - Quelle est la place des femmes en politique?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.07.2016-ITEMA_21041871-0.mp3" download="InterClass': les femmes et la société à Mantes-la-Jolie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.07.2016-ITEMA_21041871-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-30-juillet-2016">InterClass' : A la découverte de La Villette</a></h2>
<p>Sat Jul 30 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:16 - Le zoom de la rédaction - Les élèves du collège de Paris sont partis à la découverte du parc de La Villette dans le 19eme arrondissement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.07.2016-ITEMA_21041492-0.mp3" download="InterClass' : A la découverte de La Villette">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.07.2016-ITEMA_21041492-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-29-juillet-2016">Le zoom de la rédaction</a></h2>
<p>Fri Jul 29 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:38 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.07.2016-ITEMA_21040781-0.mp3" download="Le zoom de la rédaction">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.07.2016-ITEMA_21040781-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-28-juillet-2016">Les nouvelles formes de travail qui émergent : ces travailleurs qui dépendent de plateforme internet</a></h2>
<p>Thu Jul 28 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:44 - Le zoom de la rédaction - C'est le cas d'Uber, cette application qui offre un service de VTC et qui fait travailler aujourd'hui des milliers de chauffeurs, mais sans les salarier.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.07.2016-ITEMA_21040075-0.mp3" download="Les nouvelles formes de travail qui émergent : ces travailleurs qui dépendent de plateforme internet">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.07.2016-ITEMA_21040075-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-27-juillet-2016">Les nouvelles formes de travail qui émergent : le coworking</a></h2>
<p>Wed Jul 27 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:54 - Le zoom de la rédaction - Les espaces de coworking, espaces de travail partagés ou chacun vient travailler à la carte, fleurissent en France : 900 dans les cinq dernières années.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.07.2016-ITEMA_21039355-0.mp3" download="Les nouvelles formes de travail qui émergent : le coworking">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.07.2016-ITEMA_21039355-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-26-juillet-2016">Les nouvelles formes de travail qui émergent : l’entreprise sans mails</a></h2>
<p>Tue Jul 26 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:34 - Le zoom de la rédaction - Assez de ces dizaines de mails qui polluent votre quotidien au boulot ? De grandes sociétés proposent à leurs salariés de se déconnecter, quelques heures ou totalement</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.07.2016-ITEMA_21038642-0.mp3" download="Les nouvelles formes de travail qui émergent : l’entreprise sans mails">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.07.2016-ITEMA_21038642-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-25-juillet-2016">Les nouvelles formes de travail qui émergent : le télétravail</a></h2>
<p>Mon Jul 25 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:31 - Le zoom de la rédaction - Travailler de chez soi, un concept qui a de plus en plus à la cote. Près des deux tiers des salariés y sont favorables, mais seuls 16% y ont réellement accès</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.07.2016-ITEMA_21037929-0.mp3" download="Les nouvelles formes de travail qui émergent : le télétravail">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.07.2016-ITEMA_21037929-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-24-juillet-2016">InterClass' : La survie des petits commerces de la Ferté Gaucher</a></h2>
<p>Sun Jul 24 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:06 - Le zoom de la rédaction - Les élèves du collège Jean Campin ont choisi le thème de la ruralité et une question, comment les petits commerçants de la Ferté Gaucher réussissent-ils à survivre ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.07.2016-ITEMA_21037558-0.mp3" download="InterClass' : La survie des petits commerces de la Ferté Gaucher">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.07.2016-ITEMA_21037558-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-23-juillet-2016">InterClass': les femmes et la société à Mantes-la-Jolie</a></h2>
<p>Sat Jul 23 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:01 - Le zoom de la rédaction - Les filles et les garçons sont-ils égaux face aux choix d'un métier ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.07.2016-ITEMA_21037186-0.mp3" download="InterClass': les femmes et la société à Mantes-la-Jolie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.07.2016-ITEMA_21037186-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-22-juillet-2016">InterClass' : l’amour n’a pas d’âge</a></h2>
<p>Fri Jul 22 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:01 - Le zoom de la rédaction - Peut-on aimer de l’enfance à la vieillesse ? C’est sur ce thème que les élèves du collège Pierre de Geyter à Saint-Denis ont réalisé leur reportage InterClass'.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.07.2016-ITEMA_21036496-0.mp3" download="InterClass' : l’amour n’a pas d’âge">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.07.2016-ITEMA_21036496-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-21-juillet-2016">Le zoom de la rédaction</a></h2>
<p>Thu Jul 21 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:55 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.07.2016-ITEMA_21035791-0.mp3" download="Le zoom de la rédaction">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.07.2016-ITEMA_21035791-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-20-juillet-2016">La montée des populismes : la Russie</a></h2>
<p>Wed Jul 20 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:47 - Le zoom de la rédaction - En Russie, les idées extrêmes sont souvent évoquées au Parlement et même, parfois, intégrées à de nouveaux textes de loi.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.07.2016-ITEMA_21035075-0.mp3" download="La montée des populismes : la Russie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.07.2016-ITEMA_21035075-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-19-juillet-2016">La montée des populismes : l'Italie</a></h2>
<p>Tue Jul 19 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:54 - Le zoom de la rédaction - Suite de notre série sur le Populisme en Europe. Direction l’Italie avec un focus sur le Mouvement 5 Etoiles qui a remporté, il y a un mois tout juste, les mairies de Rome et Turin</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.07.2016-ITEMA_21034370-0.mp3" download="La montée des populismes : l'Italie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.07.2016-ITEMA_21034370-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-18-juillet-2016">La montée des populismes : l'Allemagne</a></h2>
<p>Mon Jul 18 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:37 - Le zoom de la rédaction - En Allemagne, les populistes de l’AfD sont apparus dans le paysage politique à la faveur de la crise des réfugiés. Le jeune parti d’extrême-droite pèse 10 à 15%</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.07.2016-ITEMA_21033693-0.mp3" download="La montée des populismes : l'Allemagne">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.07.2016-ITEMA_21033693-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-17-juillet-2016">Zoom Interclass : Le circuit de la Ferté-Gaucher</a></h2>
<p>Sun Jul 17 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:20 - Le zoom de la rédaction - Un petit groupe d'élèves du collège Jean Campin nous présente le circuit de la Ferté-Gaucher.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.07.2016-ITEMA_21033337-0.mp3" download="Zoom Interclass : Le circuit de la Ferté-Gaucher">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.07.2016-ITEMA_21033337-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-16-juillet-2016">Zoom Interclass: quelle accessibilité pour les fauteuils roulants dans le 19ème arrondissement de Paris ?</a></h2>
<p>Sat Jul 16 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:20 - Le zoom de la rédaction - Les élèves de 4ème du collège Georges Rouault à Paris mènent l'enquête dans le 19ème arrondissement: quels sont les endroits accessibles aux personnes à mobilité réduite?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.07.2016-ITEMA_21032980-0.mp3" download="Zoom Interclass: quelle accessibilité pour les fauteuils roulants dans le 19ème arrondissement de Paris ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.07.2016-ITEMA_21032980-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-14-juillet-2016">Le succés du camping</a></h2>
<p>Thu Jul 14 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - Les campings représentent en France la moitié des réservations saisonnières. Ce secteur ne connait pas la crise, notamment parce qu'il a su évoluer.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.07.2016-ITEMA_21031663-0.mp3" download="Le succés du camping">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.07.2016-ITEMA_21031663-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-13-juillet-2016">Quand la nature inspire les ingénieurs</a></h2>
<p>Wed Jul 13 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:11 - Le zoom de la rédaction - Comment s'inspirer de la nature pour innover tout en la respectant ? C'est le biomimétisme.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.07.2016-ITEMA_21030998-0.mp3" download="Quand la nature inspire les ingénieurs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.07.2016-ITEMA_21030998-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-12-juillet-2016">Des détenus s'évadent un peu grâce aux mots</a></h2>
<p>Tue Jul 12 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:49 - Le zoom de la rédaction - Pendant plusieurs mois, parrainés par des écrivains et journalistes, des détenus ont participé à des ateliers d'écriture pour un concours. Reportage à la prison de Valenciennes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.07.2016-ITEMA_21030313-0.mp3" download="Des détenus s'évadent un peu grâce aux mots">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.07.2016-ITEMA_21030313-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-11-juillet-2016">Le zoom de la rédaction</a></h2>
<p>Mon Jul 11 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.07.2016-ITEMA_21029696-0.mp3" download="Le zoom de la rédaction">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.07.2016-ITEMA_21029696-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-08-juillet-2016">Digital detox, des vacances pour éteindre notre vie électronique</a></h2>
<p>Fri Jul 08 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - C'est une formule très en vogue cette année pour les vacances : les séjours &quot;digital detox&quot;. Comme un écho au besoin de chacun de tout couper de temps en temps...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.07.2016-ITEMA_21028279-0.mp3" download="Digital detox, des vacances pour éteindre notre vie électronique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.07.2016-ITEMA_21028279-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-07-juillet-2016">Marseille, ville de foot par excellence</a></h2>
<p>Thu Jul 07 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:29 - Le zoom de la rédaction - C'est ici que va se jouer le match entre la France et l'Allemagne ce jeudi soir. Une ville idéale pour ce match que tout le monde attend.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.07.2016-ITEMA_21027528-0.mp3" download="Marseille, ville de foot par excellence">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.07.2016-ITEMA_21027528-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-06-juillet-2016">La démarche Macron</a></h2>
<p>Wed Jul 06 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction - Alors que Manuel Valls est empêtré dans les querelles à gauche sur la loi Travail, son ministre de l’Économie, lui, trace son chemin…</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.07.2016-ITEMA_21026897-0.mp3" download="La démarche Macron">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.07.2016-ITEMA_21026897-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-05-juillet-2016">Le zoom de la rédaction : La ville de Paris veut mettre du vert à tous les étages</a></h2>
<p>Tue Jul 05 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:15 - Le zoom de la rédaction - Paris a modifié son plan local d'urbanisme hier. Parmi ses objectifs : végétaliser la capitale.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.07.2016-ITEMA_21026239-0.mp3" download="Le zoom de la rédaction : La ville de Paris veut mettre du vert à tous les étages">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.07.2016-ITEMA_21026239-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-04-juillet-2016">Bac, des copies numérisées et corrigées sur écran</a></h2>
<p>Mon Jul 04 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Des copies corrigées sur écran, on y vient tout doucement. Les lycées français à l'étranger sont passés à la correction du bac 100% numérique.Un dispositif à généraliser ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.07.2016-ITEMA_21025605-0.mp3" download="Bac, des copies numérisées et corrigées sur écran">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.07.2016-ITEMA_21025605-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-01-juillet-2016">Affaire Kerviel/Société Générale : l’enquête fiscale enterrée</a></h2>
<p>Fri Jul 01 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Dès mai 2008, un document interne au parquet demandait d’enquêter sur la ristourne fiscale accordée par Bercy à la Société Générale.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.07.2016-ITEMA_21023669-0.mp3" download="Affaire Kerviel/Société Générale : l’enquête fiscale enterrée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.07.2016-ITEMA_21023669-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-30-juin-2016">L'Islande, un pays complètement foot</a></h2>
<p>Thu Jun 30 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Pour la première fois de son histoire, l’Islande jouera dimanche soir en quart de finale de l’Euro face à l’équipe de France. Un évènement pour cette île de 330 000 habitants.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.06.2016-ITEMA_21022731-0.mp3" download="L'Islande, un pays complètement foot">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.06.2016-ITEMA_21022731-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-28-juin-2016">Tout, sauf les abattoirs</a></h2>
<p>Tue Jun 28 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - Alors qu'à l'Assemblée Nationale, une commission d'enquête travaille sur la question, certains éleveurs ont fait leur choix et préfèrent abattre eux-mêmes leurs bêtes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.06.2016-ITEMA_21020909-0.mp3" download="Tout, sauf les abattoirs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.06.2016-ITEMA_21020909-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-27-juin-2016">La Blockchain, futur remplaçant des banques ?</a></h2>
<p>Mon Jun 27 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:44 - Le zoom de la rédaction - Son nom est plutôt barbare, mais cette nouvelle technologie créée à l'origine pour gérer le bitcoin, la monnaie virtuelle, pourrait demain révolutionner nos achats...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.06.2016-ITEMA_21019959-0.mp3" download="La Blockchain, futur remplaçant des banques ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.06.2016-ITEMA_21019959-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-24-juin-2016">Euro : les Français sont-ils enfin derrière les Bleus ?</a></h2>
<p>Fri Jun 24 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:27 - Le zoom de la rédaction - A deux jours de France-Irlande, Géraldine Hallot et Philippe Randé sont allés prendre la température chez les supporters de l’Équipe de France, mais aussi chez les autres.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.06.2016-ITEMA_21018059-0.mp3" download="Euro : les Français sont-ils enfin derrière les Bleus ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.06.2016-ITEMA_21018059-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-23-juin-2016">Brexit, le Pays de Galles suspendu au résultat du référendum</a></h2>
<p>Thu Jun 23 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Au pays de Galles, on vote pour ou contre le Brexit. Dans la vallée industrielle de Port Talbot, le référendum sur le maintien du pays dans l’UE est un enjeu colossal.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.06.2016-ITEMA_21017108-0.mp3" download="Brexit, le Pays de Galles suspendu au résultat du référendum">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.06.2016-ITEMA_21017108-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-22-juin-2016">L'extrême-droite au coeur de la campagne du Brexit</a></h2>
<p>Wed Jun 22 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:57 - Le zoom de la rédaction - C'est demain que la Grande-Bretagne vote pour ou contre son maintien dans l'Union européenne. Reportage à Queensbury, dans l'ouest du Yorkshire, où le parti Ukip fait carton plein.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.06.2016-ITEMA_21016131-0.mp3" download="L'extrême-droite au coeur de la campagne du Brexit">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.06.2016-ITEMA_21016131-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-21-juin-2016">Le zoom de la rédaction : la musique moteur de l'insertion</a></h2>
<p>Tue Jun 21 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Comment redonner confiance à des jeunes issus de quartiers défavorisés grâce à la pratique d’un instrument ? Focus sur ces projets d’inclusion sociale grâce à la musique.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.06.2016-ITEMA_21015096-0.mp3" download="Le zoom de la rédaction : la musique moteur de l'insertion">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.06.2016-ITEMA_21015096-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-20-juin-2016">La bataille de Falloujah</a></h2>
<p>Mon Jun 20 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:45 - Le zoom de la rédaction - Notre reporter Omar Ouahmane raconte le déroulement de cette bataille qui pourrait être l'un des revers les plus importants de l'organisation État islamique.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.06.2016-ITEMA_21014011-0.mp3" download="La bataille de Falloujah">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.06.2016-ITEMA_21014011-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-17-juin-2016">Comment Airbnb s'empare du centre de Paris</a></h2>
<p>Fri Jun 17 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - Paris est la ville au monde où Airbnb propose le plus d’appartements à la location touristique. Plus de 20 000 d'entre eux sont non déclarés et donc illégaux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.06.2016-ITEMA_21012098-0.mp3" download="Comment Airbnb s'empare du centre de Paris">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.06.2016-ITEMA_21012098-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-16-juin-2016">Un Brexit pour mieux contrôler les frontières ?</a></h2>
<p>Thu Jun 16 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - C'est ce que réclament les partisans britanniques de la sortie de l'Union européenne à sept jours du référendum sur le sujet. Franck Mathevon a enquêté à Boston, au centre du pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.06.2016-ITEMA_21011159-0.mp3" download="Un Brexit pour mieux contrôler les frontières ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.06.2016-ITEMA_21011159-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-15-juin-2016">Marseille : après le chaos, la fête ?</a></h2>
<p>Wed Jun 15 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - La ville attend les Bleus ce mercredi soir pour vivre une grande rencontre et oublier les les violences du week-end dernier entre russes et anglais.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.06.2016-ITEMA_21010199-0.mp3" download="Marseille : après le chaos, la fête ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.06.2016-ITEMA_21010199-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-14-juin-2016">En France, la communauté homosexuelle sur ses gardes</a></h2>
<p>Tue Jun 14 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Après la fusillade qui a fait 49 morts dans un club gay d'Orlando aux Etats-Unis, les hommages aux victimes se multiplient.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.06.2016-ITEMA_21009280-0.mp3" download="En France, la communauté homosexuelle sur ses gardes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.06.2016-ITEMA_21009280-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emissions/le-zoom-de-la-redaction/le-zoom-de-la-redaction-13-juin-2016">Le zoom de la rédaction</a></h2>
<p>Mon Jun 13 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.06.2016-ITEMA_21008360-0.mp3" download="Le zoom de la rédaction">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.06.2016-ITEMA_21008360-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-algues-vertes-des-verites-qui-derangent">Algues vertes en Bretagne : des vérités qui dérangent</a></h2>
<p>Fri Jun 10 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:09 - Le zoom de la rédaction - Les algues vertes, une pollution ultra toxique qui infeste les plages de Bretagne depuis 1/2 siècle. Résultat de décennies d’aveuglement des pouvoirs publics face à un phénomène opposant tenants de l’agriculture intensive et défenseurs de l’environnement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.06.2016-ITEMA_21006481-0.mp3" download="Algues vertes en Bretagne : des vérités qui dérangent">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.06.2016-ITEMA_21006481-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-nice-le-stade-aux-normes-euro-2016">À Nice, le stade aux normes "Euro 2016"</a></h2>
<p>Thu Jun 09 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Visite des coulisses de l’Allianz Riviera, à la veille de l'ouverture de l'Euro de football en France. Le stade niçois accueillera quatre matches durant la compétition.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.06.2016-ITEMA_21005563-0.mp3" download="À Nice, le stade aux normes "Euro 2016"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.06.2016-ITEMA_21005563-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-affaire-denis-baupin-la-parole-se-libere">Affaire Denis Baupin : la parole se libère</a></h2>
<p>Wed Jun 08 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Un mois après la publication des témoignages de femmes dénonçant des faits pouvant relever d’agression ou de harcèlement sexuels de la part du député écologiste Denis Baupin, par France Inter et Mediapart, les témoignages se multiplient.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.06.2016-ITEMA_21004592-0.mp3" download="Affaire Denis Baupin : la parole se libère">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.06.2016-ITEMA_21004592-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-retour-a-san-bernardino-six-mois-apres-la-tuerie-qui-a-marque-les-p">Retour à San Bernardino, six mois après la tuerie qui a marqué les primaires américaines</a></h2>
<p>Tue Jun 07 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Le 2 décembre 2015, un acte terroriste marquait la campagne des primaires américaines : 14 personnes tuées par un couple musulman radicalisé. A la suite de cette attaque, Donald Trump a proposé d’interdire l’accès des USA à tous les musulmans.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.06.2016-ITEMA_21003682-0.mp3" download="Retour à San Bernardino, six mois après la tuerie qui a marqué les primaires américaines">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.06.2016-ITEMA_21003682-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-foot-la-fff-veut-nous-faire-aimer-les-bleus">Foot : la FFF veut nous faire aimer les Bleus</a></h2>
<p>Mon Jun 06 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:35 - Le zoom de la rédaction - A quelques jours du début de l'Euro, zoom ce matin sur l'équipe de France, où plutôt sur la réinvention de la communication de la Fédération française de football autour de l'équipe. Avec un objectif : que la France soit fière de ses 23 bleus.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.06.2016-ITEMA_21002758-0.mp3" download="Foot : la FFF veut nous faire aimer les Bleus">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.06.2016-ITEMA_21002758-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-foot-argent-sale-et-paradis-fiscaux">Foot, argent sale et paradis fiscaux</a></h2>
<p>Fri Jun 03 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:05 - Le zoom de la rédaction - Enquête sur les coulisses du &quot;foot business&quot; : le montant des transferts de joueurs a explosé, 3 milliards 600 millions € en 2014. 30 % de l’argent des transferts irait dans d’autres poches que celles des joueurs : agents, conseillers, fonds de pension.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.06.2016-ITEMA_21000840-0.mp3" download="Foot, argent sale et paradis fiscaux">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.06.2016-ITEMA_21000840-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-deserts-medicaux-assoiffes-de-docteurs">Les déserts médicaux assoiffés de docteurs</a></h2>
<p>Thu Jun 02 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Le conseil national de l’ordre des médecins a dévoilé son atlas national démographique, aujourd’hui. Il pointe les territoires désertés par les jeunes docteurs peu désireux de rejoindre certaines régions de France.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.06.2016-ITEMA_20999924-0.mp3" download="Les déserts médicaux assoiffés de docteurs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.06.2016-ITEMA_20999924-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quelle-prise-en-charge-pour-les-pedophiles">Quelle prise en charge pour les pédophiles ?</a></h2>
<p>Wed Jun 01 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - La parole des victimes de pédophilie se libère de plus en plus et la population prend de plus en plus conscience de l'étendue des actes de pédophilie. Mais la prise en charge des agresseurs n’est pas toujours adaptée.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.06.2016-ITEMA_20999002-0.mp3" download="Quelle prise en charge pour les pédophiles ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.06.2016-ITEMA_20999002-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-y-aura-t-il-encore-du-bordeaux-a-la-fin-de-ce-siecle">Y aura t-il encore du Bordeaux à la fin de ce siècle ?</a></h2>
<p>Tue May 31 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:49 - Le zoom de la rédaction - Alors que François Hollande inaugure la cité du vin aujourd'hui, le zoom de la rédaction pose ce matin cette question: y aura t-il encore du Bordeaux à la fin de ce siècle ? Quelles conséquences a le réchauffement climatique sur la vigne ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.05.2016-ITEMA_20998100-0.mp3" download="Y aura t-il encore du Bordeaux à la fin de ce siècle ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.05.2016-ITEMA_20998100-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 30.05.2016</a></h2>
<p>Mon May 30 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:51 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.05.2016-ITEMA_20997178-0.mp3" download="Reporters 30.05.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.05.2016-ITEMA_20997178-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-omerta-sur-le-loup">Omerta sur le loup</a></h2>
<p>Fri May 27 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - Ségolène Royal vient de demande à l’Europe d’entamer une procédure de déclassement du Loup pour abaisser son niveau de protection. Une démarche qui prend acte de la détresse des éleveurs et tranche avec la politique passée de protection absolue.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.05.2016-ITEMA_20995302-0.mp3" download="Omerta sur le loup">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.05.2016-ITEMA_20995302-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-foret-de-verdun-memoire-de-la-grande-guerre">La forêt de Verdun, mémoire de la Grande Guerre</a></h2>
<p>Thu May 26 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - Angela Merkel et François Hollande vont commémorer ce dimanche le 100e anniversaire de l'effroyable bataille de Verdun. Reportage en Meuse, dans le &quot;creuset de l'enfer&quot;, ce champ de bataille de la Grande Guerre aujourd’hui recouvert par la forêt.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.05.2016-ITEMA_20994389-0.mp3" download="La forêt de Verdun, mémoire de la Grande Guerre">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.05.2016-ITEMA_20994389-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 25.05.2016</a></h2>
<p>Wed May 25 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:51 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.05.2016-ITEMA_20993481-0.mp3" download="Reporters 25.05.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.05.2016-ITEMA_20993481-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 24.05.2016</a></h2>
<p>Tue May 24 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.05.2016-ITEMA_20992580-0.mp3" download="Reporters 24.05.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.05.2016-ITEMA_20992580-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-greenpeace-denonce-les-dcp-une-redoutable-methode-de-peche">Greenpeace dénonce les DCP, une redoutable méthode de pêche</a></h2>
<p>Mon May 23 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction - L'organisation écologiste Greenpeace mène en ce moment une campagne dans l'Océan indien contre les Dispositifs de concentration de poisson (DCP). L'ONG dénonce une méthode de pêche particulièrement nuisible pour l'environnement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.05.2016-ITEMA_20991666-0.mp3" download="Greenpeace dénonce les DCP, une redoutable méthode de pêche">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.05.2016-ITEMA_20991666-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-une-ancienne-base-atomique-transformee-en-ferme-aquacole-geante">Une ancienne base atomique transformée en ferme aquacole géante</a></h2>
<p>Fri May 20 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Une entreprise chinoise projette de transformer l'atoll de Hao en Polynésie française - ancienne base militaire durant les essais nucléaires - en ferme usine géante d’élevage de poissons tropicaux destinés à nos assiettes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.05.2016-ITEMA_20989786-0.mp3" download="Une ancienne base atomique transformée en ferme aquacole géante">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.05.2016-ITEMA_20989786-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-presidentielles-en-autriche-la-tentation-de-lextreme-droite">Présidentielles en Autriche : la tentation de l'extrême-droite</a></h2>
<p>Thu May 19 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - En Autriche, le second tour du scrutin organisé le 22 mai pourrait déboucher sur une victoire du candidat du Parti de la liberté (FPÖ, extrême droite). Son candidat Norbert Hofer est arrivé largement en tête au premier tour avec 35% des suffrages.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.05.2016-ITEMA_20988860-0.mp3" download="Présidentielles en Autriche : la tentation de l'extrême-droite">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.05.2016-ITEMA_20988860-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-liberaliser-lusage-des-armes-pour-les-societes-privees-0">Libéraliser l'usage des armes pour les sociétés privées ?</a></h2>
<p>Wed May 18 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:47 - Le zoom de la rédaction - D'ici l'Euro de football dans 3 semaines, un décret permettra à la SNCF de déployer des agents de sécurité en civil et armés (plus de 3000 à terme). C'est l'une des mesures anti-terorristes pour tenter de mettre en échec certaines formes d' attaques.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.05.2016-ITEMA_20987942-0.mp3" download="Libéraliser l'usage des armes pour les sociétés privées ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.05.2016-ITEMA_20987942-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-divorce-par-consentement-mutuel-fait-debat-0">Le divorce par consentement mutuel fait débat</a></h2>
<p>Tue May 17 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Les députés ont adopté mardi dernier, le principe du divorce par consentement mutuel devant un notaire. Aujourd'hui en France, 54% des divorces, soit environ 66 000, se font avec l’accord des deux époux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.05.2016-ITEMA_20987037-0.mp3" download="Le divorce par consentement mutuel fait débat">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.05.2016-ITEMA_20987037-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-une-adolescente-offre-des-vacances-a-des-refugies-0">Une adolescente offre des vacances à des réfugiés</a></h2>
<p>Mon May 16 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Pia, une jeune franc-comtoise de 14 ans, s'est démenée pour convaincre ses proches d'accueillir des réfugiés pour quelques jours de vacances. Ils ont fini par se laisser embarquer dans l'aventure, séduits par la détermination de l'adolescente.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.05.2016-ITEMA_20986118-0.mp3" download="Une adolescente offre des vacances à des réfugiés">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.05.2016-ITEMA_20986118-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 13.05.2016</a></h2>
<p>Fri May 13 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.05.2016-ITEMA_20984230-0.mp3" download="Reporters 13.05.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.05.2016-ITEMA_20984230-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-saint-etienne-il-y-a-40-ans-la-defaite-et-le-declin">Saint-Etienne : il y a 40 ans, la défaite et le déclin</a></h2>
<p>Thu May 12 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - Il y a 40 ans, Saint-Étienne et tous les supporters des Verts retenaient leur souffle, pour la finale de la Coupe des clubs champions de foot! La défaite s'est accompagnée du déclin économique de la ville.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.05.2016-ITEMA_20983301-0.mp3" download="Saint-Etienne : il y a 40 ans, la défaite et le déclin">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.05.2016-ITEMA_20983301-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-etre-migrant-et-tenter-de-rester-etudiant">Être migrant et tenter de rester étudiant</a></h2>
<p>Wed May 11 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - Où en est-on de l'accueil des étudiants migrants dans les universités et grandes écoles ? Une réunion se tenait mardi au ministère de l'Enseignement supérieur pour faire le point sur les initiatives et les difficultés rencontrées.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.05.2016-ITEMA_20982382-0.mp3" download="Être migrant et tenter de rester étudiant">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.05.2016-ITEMA_20982382-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 10.05.2016</a></h2>
<p>Tue May 10 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:43 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.05.2016-ITEMA_20981480-0.mp3" download="Reporters 10.05.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.05.2016-ITEMA_20981480-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-des-femmes-denoncent-des-faits-de-harcelement-et-dagression-sexuell">Des femmes dénoncent des faits de harcèlement et d'agression sexuelle de la part du vice-président écologiste de l'Assemblée</a></h2>
<p>Mon May 09 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:10 - Le zoom de la rédaction - Pour la première fois, quatre femmes témoignent à visage découvert, et au micro de France Inter, pour dénoncer des faits relevant d’agression sexuelle ou de harcèlement sexuel mettant en cause Denis Baupin, vice-président de l'Assemblée et député ex-EELV</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.05.2016-ITEMA_20980560-0.mp3" download="Des femmes dénoncent des faits de harcèlement et d'agression sexuelle de la part du vice-président écologiste de l'Assemblée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.05.2016-ITEMA_20980560-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-france-le-mirage-saoudien">France : le mirage saoudien</a></h2>
<p>Fri May 06 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:56 - Le zoom de la rédaction - La France a-t-elle fait le bon choix en se rapprochant de l’Arabie saoudite ? Après la polémique suscitée par la remise de la Légion d’honneur au prince héritier Mohamed Ben Nayef Secrets d’info examine la réalité des liens commerciaux entre les 2 pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.05.2016-ITEMA_20978681-0.mp3" download="France : le mirage saoudien">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.05.2016-ITEMA_20978681-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-boko-haram-la-guerre-oubliee">Boko Haram : la guerre oubliée</a></h2>
<p>Thu May 05 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:38 - Le zoom de la rédaction - La guerre de Boko Haram au Tchad fait peu parler d’elle. Pourtant, depuis trois ans elle a entraîné le déplacement de deux millions de personnes et des milliers de morts. Valérie Crova s’est rendue sur les bords du Lac Tchad le jour du marché.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.05.2016-ITEMA_20977764-0.mp3" download="Boko Haram : la guerre oubliée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.05.2016-ITEMA_20977764-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-obama-a-flint-ville-contaminee">Obama à Flint, ville contaminée</a></h2>
<p>Wed May 04 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:59 - Le zoom de la rédaction - Barack Obama se rend à Flint (Michigan). Cette ville sinistrée a été marquée par un scandale sanitaire. De nombreux habitants sont intoxiqués. Les services de l’État du Michigan ont puisé l'eau de consommation dans une rivière contaminée au plomb.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.05.2016-ITEMA_20976861-0.mp3" download="Obama à Flint, ville contaminée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.05.2016-ITEMA_20976861-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-loi-travail-un-texte-conteste-aussi-par-les-patrons">Loi Travail : un texte contesté (aussi) par les patrons</a></h2>
<p>Tue May 03 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:08 - Le zoom de la rédaction - Le projet de loi Travail est examiné à partir de ce mardi à l'Assemblée nationale. Depuis plusieurs semaines, le texte est contesté dans la rue par les syndicats et les salariés. Mais certains patrons remettent aussi en cause cette loi.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.05.2016-ITEMA_20975941-0.mp3" download="Loi Travail : un texte contesté (aussi) par les patrons">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.05.2016-ITEMA_20975941-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-lindustrie-du-plastique-sadapte-a-la-fin-programmee-du-sac-">Comment l'industrie du plastique s'adapte à la fin programmée du sac de caisse ?</a></h2>
<p>Mon May 02 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction - Au 1er janvier, il n’y aura plus de sacs plastiques de fine épaisseur dans les commerces. C’est le résultat d’une disposition de la loi de transition énergétique votée il y a un peu moins d’un an. Toute une industrie doit s'adapter.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.05.2016-ITEMA_20975020-0.mp3" download="Comment l'industrie du plastique s'adapte à la fin programmée du sac de caisse ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.05.2016-ITEMA_20975020-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-trappes-bastion-du-djihadisme-francais">Trappes, bastion du djihadisme français</a></h2>
<p>Fri Apr 29 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - C’est une ville frappée de plein fouet par le djihadisme. Trappes, 30 000 habitants, à 25 kilomètres de Paris, et entre 60 et 80 habitants ayant cherché à rejoindre Daech en Syrie. Pourquoi la tentation du djihad y est-elle si forte ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.04.2016-ITEMA_20973119-0.mp3" download="Trappes, bastion du djihadisme français">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.04.2016-ITEMA_20973119-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-educateurs-de-rue-profession-en-danger">Éducateurs de rue, profession en danger ?</a></h2>
<p>Thu Apr 28 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction - Quel avenir pour les éducateurs de rue ? La profession, très sollicitée par les pouvoirs publics depuis les attentats, voit pourtant ses financements baisser dans de nombreux territoires.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.04.2016-ITEMA_20972200-0.mp3" download="Éducateurs de rue, profession en danger ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.04.2016-ITEMA_20972200-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-nobel-de-la-paix-aux-habitants-de-lesbos">Le Nobel de la paix aux habitants de Lesbos ?</a></h2>
<p>Wed Apr 27 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - Les habitants de l'île de Lesbos méritent-ils le prix Nobel de la Paix pour leur accueil des migrants? C'est ce que pensent près de 700 000 personnes qui ont signé une pétition en faveur de cette proposition lancée par des universitaires.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.04.2016-ITEMA_20971301-0.mp3" download="Le Nobel de la paix aux habitants de Lesbos ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.04.2016-ITEMA_20971301-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 26.04.2016</a></h2>
<p>Tue Apr 26 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.04.2016-ITEMA_20970400-0.mp3" download="Reporters 26.04.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.04.2016-ITEMA_20970400-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 25.04.2016</a></h2>
<p>Mon Apr 25 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:41 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.04.2016-ITEMA_20969480-0.mp3" download="Reporters 25.04.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.04.2016-ITEMA_20969480-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-pedophilie-comment-mgr-barbarin-a-tente-detouffer-laffaire">Pédophilie : Comment Mgr Barbarin a tenté d'étouffer l'affaire</a></h2>
<p>Fri Apr 22 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:45 - Le zoom de la rédaction - L’église de France est confrontée à plusieurs scandales de pédophilie, l’affaire la plus emblématique est celle du cardinal Barbarin, qui a clairement cherché à étouffer l'affaire.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.04.2016-ITEMA_20967562-0.mp3" download="Pédophilie : Comment Mgr Barbarin a tenté d'étouffer l'affaire">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.04.2016-ITEMA_20967562-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-desarroi-des-militants-socialistes">Le désarroi des militants socialistes</a></h2>
<p>Thu Apr 21 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Reportage en Lorraine près de Florange, bastion historique de la gauche, où la section PS locale s’est réunie, alors que les militants désertent peu à peu les rangs.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.04.2016-ITEMA_20966644-0.mp3" download="Le désarroi des militants socialistes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.04.2016-ITEMA_20966644-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction">Reporters 20.04.2016</a></h2>
<p>Wed Apr 20 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.04.2016-ITEMA_20965741-0.mp3" download="Reporters 20.04.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.04.2016-ITEMA_20965741-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-presidentielle-us-la-bataille-de-new-york">Présidentielle US : La bataille de New York</a></h2>
<p>Tue Apr 19 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Les New New-yorkais se rendent aux urnes ce mardi, pour les primaires du parti républicain et du parti démocrate. Plus que jamais, New York est le théâtre d’une féroce bataille, comme notre correspondante Charlotte Alix a pu le constater.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.04.2016-ITEMA_20964820-0.mp3" download="Présidentielle US : La bataille de New York">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.04.2016-ITEMA_20964820-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-quoi-servent-les-syndicats">A quoi servent les syndicats ?</a></h2>
<p>Mon Apr 18 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - On les dit divisés et affaiblis. Alors que s'ouvre ce lundi le 51e congrès de la CGT à Marseille, zoom ce matin sur les syndicats de salariés.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.04.2016-ITEMA_20963840-0.mp3" download="A quoi servent les syndicats ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.04.2016-ITEMA_20963840-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-trafic-des-antiquites-du-sang-ou-le-pillage-par-daech">Le trafic des antiquités du sang ou le pillage par Daech</a></h2>
<p>Fri Apr 15 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Les antiquités du sang : c'est l'appellation donnée aux trésors archéologiques pillés principalement en Syrie et en Irak. Le symbole de ce trafic : la cité de Palmyre, mais, les sites dévastés sont très nombreux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.04.2016-ITEMA_20961961-0.mp3" download="Le trafic des antiquités du sang ou le pillage par Daech">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.04.2016-ITEMA_20961961-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-profondement-divise-le-bresil-retient-son-souffle">Profondément divisé, le Brésil retient son souffle</a></h2>
<p>Thu Apr 14 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:43 - Le zoom de la rédaction - À la veille du débat au parlement sur la destitution de la présidente Dilma Rousseff, sa situation divise la société brésilienne. Accusée d'avoir manipulé les comptes publics pour favoriser sa réélection en 2014, sa position est plus que fragile.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.04.2016-ITEMA_20961048-0.mp3" download="Profondément divisé, le Brésil retient son souffle">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.04.2016-ITEMA_20961048-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-il-criait-et-tirait-en-meme-temps">"Il criait et tirait en même temps"</a></h2>
<p>Wed Apr 13 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Ce matin le Zoom de la rédaction retrace la soirée d'horreur du Bataclan, à partir des témoignages recueillis depuis le mois de décembre par ceux qui l'ont vécue.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.04.2016-ITEMA_20960121-0.mp3" download=""Il criait et tirait en même temps"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.04.2016-ITEMA_20960121-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-retour-a-palmyre">Le retour à Palmyre</a></h2>
<p>Tue Apr 12 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Palmyre, surnommée la &quot;perle du désert&quot; a été reprise fin mars par l’armée syrienne, avec l'aide de l’aviation russe. Valérie Crova, envoyée spéciale de Radio France en Syrie, a pu visiter la ville encore meurtrie par l'occupation de l'organisation EI.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.04.2016-ITEMA_20959200-0.mp3" download="Le retour à Palmyre">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.04.2016-ITEMA_20959200-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-projet-de-loi-pour-lutter-contre-la-ghettoisation">Un projet de loi pour lutter contre la « ghettoïsation »</a></h2>
<p>Mon Apr 11 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:29 - Le zoom de la rédaction - Plus d'un an après les attentats de Charlie Hebdo et de l'Hyper Casher, le projet de loi &quot;Égalité et Citoyenneté&quot; arrive cette semaine en conseil des ministres. Parmi ses objectifs : rétablir de la mixité sociale dans le logement là où elle fait défaut.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.04.2016-ITEMA_20958261-0.mp3" download="Un projet de loi pour lutter contre la « ghettoïsation »">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.04.2016-ITEMA_20958261-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quand-le-vetement-musulman-froisse-le-monde-de-la-mode">Quand le vêtement musulman froisse le monde de la mode</a></h2>
<p>Fri Apr 08 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - En France, la polémique enfle depuis que les grandes enseignes populaires ont décidé de commercialiser des vêtements islamiques. Un rayon qui, derrière une bataille sémantique et un enjeu politique, cache un réel marché en développement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.04.2016-ITEMA_20956361-0.mp3" download="Quand le vêtement musulman froisse le monde de la mode">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.04.2016-ITEMA_20956361-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quand-le-vetement-musulman-froisse-le-monde-de-la-mode">Quand le vêtement musulman froisse le monde de la mode</a></h2>
<p>Thu Apr 07 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - En France, la polémique enfle depuis que les grandes enseignes populaires ont décidé de commercialiser des vêtements islamiques. Un rayon qui, derrière une bataille sémantique et un enjeu politique, cache un réel marché en développement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.04.2016-ITEMA_20955441-0.mp3" download="Quand le vêtement musulman froisse le monde de la mode">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.04.2016-ITEMA_20955441-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-liran-souvre-au-tourisme">L'Iran s'ouvre au tourisme</a></h2>
<p>Wed Apr 06 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction - Longtemps fermé et isolé du reste du monde par les sanctions internationales, le pays s'ouvre petit à petit aux visiteurs et notamment aux touristes. Reportage sur le mont Tochal, la station de ski de Téhéran et à Ispahan, ancienne capitale perse.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.04.2016-ITEMA_20954523-0.mp3" download="L'Iran s'ouvre au tourisme">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.04.2016-ITEMA_20954523-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-temoignage-sophie-et-dominique-moulinas-parents-a-perpetuite">Témoignage | Sophie et Dominique Moulinas, parents à perpétuité</a></h2>
<p>Tue Apr 05 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:05 - Le zoom de la rédaction - C'est un témoignage exceptionnel que celui que France Inter vous propose. Celui de Sophie et Dominique Moulinas, parents de Matthieu, adolescent condamné à la réclusion criminelle à perpétuité pour le viol et l'assassinat d'Agnès Marin, qui avait 13 ans.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.04.2016-ITEMA_20953611-0.mp3" download="Témoignage | Sophie et Dominique Moulinas, parents à perpétuité">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.04.2016-ITEMA_20953611-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 04.04.2016</a></h2>
<p>Mon Apr 04 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.04.2016-ITEMA_20952682-0.mp3" download="Reporters 04.04.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.04.2016-ITEMA_20952682-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-nanomateriaux-une-revolution-sans-controle">Nanomatériaux : une révolution sans contrôle</a></h2>
<p>Fri Apr 01 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:09 - Le zoom de la rédaction - Dans les textiles, le dentifrice, le café soluble, les peintures, les pneus, les nanomatériaux sont partout. Entre 2006 et 2011, le nombre de produits contenant des nanoparticules a été multiplié par 5, soit près de 2000 sur le marché aujourd’hui.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.04.2016-ITEMA_20950784-0.mp3" download="Nanomatériaux : une révolution sans contrôle">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.04.2016-ITEMA_20950784-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-sida-prevention-en-guyane-departement-francais-le-plus-touche">Sida : prévention en Guyane, département français le plus touché</a></h2>
<p>Thu Mar 31 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - A la veille du Sidaction, reportage en Guyane, le département français le plus touché par le sida, avec 1% de sa population séropositive. Le nombre de contaminations annuelles y est neuf fois plus élevé que la moyenne nationale.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.03.2016-ITEMA_20949862-0.mp3" download="Sida : prévention en Guyane, département français le plus touché">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.03.2016-ITEMA_20949862-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-lesbos-le-hotspot-de-moria-est-devenu-un-centre-de-retention">A Lesbos, Le hotspot de Moria est devenu un centre de rétention</a></h2>
<p>Wed Mar 30 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - Dix jours après l’entrée en vigueur de l’accord de Bruxelles qui prévoit le renvoi en Turquie de tous les migrants arrivés en Grèce depuis le 20 mars, c'est toujours le flou le plus total quant à son application. Reportage à Lesbos de Géraldine Hallot</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.03.2016-ITEMA_20948941-0.mp3" download="A Lesbos, Le hotspot de Moria est devenu un centre de rétention">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.03.2016-ITEMA_20948941-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-pensions-alimentaires-aider-les-meres-isolees-lutter-contre-les-mau">Pensions alimentaires : Aider les mères isolées, lutter contre les mauvais payeurs</a></h2>
<p>Tue Mar 29 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:55 - Le zoom de la rédaction - C’est une réforme qui concerne près de 100 000 femmes. La GIPA, la Garantie des Impayés de Pension Alimentaire est généralisée à partir de vendredi avec un objectif inscrit dans la loi : réduire les inégalités entre femmes et hommes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.03.2016-ITEMA_20948000-0.mp3" download="Pensions alimentaires : Aider les mères isolées, lutter contre les mauvais payeurs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.03.2016-ITEMA_20948000-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-pretre-qui-parle-a-l-oreille-des-deputes-francais">Un prêtre qui parle à l’oreille des députés français</a></h2>
<p>Mon Mar 28 2016 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:49 - Le zoom de la rédaction - A deux pas de l’Assemblée Nationale, un prêtre pas comme les autres, un aumônier parlementaire s’entretient régulièrement avec les élus dans un pays qui a séparé l’Eglise de l’Etat il y a plus d’un siècle.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.03.2016-ITEMA_20947060-0.mp3" download="Un prêtre qui parle à l’oreille des députés français">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.03.2016-ITEMA_20947060-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-loyers-encadres-a-paris-un-sur-trois-hors-la-loi">Loyers encadrés à Paris : un sur trois hors la loi</a></h2>
<p>Fri Mar 25 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Plus d'un tiers des loyers soumis à la loi ALUR - qui encadre les loyers à Paris - est non conforme. Voté en 2014 et appliqué depuis 2015, son dispositif demeure en partie théorique car très largement détourné par les propriétaires.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.03.2016-ITEMA_20945121-0.mp3" download="Loyers encadrés à Paris : un sur trois hors la loi">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.03.2016-ITEMA_20945121-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-detresse-des-musulmans-de-belgique">La détresse des musulmans de Belgique</a></h2>
<p>Thu Mar 24 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:37 - Le zoom de la rédaction - Najim Laachraoui, l’un des kamikazes qui s’est fait exploser à l’aéroport de Bruxelles, était originaire de la commune de Schaerbeek dans le nord de la capitale belge où plus d’un tiers de la population est musulmane et traumatisée.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.03.2016-ITEMA_20944181-0.mp3" download="La détresse des musulmans de Belgique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.03.2016-ITEMA_20944181-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-en-europe-un-meme-deuil-et-des-methodes-diverses">En Europe, un même deuil et des méthodes diverses</a></h2>
<p>Wed Mar 23 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:52 - Le zoom de la rédaction - Un zoom à travers l'Europe ce matin, après les attentats de Bruxelles. Comment Londres, Berlin et Rome voient-ils le drame qui a frappé la capitale européenne et comment réagissent-elles ? Reportages avec nos correspondants sur place.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.03.2016-ITEMA_20943261-0.mp3" download="En Europe, un même deuil et des méthodes diverses">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.03.2016-ITEMA_20943261-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-jobs-act-la-loi-travail-version-italienne-a-un-an">Le "Jobs act", la loi travail version italienne, a un an</a></h2>
<p>Tue Mar 22 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - En pleine mobilisation en France sur la loi El Khomri, alors que le projet de loi est présenté en conseil des ministres jeudi 24 mars, focus ce matin sur son pendant Italien, le &quot;Jobs Act&quot;. Une réforme menée par Matteo Renzi.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.03.2016-ITEMA_20942320-0.mp3" download="Le "Jobs act", la loi travail version italienne, a un an">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.03.2016-ITEMA_20942320-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-cuba-entre-envie-et-crainte-que-ca-aille-trop-vite">Cuba : entre envie et crainte que ça aille trop vite</a></h2>
<p>Mon Mar 21 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - C’est l’un des aspects essentiels de la visite de Barack Obama à Cuba : la reprise des échanges économiques entre les deux pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.03.2016-ITEMA_20941261-0.mp3" download="Cuba : entre envie et crainte que ça aille trop vite">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.03.2016-ITEMA_20941261-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-bretigny-sur-orge-le-double-jeu-de-la-sncf">Brétigny-sur-Orge : le double jeu de la SNCF ?</a></h2>
<p>Fri Mar 18 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - La SNCF tient-elle un double discours dans l’enquête sur la catastrophe de Brétigny-sur-Orge, qui avait fait sept morts et soixante-dix blessés le 12 juillet 2013 ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.03.2016-ITEMA_20939342-0.mp3" download="Brétigny-sur-Orge : le double jeu de la SNCF ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.03.2016-ITEMA_20939342-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-vitoria-le-tourisme-accessible-a-tous">A Vitoria, le tourisme accessible à tous</a></h2>
<p>Thu Mar 17 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Vitoria au pays basque espagnol est exemplaire en matière d'accessibilité. Cette ville en pente est équipée d'ascenseurs et autres tapis roulants afin que toutes et tous, personnes âgées ou handicapées, puissent y passer leurs vacances sereinement.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.03.2016-ITEMA_20938401-0.mp3" download="A Vitoria, le tourisme accessible à tous">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.03.2016-ITEMA_20938401-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-grandes-oreilles-de-la-france-en-libye">Les "grandes oreilles" de la France en Libye</a></h2>
<p>Wed Mar 16 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Une enquête de Benoît Collombat en partenariat avec Libération, sur la complicité d’une entreprise française dans la surveillance des opposants libyens. Elle révèle de nouveaux éléments sur le caractère massif de cette surveillance sous Kadhafi.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.03.2016-ITEMA_20937444-0.mp3" download="Les "grandes oreilles" de la France en Libye">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.03.2016-ITEMA_20937444-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-syrie-retour-a-homs-et-deraa">Syrie : retour à Homs et Deraa</a></h2>
<p>Tue Mar 15 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:48 - Le zoom de la rédaction - Aujourd’hui 15 mars marque le jour anniversaire du début du soulèvement en Syrie. Notre envoyée spéciale Valérie Crova s’est rendue à Deraa à 120 km au sud de Damas, là où tout a commencé.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.03.2016-ITEMA_20936502-0.mp3" download="Syrie : retour à Homs et Deraa">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.03.2016-ITEMA_20936502-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-syrie-les-combattants-kurdes-a-quelques-kilometres-de-raqqa">Syrie, les combattants kurdes à quelques kilomètres de Raqqa</a></h2>
<p>Mon Mar 14 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:53 - Le zoom de la rédaction - Cinq ans de guerre, près de 270 000 morts, un pays en ruine et, seule satisfaction, le groupe État Islamique qui recule dans le nord de la Syrie où Omar Ouahmane était il y a quelques jours.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.03.2016-ITEMA_20935586-0.mp3" download="Syrie, les combattants kurdes à quelques kilomètres de Raqqa">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.03.2016-ITEMA_20935586-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-terrorisme-les-incroyables-defaillances-de-schengen">Terrorisme : les incroyables défaillances de Schengen</a></h2>
<p>Fri Mar 11 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:30 - Le zoom de la rédaction - Saint-Denis, 13 novembre 2015, 3 terroristes se font exploser aux abords du Stade de France. La justice française découvre qu’au moins 2 d'entre eux sont entrés en Europe en se faisant passer pour des réfugiés syriens grâce à de &quot;vrais-faux&quot; passeports.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.03.2016-ITEMA_20933701-0.mp3" download="Terrorisme : les incroyables défaillances de Schengen">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.03.2016-ITEMA_20933701-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-esclave-en-france-en-2016">Esclave en France en 2016</a></h2>
<p>Thu Mar 10 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:37 - Le zoom de la rédaction - La Commission nationale consultative des Droits de l'homme publie un rapport que France Inter a pu consulter en avant-première. Le constat est affligeant : traite économique sur les chantiers, esclavage à domicile et traite sexuelle.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.03.2016-ITEMA_20932793-0.mp3" download="Esclave en France en 2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.03.2016-ITEMA_20932793-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-fukushima-le-difficile-retour-a-la-vie">Fukushima, le difficile retour à la vie</a></h2>
<p>Wed Mar 09 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - En mars 2011, les riverains ont été évacués dans un rayon de 20km autour de la centrale. Aujourd’hui, 100 000 personnes sont toujours déplacées. Les autorités encouragent les retours vers, mais beaucoup ne veulent pas rentrer chez eux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.03.2016-ITEMA_20931884-0.mp3" download="Fukushima, le difficile retour à la vie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.03.2016-ITEMA_20931884-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-fukushima-linterminable-demantelement">Fukushima, l'interminable démantèlement</a></h2>
<p>Tue Mar 08 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Les Japonais commémoreront vendredi les cinq ans d’une triple catastrophe. Le 11 mars 2011, le nord-est du pays est frappé par un séisme, un tsunami, et une catastrophe nucléaire. Cinq ans après, les conséquences sont encore bien réelles.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.03.2016-ITEMA_20930968-0.mp3" download="Fukushima, l'interminable démantèlement">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.03.2016-ITEMA_20930968-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-on-ne-passe-presque-plus-entre-la-syrie-et-la-turquie">On ne passe presque plus entre la Syrie et la Turquie</a></h2>
<p>Mon Mar 07 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction - La Turquie et l’Union européenne se réunissent aujourd’hui à Bruxelles pour gérer la crise migratoire. La Turquie accueille à elle seule 2,5 millions de Syriens sur son territoire.Bruxelles demande notamment à Ankara de mieux contrôler ses frontières.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.03.2016-ITEMA_20930047-0.mp3" download="On ne passe presque plus entre la Syrie et la Turquie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.03.2016-ITEMA_20930047-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-franceun-pays-corrompu">La France : un pays corrompu ?</a></h2>
<p>Fri Mar 04 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:37 - Le zoom de la rédaction - Fin mars 2016, le ministre des finances, Michel Sapin, présentera un nouveau dispositif de lutte contre la corruption internationale pour tenter de mettre un terme aux pratiques anciennes et douteuses des plus grandes entreprises françaises.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.03.2016-ITEMA_20928168-0.mp3" download="La France : un pays corrompu ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.03.2016-ITEMA_20928168-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-douze-mesures-en-100-jours-ou-en-sont-les-promesses-de-christian-es">Douze mesures en 100 jours, où en sont les promesses de Christian Estrosi ?</a></h2>
<p>Thu Mar 03 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:12 - Le zoom de la rédaction - C'était l'ambition du candidat Estrosi aux régionales en région PACA. À l'occasion de son passage sur France Inter et 76 jours après l'élection, nous avons passé à la loupe les mesures déjà prises par celui qui veut être un président consensuel.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.03.2016-ITEMA_20927266-0.mp3" download="Douze mesures en 100 jours, où en sont les promesses de Christian Estrosi ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.03.2016-ITEMA_20927266-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-5g-reseau-du-futur-plus-ou-moins-proche">La 5G, réseau du futur (plus ou moins proche)</a></h2>
<p>Wed Mar 02 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - La semaine à Barcelone, au cœur du plus grand salon du monde sur la téléphonie mobile, le Mobile World Congress, tout le monde n'avait que ce mot à la bouche : 5G. C'est le réseau sur lequel le monde entier va se connecter d'ici quelques années.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.03.2016-ITEMA_20926356-0.mp3" download="La 5G, réseau du futur (plus ou moins proche)">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.03.2016-ITEMA_20926356-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-usa-ces-immigres-au-coeur-de-la-campagne">USA : ces immigrés au cœur de la campagne</a></h2>
<p>Tue Mar 01 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Ce mardi, c'est le Super Tuesday, 12 états qui votent simultanément. Parmi eux, le Texas, deuxième plus grand état des États-Unis. Après la Californie, c'est celui qui a la plus forte concentration d’immigrés, dont tous les candidats parlent beaucoup.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.03.2016-ITEMA_20925453-0.mp3" download="USA : ces immigrés au cœur de la campagne">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.03.2016-ITEMA_20925453-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-usa-une-election-et-300-millions-darmes">USA : une élection et 300 millions d'armes</a></h2>
<p>Mon Feb 29 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction - Le contrôle des armes, c’est un des chevaux de bataille de Barack Obama, qui reconnaît là un des échecs de sa présidence. Comme à chaque élection, le port d’arme est une question qui compte pour les Américains au moment de voter.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.02.2016-ITEMA_20924532-0.mp3" download="USA : une élection et 300 millions d'armes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.02.2016-ITEMA_20924532-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-enquete-sur-le-systeme-fifa">Enquête sur le "système FIFA"</a></h2>
<p>Fri Feb 26 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Une enquête de Benoît Collombat sur les coulisses de la FIFA, depuis plusieurs mois en pleine tempête judiciaire. 1/Du système Havelange au système Blatter. 2/ les relations Blatter/Platini.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.02.2016-ITEMA_20922655-0.mp3" download="Enquête sur le "système FIFA"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.02.2016-ITEMA_20922655-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-legislatives-en-iran-le-test-de-popularite-du-president-rohani">Législatives en Iran : le test de popularité du président Rohani</a></h2>
<p>Thu Feb 25 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:32 - Le zoom de la rédaction - Les Iraniens votent cette semaine pour renouveler leur parlement. Des élections qui feront aussi office de test pour mesurer la popularité du président Rohani.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.02.2016-ITEMA_20921754-0.mp3" download="Législatives en Iran : le test de popularité du président Rohani">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.02.2016-ITEMA_20921754-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-en-finir-avec-les-incidents-lors-des-matchs-de-football">Comment en finir avec les incidents lors des matchs de football ?</a></h2>
<p>Wed Feb 24 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:46 - Le zoom de la rédaction - L'Assemblée a adopté le 4 février la proposition de loi du député les Républicains Guillaume Larrivé sur la lutte contre le hooliganisme. Le texte sera examiné au Sénat en avril, mais avant même son adoption, il fait bondir les supporters de foot.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.02.2016-ITEMA_20920849-0.mp3" download="Comment en finir avec les incidents lors des matchs de football ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.02.2016-ITEMA_20920849-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-gaza-limpasse">Gaza : l'impasse</a></h2>
<p>Tue Feb 23 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:48 - Le zoom de la rédaction - Un peu plus d’un an et demi après une guerre dévastatrice, les conditions de vie dans l’enclave de la bande de Gaza continuent de se dégrader, alors que l’ONU s’inquiète du risque de radicalisation.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.02.2016-ITEMA_20919940-0.mp3" download="Gaza : l'impasse">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.02.2016-ITEMA_20919940-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-gaza-limpasse">Gaza : l'impasse</a></h2>
<p>Mon Feb 22 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:45 - Le zoom de la rédaction - Un peu plus d’un an et demi après une guerre dévastatrice, les conditions de vie dans l’enclave de la bande de Gaza continuent de se dégrader, alors que l’ONU s’inquiète du risque de radicalisation.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.02.2016-ITEMA_20919021-0.mp3" download="Gaza : l'impasse">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.02.2016-ITEMA_20919021-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-migrants-ouverture-des-hotspots-grecs">Migrants : ouverture des hotspots grecs</a></h2>
<p>Fri Feb 19 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - La Grèce a ouvert cette semaine 3 hotspots de plus à Chios, Leros et Samos, des iles qui jouxtent quasiment la Turquie. Les hotspots, ce sont ces centres d’enregistrement et de sélection des réfugiés et migrants, promis à l’Union Européenne.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.02.2016-ITEMA_20917146-0.mp3" download="Migrants : ouverture des hotspots grecs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.02.2016-ITEMA_20917146-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-jours-decisifs-pour-le-brexit">Jours décisifs pour le Brexit</a></h2>
<p>Thu Feb 18 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Un sommet décisif pour l’avenir de l’Europe se tient jeudi et vendredi à Bruxelles avec au menu, la crise des réfugiés et le Brexit.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.02.2016-ITEMA_20916245-0.mp3" download="Jours décisifs pour le Brexit">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.02.2016-ITEMA_20916245-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-zika-la-guyane-en-phase-epidemique">Zika : la Guyane en phase épidémique</a></h2>
<p>Wed Feb 17 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Le virus Zika touche désormais plus de 20 pays, dont certains départements français d’Amérique. C’est le cas de la Guyane qui est en phase épidémique.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.02.2016-ITEMA_20915340-0.mp3" download="Zika : la Guyane en phase épidémique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.02.2016-ITEMA_20915340-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-libye-un-pays-au-bord-du-chaos">Libye, un pays au bord du chaos</a></h2>
<p>Tue Feb 16 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Il y a cinq ans débutaient à Benghazi, dans l’est de la Libye, les premières manifestations contre le régime de Kadhafi. Cinq ans après le pays est au bord du chaos, entre divisions politiques, milices en guerre et émergence du groupe Etat Islamique</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.02.2016-ITEMA_20914437-0.mp3" download="Libye, un pays au bord du chaos">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.02.2016-ITEMA_20914437-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 15.02.2016</a></h2>
<p>Mon Feb 15 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.02.2016-ITEMA_20913516-0.mp3" download="Reporters 15.02.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.02.2016-ITEMA_20913516-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-migrants-syriens-la-france-non-merci">Migrants syriens : "la France, non merci"</a></h2>
<p>Fri Feb 12 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:09 - Le zoom de la rédaction - &quot;L’Europe submergée par un exode massif de Syriens !&quot; Voilà ce qu’on entendait sans cesse à l’automne 2015 en France. Mais les chiffres racontent une autre histoire : les réfugiés syriens ne veulent pas venir chez nous.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.02.2016-ITEMA_20911634-0.mp3" download="Migrants syriens : "la France, non merci"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.02.2016-ITEMA_20911634-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-villa-medicis-lacademie-de-france-a-rome-a-350-ans">Villa Médicis : l'Académie de France à Rome a 350 ans</a></h2>
<p>Thu Feb 11 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:32 - Le zoom de la rédaction - France Inter vous emmène à la découverte de l’Académie de France à Rome, qui fête ses 350 ans. Cette résidence d’artistes, symbole du rayonnement de la culture française, siège dans l’un des plus beaux palais de Rome : la Villa Medicis.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.02.2016-ITEMA_20910637-0.mp3" download="Villa Médicis : l'Académie de France à Rome a 350 ans">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.02.2016-ITEMA_20910637-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-evacuation-des-bidonvilles-que-deviennent-les-roms">Évacuation des bidonvilles : que deviennent les Roms ?</a></h2>
<p>Wed Feb 10 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Il y a une semaine jour pour jour, les forces de l'ordre ont évacué le plus grand bidonville parisien, porte de Clignancourt. Le campement est désormais détruit, les 250 Roms qui y vivaient ont été dispersés. Depuis, que deviennent-ils ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.02.2016-ITEMA_20909730-0.mp3" download="Évacuation des bidonvilles : que deviennent les Roms ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.02.2016-ITEMA_20909730-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-rythmes-scolaires-les-communes-a-la-peine">Rythmes scolaires : les communes à la peine</a></h2>
<p>Tue Feb 09 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:30 - Le zoom de la rédaction - C'est la deuxième année que la réforme des rythmes scolaires est appliquée partout, mais déjà certaines communes rencontrent de très grosses difficultés pour financer les activités péri-scolaires.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.02.2016-ITEMA_20908830-0.mp3" download="Rythmes scolaires : les communes à la peine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.02.2016-ITEMA_20908830-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-front-national-simplanter-et-recruter-en-banlieue">Front national : s'implanter et recruter en banlieue</a></h2>
<p>Mon Feb 08 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - Ce week-end, les cadres du FN se sont réunis dans l'Essonne. Ils ont tenu un bureau politique à huis clos pour définir la stratégie pour 2017. Avec comme fil rouge cette question : comment faire sauter le plafond de verre et gagner de nouveaux électeurs ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.02.2016-ITEMA_20907913-0.mp3" download="Front national : s'implanter et recruter en banlieue">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.02.2016-ITEMA_20907913-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-nucleaire-laddition-quon-nous-cache">Nucléaire : l'addition qu'on nous cache</a></h2>
<p>Fri Feb 05 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - EDF doit rénover ses centrales vieillissantes, voler au secours d’Areva, et enfin construire deux EPR en Grande-Bretagne. Tout cela pèse sur les prix. Mais un autre nuage va plomber les comptes d’EDF : le démantèlement des centrales nucléaires</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.02.2016-ITEMA_20906046-0.mp3" download="Nucléaire : l'addition qu'on nous cache">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.02.2016-ITEMA_20906046-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-defi-de-la-lutte-contre-la-radicalisation-en-prison">Le défi de la lutte contre la radicalisation en prison</a></h2>
<p>Thu Feb 04 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:43 - Le zoom de la rédaction - Que faire des détenus impliqués dans les filières djihadistes? Comment traiter ces prisonniers?
Trois &quot;unités dédiées&quot; de lutte contre la radicalisation viennent d'ouvrir.
Reportage de Corinne Audouin à la maison d'arrêt d'Osny, dans le Val d'Oise.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.02.2016-ITEMA_20905143-0.mp3" download="Le défi de la lutte contre la radicalisation en prison">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.02.2016-ITEMA_20905143-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-peuple-de-gauche-qui-es-tu-ou-es-tu">Peuple de gauche : qui es-tu, où es-tu ?</a></h2>
<p>Wed Feb 03 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Zoom sur le &quot;peuple de gauche&quot;. Après l'appel de personnalités à une primaire au sein de toute la gauche avant la présidentielle de 2017, qui est ce peuple, quelles sont ses attentes ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.02.2016-ITEMA_20904246-0.mp3" download="Peuple de gauche : qui es-tu, où es-tu ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.02.2016-ITEMA_20904246-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-agriculteurs-bretons-les-aider-et-les-accompagner">Agriculteurs bretons, les aider et les accompagner</a></h2>
<p>Tue Feb 02 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Zoom sur une agriculture en faillite. En pleine crise, en particulier de l'élevage, comment accompagner les agriculteurs et les aider à passer cette période très douloureuse pour beaucoup.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.02.2016-ITEMA_20903348-0.mp3" download="Agriculteurs bretons, les aider et les accompagner">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.02.2016-ITEMA_20903348-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-coup-d-envoi-de-la-presidentielle-americaine">Coup d’envoi de la présidentielle américaine</a></h2>
<p>Mon Feb 01 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:42 - Le zoom de la rédaction - En plein cœur des Etats-Unis, l’Iowa est le premier à voter dans le long processus de désignation des candidats à la Maison Blanche. C’est donc le vrai départ de la présidentielle américaine.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.02.2016-ITEMA_20902325-0.mp3" download="Coup d’envoi de la présidentielle américaine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.02.2016-ITEMA_20902325-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-francophonie-un-nouvel-eldorado">La francophonie : un nouvel eldorado ?</a></h2>
<p>Fri Jan 29 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - Et si la francophonie, un concept né avec la colonisation et souvent qualifié de ringard, était en fait un des enjeux du futur ? Les projections démographiques sont vertigineuses.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.01.2016-ITEMA_20900450-0.mp3" download="La francophonie : un nouvel eldorado ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.01.2016-ITEMA_20900450-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-devient-on-francais">Comment devient-on Français ?</a></h2>
<p>Thu Jan 28 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - Un peu plus de 86 000 personnes sont devenues françaises en 2015. A l'heure où la déchéance de nationalité continue de faire couler beaucoup d'encre,France Inter s'est intéressé à ceux et celles qui se lancent dans ce parcours du combattant.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.01.2016-ITEMA_20899529-0.mp3" download="Comment devient-on Français ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.01.2016-ITEMA_20899529-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-liran-un-eldorado-seme-dembuches">L'Iran, un eldorado semé d'embûches</a></h2>
<p>Wed Jan 27 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - Le président iranien Rohani est à Paris ce mercredi et les entreprises françaises espèrent que cette visite officielle sera la clé pour ouvrir la porte de l'eldorado du marché iranien. Un marché de 80 millions de consommateurs... Mais un marché compliqué.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.01.2016-ITEMA_20898625-0.mp3" download="L'Iran, un eldorado semé d'embûches">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.01.2016-ITEMA_20898625-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-ma-justice-va-craquer">Ma justice va craquer</a></h2>
<p>Tue Jan 26 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - A l'occasion de la rentrée judiciaire 2016, procureurs et présidents de tribunaux dénoncent le manque de moyens de la justice. Grosse fatigue à Angers, à Bobigny les délais explosent.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.01.2016-ITEMA_20897721-0.mp3" download="Ma justice va craquer">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.01.2016-ITEMA_20897721-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-migrants-sur-la-route-des-balkans-dans-le-froid">Migrants : sur la route des Balkans dans le froid</a></h2>
<p>Mon Jan 25 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:34 - Le zoom de la rédaction - Malgré l'hiver déjà bien installé, des milliers de personnes tentent toujours de fuir la Syrie, l'Afghanistan ou encore l'Irak et de rejoindre les côtes européennes à bord d'embarcations précaires. Omar Ouahmane a rencontré ces réfugiés à Lesbos.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.01.2016-ITEMA_20896808-0.mp3" download="Migrants : sur la route des Balkans dans le froid">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.01.2016-ITEMA_20896808-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-logement-social-en-ile-de-france-clientelisme-et-abus">Logement social en Ile-de-France : clientélisme et abus</a></h2>
<p>Fri Jan 22 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:07 - Le zoom de la rédaction - En Ile-de-France, plus de 500 000 foyers sont en attente d’un logement social pour environ 80 000 attributions par an. Obtenir une HLM est donc un vrai parcours du combattant.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.01.2016-ITEMA_20894974-0.mp3" download="Logement social en Ile-de-France : clientélisme et abus">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.01.2016-ITEMA_20894974-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-combat-pour-linformation-des-exiles-syriens">Le combat pour l'information des exilés syriens</a></h2>
<p>Thu Jan 21 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - Des opposants syriens, exilés en Turquie, sont devenus des &quot;journalistes citoyens&quot;. Chaque semaine, ils publient de Turquie et distribuent en Syrie un journal d'information en prenant des risques énormes. Le reportage de Géraldine Hallot.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.01.2016-ITEMA_20894075-0.mp3" download="Le combat pour l'information des exilés syriens">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.01.2016-ITEMA_20894075-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lutte-contre-les-discriminations-les-francais-sont-ils-prets">Lutte contre les discriminations, les Français sont-ils prêts ?</a></h2>
<p>Wed Jan 20 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - C'est un sondage commandé par le réseau associatif des Maisons Des Potes, implanté dans les quartiers populaires que France Inter vous révèle ce mercredi.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.01.2016-ITEMA_20893181-0.mp3" download="Lutte contre les discriminations, les Français sont-ils prêts ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.01.2016-ITEMA_20893181-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-principe-du-pollueur-payeur-applique-a-la-biodiversite">Le principe du pollueur-payeur appliqué à la biodiversité ?</a></h2>
<p>Tue Jan 19 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - La loi sur la biodiversité propose un nouvel outil qui fait débat. Ceux qui détruisent le paysage pourront compenser en finançant des projets de biodiversité clé en main. A la Plaine de Crau, la première expérimentation du genre est menée.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.01.2016-ITEMA_20892242-0.mp3" download="Le principe du pollueur-payeur appliqué à la biodiversité ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.01.2016-ITEMA_20892242-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-droite-une-primaire-sous-le-signe-de-la-suspicion">À droite, une primaire sous le signe de la suspicion</a></h2>
<p>Mon Jan 18 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - La droite organise pour la première fois, une primaire pour désigner son candidat à l'élection présidentielle. Le scrutin est prévu les 20 et 27 novembre prochains. Mais le processus a mis près de 3 ans à s'imposer.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.01.2016-ITEMA_20891332-0.mp3" download="À droite, une primaire sous le signe de la suspicion">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.01.2016-ITEMA_20891332-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-hebergement-durgence-lengrenage">Hébergement d'urgence : l'engrenage</a></h2>
<p>Fri Jan 15 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - C'est une spirale infernale dont l'Etat essaye de sortir. L'hébergement d'urgence des familles sans abris se fait en grande partie aujourd'hui ...à l'hôtel !</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.01.2016-ITEMA_20889503-0.mp3" download="Hébergement d'urgence : l'engrenage">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.01.2016-ITEMA_20889503-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-peut-on-former-davantage-de-chomeurs">Peut-on former davantage de chômeurs ?</a></h2>
<p>Thu Jan 14 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Former 500 000 chômeurs de plus aux métiers de demain. C'est l'un des axes du plan d'urgence contre le chômage, présenté par François Hollande pour 2016. Une bonne idée en apparence mais nous avons voulu vérifier auprès des acteurs de la formation.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.01.2016-ITEMA_20888439-0.mp3" download="Peut-on former davantage de chômeurs ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.01.2016-ITEMA_20888439-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-fin-de-la-politique-de-lenfant-unique-en-chine">La fin de la politique de l'enfant unique en Chine</a></h2>
<p>Wed Jan 13 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:44 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.01.2016-ITEMA_20887522-0.mp3" download="La fin de la politique de l'enfant unique en Chine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.01.2016-ITEMA_20887522-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-nouveau-depart-pour-des-familles-de-refugies-sur-le-sol-francais">Un nouveau départ pour des familles de réfugiés sur le sol français</a></h2>
<p>Tue Jan 12 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - L'accueil des réfugiés est quasiment à l'arrêt en France. L'OFPRA est allé chercher à Munich, quelques centaines de ressortissants syriens et irakiens en septembre. Que deviennent aujourd'hui, ces familles arrivées il y a 3 mois ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.01.2016-ITEMA_20886632-0.mp3" download="Un nouveau départ pour des familles de réfugiés sur le sol français">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.01.2016-ITEMA_20886632-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-ou-va-le-service-civique">Où va le service civique ?</a></h2>
<p>Mon Jan 11 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:32 - Le zoom de la rédaction - Va-t-il à nouveau donner un coup d'accélérateur ? Ou risquer d'être dénaturé ? François Hollande présente ce lundi ses vœux à la jeunesse. Des vœux qui vont comporter un volet &quot;citoyenneté&quot; important après les attentats du 13 novembre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.01.2016-ITEMA_20885724-0.mp3" download="Où va le service civique ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.01.2016-ITEMA_20885724-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-brigades-feminines-de-letat-islamique">Les brigades féminines de l'Etat islamique</a></h2>
<p>Fri Jan 08 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - Des Brigades féminines créées en 2013 par DAECH juste après des attentats commis par des opposants cachés sous des burqas, il s’agissait de procéder alors à des contrôles d’identité sur les femmes par des femmes</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.01.2016-ITEMA_20883898-0.mp3" download="Les brigades féminines de l'Etat islamique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.01.2016-ITEMA_20883898-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-attentats-ce-qui-a-change-pour-les-policiers-sur-le-terrain">Attentats : ce qui a changé pour les policiers sur le terrain</a></h2>
<p>Thu Jan 07 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:25 - Le zoom de la rédaction - Depuis un an, la police du quotidien, celle qu'on appelle au 17 quand il y a un accident de la circulation ou une bagarre, est confrontée à toute autre chose. Elle doit désormais faire face à des tueries de masse.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.01.2016-ITEMA_20883003-0.mp3" download="Attentats : ce qui a changé pour les policiers sur le terrain">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.01.2016-ITEMA_20883003-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 06.01.2016</a></h2>
<p>Wed Jan 06 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:10:05 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.01.2016-ITEMA_20882103-0.mp3" download="Reporters 06.01.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.01.2016-ITEMA_20882103-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 05.01.2016</a></h2>
<p>Tue Jan 05 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:55 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.01.2016-ITEMA_20881214-0.mp3" download="Reporters 05.01.2016">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.01.2016-ITEMA_20881214-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-an-apres-les-attentats-de-janvier-2015-retour-sur-lenquete">Un an après les attentats de janvier 2015, retour sur l'enquête</a></h2>
<p>Mon Jan 04 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Contrairement à ceux du 13 novembre, les attentats de janvier 2015 étaient ciblés : Charlie Hebdo, une policière de Montrouge, l'Hypercacher de la porte de Vincennes. Mais que sait-on sur les possibles commanditaires ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.01.2016-ITEMA_20880294-0.mp3" download="Un an après les attentats de janvier 2015, retour sur l'enquête">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.01.2016-ITEMA_20880294-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-police-francaise-epuisee-par-la-lutte-antiterroriste">La police française épuisée par la lutte antiterroriste</a></h2>
<p>Fri Jan 01 2016 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - Trois mois après une première enquête sur l’épuisement des forces de l’ordre, Secrets d’Info est retourné prendre le pouls de la police nationale qui a connu une fin d’année intense avec les attentats de novembre 2015, puis l’organisation de la COP21</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.01.2016-ITEMA_20878463-0.mp3" download="La police française épuisée par la lutte antiterroriste">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.01.2016-ITEMA_20878463-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-repas-de-fetes-sans-grossir-est-ce-possible">Un repas de fêtes sans grossir, est-ce possible ?</a></h2>
<p>Thu Dec 31 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - En ce dernier jour de l'année, une question se pose : un repas de fêtes est-il compatible avec le tour de taille ? Philippe Lefebvre s'est rendu au &quot;village pour maigrir&quot;. Il a également rencontré un chef étoilé et un célèbre chocolatier lyonnais.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.12.2015-ITEMA_20877567-0.mp3" download="Un repas de fêtes sans grossir, est-ce possible ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.12.2015-ITEMA_20877567-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-bronzes-font-tant-bien-que-mal-du-ski">Les bronzés font (tant bien que mal) du ski</a></h2>
<p>Wed Dec 30 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Cette année, la neige n'est pas au rendez-vous, loin de là. À Chamrousse, en Isère, les vacanciers de Noël skient, certes, mais sur un domaine réduit. Un décor surréaliste : montagnes en herbes, parsemées de névés, et un seul ruban blanc pour skier.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.12.2015-ITEMA_20876668-0.mp3" download="Les bronzés font (tant bien que mal) du ski">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.12.2015-ITEMA_20876668-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-centrafrique-la-reconciliation-entre-chretiens-et-musulmans-est-en-">Centrafrique : la réconciliation entre chrétiens et musulmans est en marche</a></h2>
<p>Tue Dec 29 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - Après trois ans de violences et d’affrontements entre les musulmans de la Seleka et les chrétiens anti-balaka, les centrafricains s’apprêtent a élire, demain, leur nouveau président de la République. Un premier pas sur la longue route vers la paix.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.12.2015-ITEMA_20875768-0.mp3" download="Centrafrique : la réconciliation entre chrétiens et musulmans est en marche">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.12.2015-ITEMA_20875768-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-salles-de-spectacles-a-la-peine-apres-l-attentat-du-bataclan">Les salles de spectacles à la peine après l’attentat du Bataclan</a></h2>
<p>Mon Dec 28 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:10 - Le zoom de la rédaction - Depuis les attentats du 13 novembre, les lieux culturels peinent à se remplir. Les fêtes de fin d’année sont l’occasion pour les professionnels d’attirer de nouveau. D’habitude la période représente un quart des ventes dans le domaine du spectacle vivant.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.12.2015-ITEMA_20874849-0.mp3" download="Les salles de spectacles à la peine après l’attentat du Bataclan">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.12.2015-ITEMA_20874849-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-arnaque-a-la-secu-le-scandale-perdure">Arnaque à la Sécu : le scandale perdure</a></h2>
<p>Fri Dec 25 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Il y a trois mois, Secrets d’info révélait un système de fraudes à la Sécu de grande ampleur dans certaines maisons de retraite. L’enquête a suscité beaucoup de réactions... à l’exception des deux ministères concernés.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.12.2015-ITEMA_20872994-0.mp3" download="Arnaque à la Sécu : le scandale perdure">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.12.2015-ITEMA_20872994-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 24.12.2015</a></h2>
<p>Thu Dec 24 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.12.2015-ITEMA_20872075-0.mp3" download="Reporters 24.12.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.12.2015-ITEMA_20872075-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-reporters-de-guerre-informer-en-zone-de-conflit">Reporters de guerre, informer en zone de conflit</a></h2>
<p>Wed Dec 23 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Chaque jour, des journalistes irakiens, yéménites, syriens et lybiens risquent leur vie en reportage. Ils évoluent dans la clandestinité ou sont contraints à l'exil. Ces journalistes étaient réunis hier à Paris.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.12.2015-ITEMA_20871173-0.mp3" download="Reporters de guerre, informer en zone de conflit">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.12.2015-ITEMA_20871173-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-des-identitaires-au-conseil-regional-de-paca">Des "identitaires" au Conseil régional de PACA</a></h2>
<p>Tue Dec 22 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:09 - Le zoom de la rédaction - Philippe Vardon et Benoit Loeuilliet, deux anciens dirigeants du Bloc Identitaire élus sur les listes de Marion Maréchal Le Pen, sont entrés au Conseil régional vendredi dernier alors que sa tante disait ne pas vouloir les voir sous la bannière du FN</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.12.2015-ITEMA_20870166-0.mp3" download="Des "identitaires" au Conseil régional de PACA">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.12.2015-ITEMA_20870166-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 21.12.2015</a></h2>
<p>Mon Dec 21 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.12.2015-ITEMA_20869242-0.mp3" download="Reporters 21.12.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.12.2015-ITEMA_20869242-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-thiaroye-1944-un-massacre-camoufle">Thiaroye 1944 : un massacre camouflé</a></h2>
<p>Fri Dec 18 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Une enquête sur un massacre camouflé par la France. C’était il y a plus de 70 ans, à Thiaroye, au Sénégal. L’armée française ouvre le feu sur des tirailleurs africains, qui ont combattu sous l’uniforme français.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.12.2015-ITEMA_20867403-0.mp3" download="Thiaroye 1944 : un massacre camouflé">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.12.2015-ITEMA_20867403-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-une-filiere-presumee-de-faux-etudiants-chinois-demantelee">Une filière présumée de faux étudiants chinois démantelée</a></h2>
<p>Thu Dec 17 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:59 - Le zoom de la rédaction - C’est une information de France Inter : un trafic présumé de faux étudiants chinois inscrits dans une vraie école de commerce parisienne a été démantelé. Son directeur est sous les verrous.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.12.2015-ITEMA_20866460-0.mp3" download="Une filière présumée de faux étudiants chinois démantelée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.12.2015-ITEMA_20866460-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-relancer-lapprentissage">Comment relancer l'apprentissage ?</a></h2>
<p>Wed Dec 16 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:07 - Le zoom de la rédaction - Dès dimanche, au soir du second tour des élections régionales, le Premier ministre a estimé que ces résultats étaient une &quot;'injonction à agir sans relâche et plus vite pour l'emploi&quot;. Manuel Valls, a souhaité &quot;mettre le paquet&quot; sur l'apprentissage...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.12.2015-ITEMA_20865563-0.mp3" download="Comment relancer l'apprentissage ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.12.2015-ITEMA_20865563-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-berlin-lieu-despoir-et-dattente-des-migrants">Berlin : lieu d'espoir et d'attente des migrants</a></h2>
<p>Tue Dec 15 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:15 - Le zoom de la rédaction - L’accueil des migrants est toujours au cœur des préoccupations en Allemagne. Au congrès de son parti la CDU, Angela Merkel a déclaré lundi vouloir « réduire fortement le nombre de réfugiés », mais sans remettre en question sa politique d’ouverture.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.12.2015-ITEMA_20864653-0.mp3" download="Berlin : lieu d'espoir et d'attente des migrants">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.12.2015-ITEMA_20864653-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quelles-lecons-tirer-des-elections-regionales">Quelles leçons tirer des élections régionales ?</a></h2>
<p>Mon Dec 14 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:54 - Le zoom de la rédaction - Le sursaut républicain a empêché les conquêtes du FN. Quelles leçons les élus tirent ils de ce scrutin ? Le message dans les partis traditionnels est clair : ignorer cet avertissement pourrait se révéler dévastateur.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.12.2015-ITEMA_20863733-0.mp3" download="Quelles leçons tirer des élections régionales ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.12.2015-ITEMA_20863733-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-dans-le-montargois-le-fn-simpose-aussi-dans-les-villes">Dans le Montargois, le FN s'impose aussi dans les villes</a></h2>
<p>Fri Dec 11 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:43 - Le zoom de la rédaction - A trois jours du second tour des élections régionales, France Inter vous emmène ce matin en Centre-Val-de-Loire. Pour la première fois dimanche dernier, le Front National est arrivé en tête avec 30,49% des voix.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.12.2015-ITEMA_20861894-0.mp3" download="Dans le Montargois, le FN s'impose aussi dans les villes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.12.2015-ITEMA_20861894-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 10.12.2015</a></h2>
<p>Thu Dec 10 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:29 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.12.2015-ITEMA_20860980-0.mp3" download="Reporters 10.12.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.12.2015-ITEMA_20860980-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lutter-contre-le-chomage-de-longue-duree">Lutter contre le chômage de longue durée</a></h2>
<p>Wed Dec 09 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:19 - Le zoom de la rédaction - Selon une récente enquête Ipsos Steria pour France Inter, l'emploi reste la première préoccupation des Français en cette période d'élections régionales. Alors que le chômage continue d'augmenter, les députés veulent créer des &quot;territoires zéro chômeur&quot;.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.12.2015-ITEMA_20860094-0.mp3" download="Lutter contre le chômage de longue durée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.12.2015-ITEMA_20860094-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-l-etat-d-urgence-sous-le-feu-des-critiques">L’état d’urgence sous le feu des critiques</a></h2>
<p>Tue Dec 08 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:33 - Le zoom de la rédaction - Le ministre de l'Intérieur Bernard Cazeneuve à huis clos face aux députés ce mardi pour répondre aux inquiétudes concernant l'état d'urgence. Des voix dénoncent un dispositif potentiellement dangereux car stigmatisant et d’une efficacité discutable.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.12.2015-ITEMA_20859208-0.mp3" download="L’état d’urgence sous le feu des critiques">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.12.2015-ITEMA_20859208-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-hambourg-veut-saffranchir-du-charbon">Hambourg veut s'affranchir du charbon</a></h2>
<p>Mon Dec 07 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:40 - Le zoom de la rédaction - Quelles solutions pour sauver la planète ? Aujourd'hui, reportage de Béatrice Dugué à Hambourg. La deuxième ville d'Allemagne est exposée aux tempêtes, et aux risques de submersion, si le réchauffement climatique n'est pas contenu.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.12.2015-ITEMA_20858303-0.mp3" download="Hambourg veut s'affranchir du charbon">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.12.2015-ITEMA_20858303-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-enquete-sur-le-magot-de-felix-houphouet-boigny">Enquête sur le "magot" de Félix Houphouët-Boigny</a></h2>
<p>Fri Dec 04 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:40 - Le zoom de la rédaction - L'immense fortune de Félix Houphouët-Boigny, l'ancien président de la Côte d'Ivoire, objet de toutes les convoitises...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.12.2015-ITEMA_20856482-0.mp3" download="Enquête sur le "magot" de Félix Houphouët-Boigny">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.12.2015-ITEMA_20856482-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-faut-il-fermer-la-mosquee-sunna-de-brest">Faut-il fermer la mosquée Sunna de Brest ?</a></h2>
<p>Thu Dec 03 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:35 - Le zoom de la rédaction - Après les attentats, Manuel Valls a promis de fermer les mosquées radicales voire de modifier la loi pour condamner les imams aux prêches trop sulfureux. France Inter a pu rencontrer l'imam de Brest, dans le viseur du Premier ministre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.12.2015-ITEMA_20855599-0.mp3" download="Faut-il fermer la mosquée Sunna de Brest ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.12.2015-ITEMA_20855599-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-leros-breche-designee-de-la-frontiere-europeenne">Leros, brèche désignée de la frontière européenne</a></h2>
<p>Wed Dec 02 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:50 - Le zoom de la rédaction - L’île de Léros, en Grèce, a vu transiter deux des kamikazes du stade de France. Elle verra bientôt s'installer un hotspot, un centre de contrôle financé par l’Union Européenne pour faire le tri entre migrants économiques et réfugiés fuyant la guerre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.12.2015-ITEMA_20854464-0.mp3" download="Leros, brèche désignée de la frontière européenne">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.12.2015-ITEMA_20854464-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-truvada-une-solution-contre-le-sida">Truvada : une solution contre le sida ?</a></h2>
<p>Tue Dec 01 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:45 - Le zoom de la rédaction - Les traitements préventifs contre le sida sont désormais autorisés en France. Petit à petit, des services hospitaliers spécialisés prescrivent du Truvada à leurs patients non infectés mais surexposés aux risques d'infection.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.12.2015-ITEMA_20853579-0.mp3" download="Truvada : une solution contre le sida ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.12.2015-ITEMA_20853579-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-cop21-le-cameroun-confronte-a-la-deforestation">COP21 : Le Cameroun confronté à la déforestation</a></h2>
<p>Mon Nov 30 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:42 - Le zoom de la rédaction - Philippe Randé s’est rendu au Cameroun, où la moitié du territoire est recouverte par la forêt, une ressource menacée par la déforestation, parfois assumée : 60% de la population travaille dans le secteur de l’agriculture.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.11.2015-ITEMA_20852674-0.mp3" download="COP21 : Le Cameroun confronté à la déforestation">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.11.2015-ITEMA_20852674-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-enquete-sur-les-reseaux-russes-en-france">Enquête sur les réseaux russes en France</a></h2>
<p>Fri Nov 27 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:37 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.11.2015-ITEMA_20850850-0.mp3" download="Enquête sur les réseaux russes en France">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.11.2015-ITEMA_20850850-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 26.11.2015</a></h2>
<p>Thu Nov 26 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:52 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.11.2015-ITEMA_20849967-0.mp3" download="Reporters 26.11.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.11.2015-ITEMA_20849967-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-des-startups-francaises-a-lassaut-de-la-chine">Des startups françaises à l'assaut de la Chine</a></h2>
<p>Wed Nov 25 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:45 - Le zoom de la rédaction - Douze jeunes pousses achèvent un périple de dix jours dans l'Empire du milieu, rythmé par des rendez-vous d'affaires et des visites d'entreprises chinoises. Objectif du programme : conquérir investisseurs, distributeurs et clients chinois potentiels.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.11.2015-ITEMA_20849077-0.mp3" download="Des startups françaises à l'assaut de la Chine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.11.2015-ITEMA_20849077-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-pupilles-de-la-nation-devraient-etre-bien-plus-nombreux-apres-l">Les pupilles de la nation devraient être bien plus nombreux après les attentats de Paris</a></h2>
<p>Tue Nov 24 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:28 - Le zoom de la rédaction - Ils s’appellent Melissa, Diego, Tom, Tania ou Kevin. Ils tous orphelins de père ou de mère depuis le 13 novembre. Avec les attentats de Paris, ils devraient gonfler le nombre de pupilles de la nation victimes du terrorisme.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.11.2015-ITEMA_20848179-0.mp3" download="Les pupilles de la nation devraient être bien plus nombreux après les attentats de Paris">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.11.2015-ITEMA_20848179-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-l-ile-de-lesbos-sous-surveillance">L’île de Lesbos sous surveillance</a></h2>
<p>Mon Nov 23 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:48 - Le zoom de la rédaction - En Grèce, les autorités déplorent le manque de moyens pour détecter des jihadistes qui tenteraient de s'infiltrer parmi les réfugiés. Sur l’île de Lesbos, le premier lieu de contrôle a été ouvert.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.11.2015-ITEMA_20847281-0.mp3" download="L’île de Lesbos sous surveillance">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.11.2015-ITEMA_20847281-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-daesh-la-fabrique-d-un-monstre">Daesh : la fabrique d’un monstre</a></h2>
<p>Fri Nov 20 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - La France peut-elle continuer de signer des contrats avec l’Arabie Saoudite et le Qatar, alors que ces deux pays ont contribué à fabriquer le groupe Etat Islamique contre lequel nous sommes aujourd’hui en « guerre » ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.11.2015-ITEMA_20845486-0.mp3" download="Daesh : la fabrique d’un monstre">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.11.2015-ITEMA_20845486-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 19.11.2015</a></h2>
<p>Thu Nov 19 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:52 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.11.2015-ITEMA_20844608-0.mp3" download="Reporters 19.11.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.11.2015-ITEMA_20844608-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-apres-les-attentats-le-defi-des-musulmans-de-france">Après les attentats, le défi des Musulmans de France</a></h2>
<p>Wed Nov 18 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:07 - Le zoom de la rédaction - Après les attentats de Paris et Saint-Denis, faut-il améliorer des choses dans l’Islam de France pour espérer couper définitivement toute envie à certains de se tourner vers le radicalisme voire le terrorisme ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.11.2015-ITEMA_20843736-0.mp3" download="Après les attentats, le défi des Musulmans de France">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.11.2015-ITEMA_20843736-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 17.11.2015</a></h2>
<p>Tue Nov 17 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.11.2015-ITEMA_20842854-0.mp3" download="Reporters 17.11.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.11.2015-ITEMA_20842854-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-douleureuse-quete-des-familles-de-victimes">La douleureuse quête des familles de victimes</a></h2>
<p>Mon Nov 16 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - 132 morts, c'est l'horrible dernier bilan officiel des attentats de vendredi soir à Paris. 103 corps identifiés. Une vingtaine de victimes n'ont pas encore de nom.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.11.2015-ITEMA_20841961-0.mp3" download="La douleureuse quête des familles de victimes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.11.2015-ITEMA_20841961-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-vaccination-de-la-defiance-a-loffensive-juridique">Vaccination : de la défiance à l'offensive juridique</a></h2>
<p>Fri Nov 13 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:48 - Le zoom de la rédaction - Le mouvement de défiance à l’égard de la vaccination prend un nouveau tournant. La résistance des sceptiques et des opposants s’exprime désormais par une action en justice, qui s’adresse clairement à la ministre de la santé.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.11.2015-ITEMA_20840167-0.mp3" download="Vaccination : de la défiance à l'offensive juridique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.11.2015-ITEMA_20840167-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-alcooliques-chomeurs-consanguins-mais-pas-lepenistes">"Alcooliques, chômeurs, consanguins mais pas lepénistes"</a></h2>
<p>Thu Nov 12 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - A trois semaines du premier tour des élections régionales. Marine le Pen caracole toujours en tête dans les sondages dans le Nord-Pas-de-Calais. De nombreuses voix se font pourtant entendre pour dire &quot;non&quot; au FN : Géraldine Hallot les a rencontrés.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.11.2015-ITEMA_20839294-0.mp3" download=""Alcooliques, chômeurs, consanguins mais pas lepénistes"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.11.2015-ITEMA_20839294-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-6-500-irreductibles-bretons-visent-lautonomie-energetique">6 500 irréductibles Bretons visent l'autonomie énergétique</a></h2>
<p>Wed Nov 11 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - Au pays de l’élevage intensif de cochons hors-sol et de l’épandage incontrôlé, sept communes du centre de la Bretagne visent l’autonomie énergétique d’ici dix ans. Le reportage de Thibault Lefèvre au cœur du territoire du Mené.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.11.2015-ITEMA_20838423-0.mp3" download="6 500 irréductibles Bretons visent l'autonomie énergétique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.11.2015-ITEMA_20838423-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-cameroun-cible-des-djihadistes">Le Cameroun, cible des djihadistes</a></h2>
<p>Tue Nov 10 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Le Cameroun est victime d'attaques régulières des djihadistes de Boko Haram. Ils multiplient attentats suicide et incursions sanglantes. Le reportage de Philippe Randé, dans la ville de Maroua l'un des fiefs de Boko Haram, à l'extrême Nord du Cameroun.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.11.2015-ITEMA_20837536-0.mp3" download="Le Cameroun, cible des djihadistes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.11.2015-ITEMA_20837536-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 09.11.2015</a></h2>
<p>Mon Nov 09 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.11.2015-ITEMA_20836607-0.mp3" download="Reporters 09.11.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.11.2015-ITEMA_20836607-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-pollution-automobile-la-grande-supercherie">Pollution automobile : la grande supercherie</a></h2>
<p>Fri Nov 06 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - Et si le scandale Volkswagen en cachait un autre ? Depuis au moins cinq ans, la Commission européenne est en effet informée que les tests qui mesurent la pollution automobile (le taux d’oxyde d’azote, le NOx) sont artificiels.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.11.2015-ITEMA_20834812-0.mp3" download="Pollution automobile : la grande supercherie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.11.2015-ITEMA_20834812-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 05.11.2015</a></h2>
<p>Thu Nov 05 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:12 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.11.2015-ITEMA_20833933-0.mp3" download="Reporters 05.11.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.11.2015-ITEMA_20833933-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-chez-les-buralistes-moins-de-braquages-mais-plus-de-contrebande">Chez les buralistes, moins de braquages mais plus de contrebande</a></h2>
<p>Wed Nov 04 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:54 - Le zoom de la rédaction - On a beaucoup parlé ces derniers jours de la fronde des 26 500 de France contre le paquet neutre, qui va selon eux provoquer une forte hausse de la contrebande. En revanche côté braquages, les buralistes ont quelques motifs de satisfaction.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.11.2015-ITEMA_20833056-0.mp3" download="Chez les buralistes, moins de braquages mais plus de contrebande">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.11.2015-ITEMA_20833056-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-maison-verte-chinoise">La maison verte chinoise</a></h2>
<p>Tue Nov 03 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:38 - Le zoom de la rédaction - Quel est le modèle de la maison écologique en Chine ? Du rouge, on passe au vert. C’est un ordre qui vient d’en haut. Voici l’une des maisons pionnières en la matière construite par l’artiste Gao Bo. Il vit dans les anciens vergers de la cité interdite.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.11.2015-ITEMA_20832182-0.mp3" download="La maison verte chinoise">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.11.2015-ITEMA_20832182-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quelle-legalite-pour-les-frappes-en-syrie">Quelle légalité pour les frappes en Syrie ?</a></h2>
<p>Mon Nov 02 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Comment combattre les djihadistes de l’État Islamique en respectant le droit ? Les frappes françaises en Syrie sont sans doute légitimes, mais sont-elles légales ? La France peut-elle aller tuer des Français à l’étranger ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.11.2015-ITEMA_20831296-0.mp3" download="Quelle légalité pour les frappes en Syrie ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.11.2015-ITEMA_20831296-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-nos-enfants-bientot-des-hommes-robots">Nos enfants : bientôt des hommes-robots ?</a></h2>
<p>Fri Oct 30 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:43 - Le zoom de la rédaction - Le transhumanisme, un mouvement né en Californie et qui promet l’élixir de l’éternelle jeunesse : ses partisans veulent augmenter les capacités de l‘homme, le faire vivre plus de 500 ans, et, pourquoi pas, le faire devenir immortel...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.10.2015-ITEMA_20829514-0.mp3" download="Nos enfants : bientôt des hommes-robots ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.10.2015-ITEMA_20829514-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-garches-retrouver-une-autonomie">Garches : retrouver une autonomie</a></h2>
<p>Thu Oct 29 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:40 - Le zoom de la rédaction - Le week-end de retour de vacances de Toussaint est redouté par la sécurité routière. Déjà près de 2 800 personnes sont mortes sur nos routes en 2015 et plus de 50 000 ont été blessées. Les grands blessés réapprennent la vie à l'hôpital de Garches.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.10.2015-ITEMA_20828635-0.mp3" download="Garches : retrouver une autonomie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.10.2015-ITEMA_20828635-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-cote-divoire-des-elections-qui-ne-preparent-pas-a-la-reconciliation">Cote d'Ivoire : des élections qui ne préparent pas à la réconciliation</a></h2>
<p>Wed Oct 28 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:49 - Le zoom de la rédaction - Les premiers résultats sont tombés hier soir, dans six régions sur 31, Alassane Ouattara est en tête et va probablement rester président de la République. Il présente ce scrutin comme la dernière étape démocratique vers la réconciliation des deux camps.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.10.2015-ITEMA_20827770-0.mp3" download="Cote d'Ivoire : des élections qui ne préparent pas à la réconciliation">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.10.2015-ITEMA_20827770-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-mission-pour-preparer-laccueil-en-france-de-refugies-syriens">Mission pour préparer l'accueil en France de réfugiés syriens</a></h2>
<p>Tue Oct 27 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - 1.000 réfugiés arriveront des camps du Liban et de Jordanie d’ici la fin de l’année en France. Une quinzaine d’agents de l’OFPRA parcourt en ce moment ces camps pour auditionner les candidats à l’asile.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.10.2015-ITEMA_20826905-0.mp3" download="Mission pour préparer l'accueil en France de réfugiés syriens">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.10.2015-ITEMA_20826905-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-dix-ans-de-politique-de-la-ville-avec-ou-sans-les-habitants">Dix ans de politique de la ville : avec ou sans les habitants ?</a></h2>
<p>Mon Oct 26 2015 06:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:41 - Le zoom de la rédaction - L'année 2005 a marqué un tournant en matière de politique de la ville. Direction Grenoble, où les habitants tentent de s’inviter dans la construction de ces politiques publiques, avec plus ou moins de succès.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.10.2015-ITEMA_20826014-0.mp3" download="Dix ans de politique de la ville : avec ou sans les habitants ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.10.2015-ITEMA_20826014-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-front-national-ces-millions-qui-interessent-les-juges">Front National : ces millions qui intéressent les juges</a></h2>
<p>Fri Oct 23 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:56 - Le zoom de la rédaction - Marine Le Pen n'a pas daigné répondre à la convocation du 13 octobre 2015 des deux juges d’instruction qui enquêtent sur le financement des campagnes frontistes des élections de 2012.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.10.2015-ITEMA_20824254-0.mp3" download="Front National : ces millions qui intéressent les juges">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.10.2015-ITEMA_20824254-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-decennie-2005-2015-vue-depuis-les-locaux-d-une-mission-locale-po">La décennie 2005-2015 vue depuis les locaux d’une mission locale pour l'emploi</a></h2>
<p>Thu Oct 22 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - Dix ans après le drame de Clichy-sous-Bois et les révoltes des banlieues, quelles évolutions sur le front de l'emploi des jeunes? Quelle efficacité pour les dispositifs lancés par les gouvernements successifs ? Reportage dans une mission locale à Bondy.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.10.2015-ITEMA_20823381-0.mp3" download="La décennie 2005-2015 vue depuis les locaux d’une mission locale pour l'emploi">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.10.2015-ITEMA_20823381-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-dix-ans-apres-la-mort-de-zyed-et-bouna-des-relations-jeunespolice-t">Dix ans après la mort de Zyed et Bouna, des relations jeunes/police toujours difficiles</a></h2>
<p>Wed Oct 21 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:34 - Le zoom de la rédaction - La mort de Zyed et Bouna à Clichy-sous-Bois et les émeutes qui ont suivi ont montré la détérioration des relations entre jeunes et policiers. Dix ans après, ces rapports sont toujours aussi difficiles.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.10.2015-ITEMA_20822506-0.mp3" download="Dix ans après la mort de Zyed et Bouna, des relations jeunes/police toujours difficiles">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.10.2015-ITEMA_20822506-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-terreur-vue-des-deux-cotes-de-jerusalem">La terreur vue des deux côtés de Jérusalem</a></h2>
<p>Tue Oct 20 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - On l&quot;appelle &quot;l&quot;intifada des couteaux&quot; : à Jérusalem et dans les territoires occupés, des Palestiniens poignardent et parfois ouvrent le feu sur des Israéliens. Rencontre avec des survivants et des proches de victimes d’attentats.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.10.2015-ITEMA_20821599-0.mp3" download="La terreur vue des deux côtés de Jérusalem">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.10.2015-ITEMA_20821599-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-predire-un-cancer">Prédire un cancer</a></h2>
<p>Mon Oct 19 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:23 - Le zoom de la rédaction - A l'occasion d'Octobre Rose pour lutter contre le cancer du sein, zoom sur la médecine prédictive. La science peut de plus en plus nous dire à quels risques nos gènes nous exposent. Objectif : se soigner en prévention.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.10.2015-ITEMA_20820734-0.mp3" download="Prédire un cancer">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.10.2015-ITEMA_20820734-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-musee-de-lhomme-la-metamorphose">Musée de l'Homme : la métamorphose</a></h2>
<p>Fri Oct 16 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - L'Homme évolue, son musée aussi! C'est le slogan du Nouveau Musée de l'Homme qui rouvre métamorphosé, ce samedi 17 octobre à Paris. Vieux, vétuste, il renait entièrement rénové, lumineux, après six ans de travaux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.10.2015-ITEMA_20819010-0.mp3" download="Musée de l'Homme : la métamorphose">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.10.2015-ITEMA_20819010-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-douze-jours-dans-la-peau-dun-refugie-les-rails-les-camps-puis-lasil">Douze jours dans la peau d'un réfugié : les rails, les camps, puis l'asile</a></h2>
<p>Thu Oct 15 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - Quatrième et dernier volet de notre série de reportages exceptionnels sur le périple d'une famille de réfugiés syriens depuis le sud de la Turquie jusqu'en Europe. Omar Ouahmane, correspondant de France Inter au Liban, l’a suivie pendant douze jours.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.10.2015-ITEMA_20818159-0.mp3" download="Douze jours dans la peau d'un réfugié : les rails, les camps, puis l'asile">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.10.2015-ITEMA_20818159-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-douze-jours-dans-la-peau-d-un-refugie-premieres-desillusions">Douze jours dans la peau d’un réfugié : premières désillusions</a></h2>
<p>Wed Oct 14 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - Troisième épisode d'une série de reportages exceptionnels sur le voyage d'une famille syrienne depuis le sud de la Turquie jusqu'en Europe. Omar Ouahmane, correspondant de France Inter au Liban, l’a suivie pendant douze jours à travers sept pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.10.2015-ITEMA_20817306-0.mp3" download="Douze jours dans la peau d’un réfugié : premières désillusions">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.10.2015-ITEMA_20817306-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-douze-jours-dans-la-peau-dun-refugie-la-traversee-nocturne-vers-chi">Douze jours dans la peau d'un réfugié : la traversée nocturne vers Chios</a></h2>
<p>Tue Oct 13 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:41 - Le zoom de la rédaction - Deuxième épisode d'une série de reportages exceptionnels sur le voyage d'une famille syrienne depuis le sud de la Turquie jusqu'en Europe. Omar Ouahmane, correspondant de France Inter au Liban, l'a suivie pendant douze jours à travers sept pays.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.10.2015-ITEMA_20816462-0.mp3" download="Douze jours dans la peau d'un réfugié : la traversée nocturne vers Chios">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.10.2015-ITEMA_20816462-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 12.10.2015</a></h2>
<p>Mon Oct 12 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.10.2015-ITEMA_20815610-0.mp3" download="Reporters 12.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.10.2015-ITEMA_20815610-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 09.10.2015</a></h2>
<p>Fri Oct 09 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.10.2015-ITEMA_20813917-0.mp3" download="Reporters 09.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.10.2015-ITEMA_20813917-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 08.10.2015</a></h2>
<p>Thu Oct 08 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:18 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.10.2015-ITEMA_20813081-0.mp3" download="Reporters 08.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.10.2015-ITEMA_20813081-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 07.10.2015</a></h2>
<p>Wed Oct 07 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.10.2015-ITEMA_20812251-0.mp3" download="Reporters 07.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.10.2015-ITEMA_20812251-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 06.10.2015</a></h2>
<p>Tue Oct 06 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:49 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.10.2015-ITEMA_20811419-0.mp3" download="Reporters 06.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.10.2015-ITEMA_20811419-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 05.10.2015</a></h2>
<p>Mon Oct 05 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:12 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.10.2015-ITEMA_20810579-0.mp3" download="Reporters 05.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.10.2015-ITEMA_20810579-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 02.10.2015</a></h2>
<p>Fri Oct 02 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.10.2015-ITEMA_20808928-0.mp3" download="Reporters 02.10.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.10.2015-ITEMA_20808928-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-numerique-au-secours-du-monde-agricole-en-crise">Le numérique au secours du monde agricole en crise ?</a></h2>
<p>Thu Oct 01 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - Après un été marqué par les manifestations des éleveurs et des agriculteurs, Stéphane Le Foll reçoit cet après-midi au ministère de l'Agriculture les producteurs de lait. Une des solutions pourrait être d’accélérer la numérisation des exploitations…</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.10.2015-ITEMA_20808112-0.mp3" download="Le numérique au secours du monde agricole en crise ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.10.2015-ITEMA_20808112-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-encadrer-leconomie-collaborative">Comment encadrer l'économie collaborative ?</a></h2>
<p>Wed Sep 30 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - L'économie du partage est aujourd'hui montrée du doigt pour échapper à la fiscalité et à la protection sociale à laquelle sont soumis tous les professionnels et le législateur. Les sénateurs ont donc décidé de s'attaquer à la question</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.09.2015-ITEMA_20807297-0.mp3" download="Comment encadrer l'économie collaborative ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.09.2015-ITEMA_20807297-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-poker-menteur-autour-dadidas">Poker menteur autour d'Adidas</a></h2>
<p>Tue Sep 29 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - La cour d'appel de Paris se replonge aujourd'hui dans la revente d'Adidas par le Crédit Lyonnais en 1993. Bernard Tapie clame qu'il a été volé, mais sa une version est mise à mal par l'enquête pénale.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.09.2015-ITEMA_20806474-0.mp3" download="Poker menteur autour d'Adidas">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.09.2015-ITEMA_20806474-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-fn-a-la-conquete-du-monde-etudiant">Le FN à la conquête du monde étudiant</a></h2>
<p>Mon Sep 28 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - Des étudiants de Sciences Po Paris veulent y créer une antenne du Front national. Pour obtenir ce statut, ils doivent convaincre 120 étudiants (sur 10.000). Le vote est prévu à la fin de la semaine.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.09.2015-ITEMA_20805639-0.mp3" download="Le FN à la conquête du monde étudiant">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.09.2015-ITEMA_20805639-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-fraude-a-la-secu-dans-les-maisons-de-retraite">Fraude à la Sécu dans les maisons de retraite</a></h2>
<p>Fri Sep 25 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Dans son dernier rapport daté du 15 septembre 2015, la Cour des Comptes dénonce un système d’escroquerie à la Sécurité Sociale dans les maisons de retraite.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.09.2015-ITEMA_20803976-0.mp3" download="Fraude à la Sécu dans les maisons de retraite">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.09.2015-ITEMA_20803976-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-refugies-syriens-installes-au-liban">Les réfugiés syriens installés au Liban</a></h2>
<p>Thu Sep 24 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:14 - Le zoom de la rédaction - Officiellement 1,2 millions de Syriens ont trouvé refuge dans le pays du Cèdre, soit un quart de la population libanaise. Les ONG essaient d'aider les plus fragiles, notamment les blessés de guerre qui vivent dans des conditions de plus en plus précaires</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.09.2015-ITEMA_20803138-0.mp3" download="Les réfugiés syriens installés au Liban">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.09.2015-ITEMA_20803138-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Restera-t-il à manger en 2050 ?</a></h2>
<p>Wed Sep 23 2015 08:37:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:23 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.09.2015-ITEMA_20802260-0.mp3" download="Restera-t-il à manger en 2050 ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.09.2015-ITEMA_20802260-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-abattez-les-forets-vous-recolterez-le-desert">Abattez les forêts, vous récolterez le désert</a></h2>
<p>Wed Sep 23 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:23 - Le zoom de la rédaction - Le Kenya, pays sec : 80% de zones arides ou semi arides. Et ça ne s'arrange pas. Dans le Nord du pays, partie la plus touchée, un combat commence : protéger une forêt, seule source d'eau de la région.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.09.2015-ITEMA_20802260-1.mp3" download="Abattez les forêts, vous récolterez le désert">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.09.2015-ITEMA_20802260-1.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-et-la-mixite-sociale-dans-tout-ca">Et la mixité sociale dans tout ça ?</a></h2>
<p>Tue Sep 22 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - La mixité et le financement du logement social seront au coeur du 76 eme Congres de l'Union Sociale pour l'Habitat (représentant les bailleurs sociaux) à Montpellier à partir d'aujourd'hui en présence de François Hollande.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.09.2015-ITEMA_20801466-0.mp3" download="Et la mixité sociale dans tout ça ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.09.2015-ITEMA_20801466-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-tunisie-mornes-plages">Tunisie : mornes plages</a></h2>
<p>Mon Sep 21 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Depuis l'attentat qui a fait 38 morts en juin dernier, les plages de Sousse en Tunisie ne se sont pas repeuplées. Les hôtels ferment les uns après les autres.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.09.2015-ITEMA_20800656-0.mp3" download="Tunisie : mornes plages">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.09.2015-ITEMA_20800656-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-conferences-un-marche-a-prix-dor">Les conférences : un marché à prix d'or</a></h2>
<p>Fri Sep 18 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:38 - Le zoom de la rédaction - Le marché lucratif des conférences : sportifs reconvertis, philosophes médiatiques, responsables politiques et même journalistes.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.09.2015-ITEMA_20799055-0.mp3" download="Les conférences : un marché à prix d'or">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.09.2015-ITEMA_20799055-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-premiere-greve-des-profs-depuis-la-rentree">Première grève des profs depuis la rentrée</a></h2>
<p>Thu Sep 17 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - Les enseignants sont appelés à faire grève contre la réforme du collège aujourd'hui. Cet appel à la grève est lancé par les syndicats FSU, SNALC, FO et CGT.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.09.2015-ITEMA_20798245-0.mp3" download="Première grève des profs depuis la rentrée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.09.2015-ITEMA_20798245-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-suede-bienvenue-aux-refugies">Suède : Bienvenue aux réfugiés !</a></h2>
<p>Wed Sep 16 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Manuel Valls est en visite en Suède demain, pays européen le plus hospitalier avec les migrants. La Suède devrait accueillir cette année 90 000 réfugiés.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.09.2015-ITEMA_20797475-0.mp3" download="Suède : Bienvenue aux réfugiés !">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.09.2015-ITEMA_20797475-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-netflix-un-an-apres">Netflix, un an après</a></h2>
<p>Tue Sep 15 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:10 - Le zoom de la rédaction - Beaucoup le présentait comme un bulldozer, un raz de marée. Un an après l'arrivée en France du service américain de vidéo à la demande par abonnement, c'est l'heure d'un premier bilan.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.09.2015-ITEMA_20796674-0.mp3" download="Netflix, un an après">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.09.2015-ITEMA_20796674-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lallemagne-souhaite-donner-du-travail-aux-migrants">L'Allemagne souhaite donner du travail aux migrants</a></h2>
<p>Mon Sep 14 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - Donner du travail aux réfugiés : c’est le prochain grand défi de l’Allemagne, qui s’apprête à accueillir cette année un nombre record de demandeurs d’asile. Employer des migrants, C'est ce que souhaite le patronat allemand.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.09.2015-ITEMA_20795774-0.mp3" download="L'Allemagne souhaite donner du travail aux migrants">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.09.2015-ITEMA_20795774-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-dessous-de-la-vente-dalstom-a-general-electric">Les dessous de la vente d'Alstom à General Electric</a></h2>
<p>Fri Sep 11 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - Alors que la Commission Européenne a donné le 8 septembre son feu vert au rachat d’Alstom (70 % de l’entreprise) par la compagnie américaine General Electric, retour sur les dessous de cette opération.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.09.2015-ITEMA_20794267-0.mp3" download="Les dessous de la vente d'Alstom à General Electric">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.09.2015-ITEMA_20794267-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-laffluence-dans-les-centres-des-impots">L'affluence dans les centres des impôts</a></h2>
<p>Thu Sep 10 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Réformé à maintes reprises, l'impôt sur le revenu est devenu illisible pour de nombreux Français.
Alors que les avis d'imposition pour 2016 arrivent en ce moment dans les boîtes aux lettres, les contribuables se ruent dans leur centre des impôts.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.09.2015-ITEMA_20793533-0.mp3" download="L'affluence dans les centres des impôts">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.09.2015-ITEMA_20793533-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 09.09.2015</a></h2>
<p>Wed Sep 09 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:20 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.09.2015-ITEMA_20792797-0.mp3" download="Reporters 09.09.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.09.2015-ITEMA_20792797-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-smart-revient-aux-39-heures">Smart revient aux 39 heures</a></h2>
<p>Tue Sep 08 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - Les 35 heures hebdomadaires restent la durée légale du travail. Mais les dérogations pourront être plus nombreuses comme l'a annoncé le Président de la République. A Hambach en Moselle, l'usine Smart propose déjà à ses salariés un retour aux 39 heures.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.09.2015-ITEMA_20791906-0.mp3" download="Smart revient aux 39 heures">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.09.2015-ITEMA_20791906-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-qui-sont-les-derniers-soutiens-de-francois-hollande">Qui sont les derniers soutiens de François Hollande ?</a></h2>
<p>Mon Sep 07 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - François Hollande tient ce lundi sa sixième conférence de presse à l'Elysée. Parmi les militants, certains doutent, quand d’autres soutiennent le président contre vents et marées. Cyril Graziani est allé à leur rencontre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.09.2015-ITEMA_20791160-0.mp3" download="Qui sont les derniers soutiens de François Hollande ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.09.2015-ITEMA_20791160-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-espionnage-industriel-la-guerre-invisible">Espionnage industriel, la guerre invisible</a></h2>
<p>Fri Sep 04 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:28 - Le zoom de la rédaction - Depuis la mondialisation et le développement des nouvelles technologies, l’espionnage industriel s’est développé, et il a changé de nature. Pénétrer dans les serveurs informatiques est devenu banal, et rares sont les grosses sociétés qui y échappent.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.09.2015-ITEMA_20789817-0.mp3" download="Espionnage industriel, la guerre invisible">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.09.2015-ITEMA_20789817-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-crise-du-porc-le-modele-allemand">Crise du porc : le modèle allemand</a></h2>
<p>Thu Sep 03 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - Les agriculteurs en colère manifestent aujourd’hui à Paris. Parmi les plus touchs, les producteurs de porc. Ils font face à la concurrence de l’Espagne et surtout de l’Allemagne, premier producteur de porc en Europe, et premier exportateur.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.09.2015-ITEMA_20789196-0.mp3" download="Crise du porc : le modèle allemand">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.09.2015-ITEMA_20789196-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-seine-saint-denis-un-an-apres-une-rentree-catastrophique">La Seine-Saint-Denis, un an après une rentrée "catastrophique"</a></h2>
<p>Wed Sep 02 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:27 - Le zoom de la rédaction - La rentrée scolaire 2014 avait été qualifiée de &quot;catastrophique&quot; par les parents d'élèves, les enseignants et la mairie : près de 500 élèves sans enseignant ! Cette année, un dispositif de &quot;contrôle citoyen&quot; a été mis en place.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.09.2015-ITEMA_20788651-0.mp3" download="La Seine-Saint-Denis, un an après une rentrée "catastrophique"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.09.2015-ITEMA_20788651-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-debuts-difficiles-mais-prometteurs-pour-le-co-voiturage-de-proximit">Débuts difficiles mais prometteurs pour le co-voiturage de proximité</a></h2>
<p>Tue Sep 01 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:16 - Le zoom de la rédaction - Comment réduire la galère du trajet domicile-travail ? Le co-voiturage est une alternative que les collectivités territoriales encouragent. La SNCF a par ailleurs, lancé sa propre plate-forme, alors que la RATP est partenaire d'une application mobile.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.09.2015-ITEMA_20788128-0.mp3" download="Débuts difficiles mais prometteurs pour le co-voiturage de proximité">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.09.2015-ITEMA_20788128-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-a-kos-la-difficile-cohabitation-entre-touristes-et-refugies">A Kos, la difficile cohabitation entre touristes et réfugiés</a></h2>
<p>Mon Aug 31 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:04 - Le zoom de la rédaction - Kos est une ile grecque avec ses plages, ses antiquités, ses pistes cyclables mais le flux des migrants porte un coup à son image c’est ce que dit le maire qui utilise tout les moyens pour chasser les réfugiés mais qu‘en pensent les touristes ?</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.08.2015-ITEMA_20787649-0.mp3" download="A Kos, la difficile cohabitation entre touristes et réfugiés">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.08.2015-ITEMA_20787649-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-terrorisme-qui-finance">Terrorisme : qui finance ?</a></h2>
<p>Fri Aug 28 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:07 - Le zoom de la rédaction - Comment repérer des terroristes qui, pour acheter leurs armes, n’ont parfois besoin que de quelques centaines d’euros ? Une première réponse sera apportée mardi avec l’entrée en vigueur de l’interdiction des règlements de plus de 1000 euros en espèce.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.08.2015-ITEMA_20786714-0.mp3" download="Terrorisme : qui finance ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.08.2015-ITEMA_20786714-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 27.08.2015</a></h2>
<p>Thu Aug 27 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:06 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.08.2015-ITEMA_20786286-0.mp3" download="Reporters 27.08.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.08.2015-ITEMA_20786286-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-refugies-face-au-nouveau-rideau-de-fer-hongrois">Les réfugiés face au nouveau rideau de fer hongrois</a></h2>
<p>Wed Aug 26 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:35 - Le zoom de la rédaction - A la frontière entre la Hongrie et la Serbie, de plus en plus de migrants se rassemblent, pour tenter de gagner l’Europe. Pour les stopper, le gouvernement hongrois construit depuis un mois et demi un gigantesque mur.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.08.2015-ITEMA_20785853-0.mp3" download="Les réfugiés face au nouveau rideau de fer hongrois">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.08.2015-ITEMA_20785853-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comparutions-immediates-la-contestation-des-avocats">Comparutions immédiates, la contestation des avocats</a></h2>
<p>Tue Aug 25 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - A la 23e chambre correctionnelle du tribunal de Paris on juge les comparutions immédiates, des procédure express au terme des gardes à vue. Des avocats du barreau de Paris dénoncent une &quot;justice d'abattage&quot;</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.08.2015-ITEMA_20785272-0.mp3" download="Comparutions immédiates, la contestation des avocats">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.08.2015-ITEMA_20785272-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-migrants-les-nouvelles-mesures-de-securite-autour-deurotunnel-peuve">Migrants : les nouvelles mesures de sécurité autour d'Eurotunnel peuvent-elles désengorger Calais ?</a></h2>
<p>Mon Aug 24 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:36 - Le zoom de la rédaction - Les gouvernements britanniques et français ont annoncé dix millions d'euros supplémentaires sur deux ans pour renforcer la sécurité autour du port de Calais et d'Eurotunnel mais aussi pour aider les associations d'aide aux migrants.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.08.2015-ITEMA_20784832-0.mp3" download="Migrants : les nouvelles mesures de sécurité autour d'Eurotunnel peuvent-elles désengorger Calais ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.08.2015-ITEMA_20784832-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-une-chaise-francaise-a-lassaut-des-etats-unis-et-meme-de-la-chine">Une chaise française à l'assaut des Etats-Unis et même de la Chine</a></h2>
<p>Fri Aug 21 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:59 - Le zoom de la rédaction - Cette chaise a 125 ans. Vous l'avez peut-être aperçue dans les jardins du Luxembourg à Paris, sur le port de Marseille ou à New-York. En lui donnant de la couleur, l'entreprise Fermob en a vendu trois millions d’exemplaires à travers le monde.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.08.2015-ITEMA_20784119-0.mp3" download="Une chaise française à l'assaut des Etats-Unis et même de la Chine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.08.2015-ITEMA_20784119-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lexcellence-francaise-dans-le-domaine-de-la-robotique">L'excellence française dans le domaine de la robotique</a></h2>
<p>Thu Aug 20 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:12 - Le zoom de la rédaction - A Auxerre dans l'Yonne, visite de l'entreprise RB3D qui fabrique des exosquelettes, ce sont en quelque sorte des robots d'assistance à l'effort, des armatures qui démultiplient la force humaine.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.08.2015-ITEMA_20783829-0.mp3" download="L'excellence française dans le domaine de la robotique">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.08.2015-ITEMA_20783829-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quitte-a-faire-des-casseroles-la-france-produit-du-haut-de-gamme">Quitte à faire des casseroles, la France produit du haut de gamme</a></h2>
<p>Wed Aug 19 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:08 - Le zoom de la rédaction - A Feshes-le-Châtel dans le Doubs, l'on fabrique des articles culinaires haut de gamme. Une histoire vieille de près de deux siècles qui s'est renouvelé il y a 30 ans, lorsqu'un couple a repris l'entreprise</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.08.2015-ITEMA_20783570-0.mp3" download="Quitte à faire des casseroles, la France produit du haut de gamme">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.08.2015-ITEMA_20783570-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-le-social-gaming-specialite-francaise">Le social gaming, spécialité française ?</a></h2>
<p>Tue Aug 18 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:56 - Le zoom de la rédaction - Suite de nos zooms consacrés au made in France. Aujourd’hui on parle jeux vidéo et social gaming dont l'un des champions français s'appelle RoyalCactus. 1,5 millions d'euro de chiffre d'affaire l'an dernier et une entreprise qui se développe dans 20 pays</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.08.2015-ITEMA_20783303-0.mp3" download="Le social gaming, spécialité française ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.08.2015-ITEMA_20783303-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lexcellence-francaise-et-la-dentelle-de-caudry">L'excellence française et la dentelle de Caudry</a></h2>
<p>Mon Aug 17 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:01 - Le zoom de la rédaction - Gros plan ce matin, sur la dentelle de Caudry, dans le Pas de Calais et la manufacture Sophie Hallette. Une vieille maison, bien connue dans le milieu de la mode qui a fourni, par exemple, la dentelle qui ornait la robe de mariée de Kate Middleton</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.08.2015-ITEMA_20783031-0.mp3" download="L'excellence française et la dentelle de Caudry">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.08.2015-ITEMA_20783031-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-sauver-les-oiseaux-dans-le-massif-du-luberon">Sauver les oiseaux dans le massif du Luberon</a></h2>
<p>Fri Aug 14 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Dernier volet du zoom de la rédaction consacré cette semaine au bénévolat. Direction ce matin le Vaucluse et le Centre de protection de la faune sauvage que gère la Ligue pour la protection des oiseaux.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.08.2015-ITEMA_20782481-0.mp3" download="Sauver les oiseaux dans le massif du Luberon">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.08.2015-ITEMA_20782481-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-accueillir-des-enfants-lete-et-en-etre-aussi-heureux-queux">Accueillir des enfants l'été et en être aussi heureux qu'eux</a></h2>
<p>Thu Aug 13 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:44 - Le zoom de la rédaction - Pour la quatrième année consécutive, Emmanuelle, maman de trois garçons, accueille pendant 15 jours deux petits parisiens envoyés par le Secours populaire, car leur famille n'a pas les moyens de les emmener en vacances.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.08.2015-ITEMA_20782251-0.mp3" download="Accueillir des enfants l'été et en être aussi heureux qu'eux">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.08.2015-ITEMA_20782251-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-aider-les-enfants-chiffonniers-du-cambodge">Aider les enfants chiffonniers du Cambodge</a></h2>
<p>Wed Aug 12 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:13 - Le zoom de la rédaction - 180 bénévoles vont consacrer cinq semaines de leur temps pour occuper des enfants et éviter qu'ils soient livrés à eux mêmes lorsque les écoles ferment</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.08.2015-ITEMA_20782003-0.mp3" download="Aider les enfants chiffonniers du Cambodge">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.08.2015-ITEMA_20782003-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-croix-rouge-a-cheval">La Croix-Rouge à cheval</a></h2>
<p>Tue Aug 11 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:17 - Le zoom de la rédaction - Cette semaine France Inter s’intéresse aux bénévoles de l'été. Aujourd'hui nous suivons deux secouristes. Ils ne partent pas soigner des enfants à l'autre bout du monde, eux ont choisi d'être bénévoles en France, mais à dos de cheval.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.08.2015-ITEMA_20781751-0.mp3" download="La Croix-Rouge à cheval">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.08.2015-ITEMA_20781751-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-aider-les-personnes-agees-et-isolees">Aider les personnes âgées et isolées</a></h2>
<p>Mon Aug 10 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:09 - Le zoom de la rédaction - Quelques heures passées avec une personne âgée, ça peut être aussi important pour celle qui donne son temps, que pour celle reçoit. C’est l'expérience que fait à Lyon Sophia Jlit, une jeune bénévole</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.08.2015-ITEMA_20781518-0.mp3" download="Aider les personnes âgées et isolées">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.08.2015-ITEMA_20781518-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-porquerolles-se-demande-sil-ne-faut-pas-restreindre-son-acces-aux-t">Porquerolles se demande s'il ne faut pas restreindre son accès aux touristes</a></h2>
<p>Fri Aug 07 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:45 - Le zoom de la rédaction - Dernière étape ce matin à Porquerolles, dans le Var. Un île de rêve qui attire près d'un million de touristes par an pour 300 habitants à l'année. Ce succès pèse sur l'île, à tel point que certains se demandent s'il ne faudrait pas en filtrer l'accès</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.08.2015-ITEMA_20780975-0.mp3" download="Porquerolles se demande s'il ne faut pas restreindre son accès aux touristes">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.08.2015-ITEMA_20780975-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-iles-de-lestuaire-de-la-gironde">Les îles de l'estuaire de la Gironde</a></h2>
<p>Thu Aug 06 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:44 - Le zoom de la rédaction - Cap sur l'estuaire de la Gironde, où sept îles parsèment les 75 kilomètres de fleuve. Une seule est habitée et une autre accueille les touristes pour faire vivre l'histoire de cet estuaire</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-06.08.2015-ITEMA_20780748-0.mp3" download="Les îles de l'estuaire de la Gironde">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-06.08.2015-ITEMA_20780748-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lile-de-brehat-surnommee-lile-aux-fleurs">L'île de Bréhat, surnommée l'île aux fleurs</a></h2>
<p>Wed Aug 05 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:51 - Le zoom de la rédaction - Il sont 300 à vivre pendant l'année sur l'Ile au large de Paimpol, mais l'été, en comptant les résidences secondaires et les vacanciers qui viennent pour la journée, 8.000 personnes en moyenne foulent chaque jour le sol de ce petit caillou de 3 km2</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-05.08.2015-ITEMA_20780448-0.mp3" download="L'île de Bréhat, surnommée l'île aux fleurs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-05.08.2015-ITEMA_20780448-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-transition-energetique-divise-les-habitants-de-lile-de-sein">La transition énergétique divise les habitants de l'île de Sein</a></h2>
<p>Tue Aug 04 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - Direction l’île de Sein, au bout de la Bretagne. 140 habitants qui vivent dans le calme et la sérénité, enfin presque... car sur l’île, l’électricité est produite par des groupes électrogènes qui engloutissent 420.000 litres de fioul par an.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-04.08.2015-ITEMA_20780214-0.mp3" download="La transition énergétique divise les habitants de l'île de Sein">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-04.08.2015-ITEMA_20780214-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-transition-energetique-divise-les-habitants-de-lile-de-sein">La transition énergétique divise les habitants de l'île de Sein</a></h2>
<p>Mon Aug 03 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:48 - Le zoom de la rédaction - Direction l’île de Sein, au bout de la Bretagne. 140 habitants qui vivent dans le calme et la sérénité, enfin presque... car sur l’île, l’électricité est produite par des groupes électrogènes qui engloutissent 420.000 litres de fioul par an.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.08.2015-ITEMA_20779983-0.mp3" download="La transition énergétique divise les habitants de l'île de Sein">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.08.2015-ITEMA_20779983-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quartiers-dete-a-clichy-sous-bois">Quartiers d'été à Clichy-sous-Bois</a></h2>
<p>Fri Jul 31 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:13 - Le zoom de la rédaction - Cette semaine, les zooms de la rédaction sont consacrés à la vie dans des quartiers réputés sensibles. Aurélien Colly nous emmène à Clichy-sous-Bois où des hommes, des femmes déploient leur énergie pour changer le quotidien.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-31.07.2015-ITEMA_20779438-0.mp3" download="Quartiers d'été à Clichy-sous-Bois">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-31.07.2015-ITEMA_20779438-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quartiers-dete-a-toulouse">Quartiers d'été à Toulouse</a></h2>
<p>Thu Jul 30 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:58 - Le zoom de la rédaction - Cette semaine, les zooms de la rédaction sont consacrés à la vie dans les quartiers, l'été. Tout le monde n'a pas les moyens de partir en vacances. Corinne Cutilla nous fait visiter ce matin le quartier des Izards à Toulouse.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.07.2015-ITEMA_20779212-0.mp3" download="Quartiers d'été à Toulouse">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.07.2015-ITEMA_20779212-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quartiers-dete-a-roubaix">Quartiers d'été à Roubaix</a></h2>
<p>Wed Jul 29 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:10 - Le zoom de la rédaction - Cette semaine, les zooms de la rédaction sont consacrés à la vie dans les quartiers, l'été. Tout le monde n'a pas les moyens de partir en vacances. Mathilde Dehimi nous fait visiter ce matin le quartier de l'Alma à Roubaix.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.07.2015-ITEMA_20778965-0.mp3" download="Quartiers d'été à Roubaix">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.07.2015-ITEMA_20778965-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quartiers-dete-a-strasbourg">Quartiers d'été à Strasbourg</a></h2>
<p>Tue Jul 28 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:07 - Le zoom de la rédaction - Direction Strasbourg et le quartier du Neuhof, avec ses 12.000 habitants, réputé notamment pour ses voitures brulées à la Saint Sylvestre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-28.07.2015-ITEMA_20778716-0.mp3" download="Quartiers d'été à Strasbourg">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-28.07.2015-ITEMA_20778716-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quartiers-dete-a-tremblay-en-france">Quartiers d'été à Tremblay-en-France</a></h2>
<p>Mon Jul 27 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:56 - Le zoom de la rédaction - France Inter vous emmène, cette semaine, visiter plusieurs quartiers de nos grandes villes et leurs initiatives estivales. Aujourd'hui Tremblay-en-France et ses chantiers citoyens, ou comment être utiles à la ville tout en exerçant son premier emploi</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-27.07.2015-ITEMA_20778482-0.mp3" download="Quartiers d'été à Tremblay-en-France">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-27.07.2015-ITEMA_20778482-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 24.07.2015</a></h2>
<p>Fri Jul 24 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:17 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.07.2015-ITEMA_20777834-0.mp3" download="Reporters 24.07.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.07.2015-ITEMA_20777834-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-traversee-dayews-jusqua-lampedusa">La traversée d'Ayews jusqu'à Lampedusa</a></h2>
<p>Thu Jul 23 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:46 - Le zoom de la rédaction - Depuis le début de l’année, près de 56000 migrants ont débarqué par la mer sur les côtes italiennes. La plupart d’entre eux viennent de Syrie, d’Erythrée et veulent rejoindre de la famille installée dans d’autres pays de l’UE (en Allemagne ou en Suède).</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.07.2015-ITEMA_20777585-0.mp3" download="La traversée d'Ayews jusqu'à Lampedusa">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.07.2015-ITEMA_20777585-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-ukrainiens-refugies-en-russie">Les Ukrainiens réfugiés en Russie</a></h2>
<p>Wed Jul 22 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:14 - Le zoom de la rédaction - Le bilan de la guerre civile dans l’Est de l’Ukraine, depuis avril 2014, est de 6.500 morts. Au printemps de l’année dernière, il n’a pas fallu longtemps pour passer de la contestation politique, à la violence.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.07.2015-ITEMA_20777343-0.mp3" download="Les Ukrainiens réfugiés en Russie">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.07.2015-ITEMA_20777343-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-portraits-de-migrants-virginia-lituanienne-de-peterborough">Portraits de migrants : Virginia, Lituanienne de Peterborough</a></h2>
<p>Tue Jul 21 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:19 - Le zoom de la rédaction - On part aujourd’hui en Grande-Bretagne, où le solde migratoire est en forte hausse depuis quelques années. Il s’agit d’un sujet brûlant qui rejoint le débat sur l’Europe.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-21.07.2015-ITEMA_20777100-0.mp3" download="Portraits de migrants : Virginia, Lituanienne de Peterborough">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-21.07.2015-ITEMA_20777100-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lallemagne-destination-n-1-des-migrants-en-europe">L'Allemagne, destination N°1 des migrants en Europe</a></h2>
<p>Mon Jul 20 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - Première économie européenne, l’Allemagne est devenue la principale destination pour les migrants dans l’UE. Parmi eux, beaucoup de Syriens fuyant la guerre civile. À Berlin, Cyril Sauvageot a rencontré une famille syrienne en voie d’intégration.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-20.07.2015-ITEMA_20776819-0.mp3" download="L'Allemagne, destination N°1 des migrants en Europe">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-20.07.2015-ITEMA_20776819-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 17.07.2015</a></h2>
<p>Fri Jul 17 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:49 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.07.2015-ITEMA_20776286-0.mp3" download="Reporters 17.07.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.07.2015-ITEMA_20776286-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-dans-les-pas-de-little-foot">Dans les pas de Little Foot</a></h2>
<p>Thu Jul 16 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:06:09 - Le zoom de la rédaction - Il y a 21 ans, Ron Clarke, paléoantrhopologue sud africain a découvert ce fossile. Quatre petits os d'un pied mis de côté dans une boite ont conduit le scientifique à chercher le reste du squelette. Aujourd'hui il est complet et exceptionnel.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.07.2015-ITEMA_20776062-0.mp3" download="Dans les pas de Little Foot">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.07.2015-ITEMA_20776062-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-roissy-dans-les-coulisses-des-departs-en-vacances">Roissy : dans les coulisses des départs en vacances</a></h2>
<p>Wed Jul 15 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:19 - Le zoom de la rédaction - L'aéroport de Roissy-Charles-de-Gaulle, plus grand aéroport français, se transforme en véritable ruche en juillet et en août. A cette époque, le nombre de passagers se compte en millions.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.07.2015-ITEMA_20775821-0.mp3" download="Roissy : dans les coulisses des départs en vacances">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.07.2015-ITEMA_20775821-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-loperation-sentinelle-a-lhonneur-sur-les-champs">L'opération Sentinelle à l'honneur sur les Champs</a></h2>
<p>Tue Jul 14 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - C’est aujourd'hui le centièmme défilé militaire sur les Champs Elysées, avec comme invité d'honneur le Mexique. Un hommage est également rendu aux forces d'intervention et de protection du territoire, six mois après les attentats de janvier dernier.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-14.07.2015-ITEMA_20775595-0.mp3" download="L'opération Sentinelle à l'honneur sur les Champs">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-14.07.2015-ITEMA_20775595-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 13.07.2015</a></h2>
<p>Mon Jul 13 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:06:19 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-13.07.2015-ITEMA_20775353-0.mp3" download="Reporters 13.07.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-13.07.2015-ITEMA_20775353-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.com">Reporters 10.07.2015</a></h2>
<p>Fri Jul 10 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:05:22 - Le zoom de la rédaction -</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.07.2015-ITEMA_20774788-0.mp3" download="Reporters 10.07.2015">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.07.2015-ITEMA_20774788-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-der-des-ders-a-chalons-en-champagne">La "der des ders" à Châlons-en-Champagne</a></h2>
<p>Thu Jul 09 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:26 - Le zoom de la rédaction - La ville de garnison de Châlons-en-Champagne, dans le département de la Marne, perd son régiment militaire cet été et sa préfecture de région en janvier prochain. Cela représente un vrai big-bang pour cette ville de 45.000 habitants.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.07.2015-ITEMA_20774547-0.mp3" download="La "der des ders" à Châlons-en-Champagne">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.07.2015-ITEMA_20774547-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-une-idee-vacances-lamazon-tour-en-famille">Une idée vacances : l'Amazon Tour en famille</a></h2>
<p>Wed Jul 08 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:59 - Le zoom de la rédaction - Pourquoi ne pas profiter de ses vacances pour visiter une ancienne mine ou une savonnerie ? Le tourisme industriel est à la mode. Cette année, le géant américain Amazon ouvre les portes de ses entrepôts français. Bienvenue dans l'Amazon Tour à Montélimar.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.07.2015-ITEMA_20774315-0.mp3" download="Une idée vacances : l'Amazon Tour en famille">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.07.2015-ITEMA_20774315-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quand-la-presse-entre-en-prison">Quand la presse entre en prison</a></h2>
<p>Tue Jul 07 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:31 - Le zoom de la rédaction - Depuis 2000, députés et sénateurs ont accès à tous les établissements pénitentiaires. Avec la loi sur la presse promulguée en avril dernier, les journalistes ont désormais le droit de les accompagner. Reportage à Fleury-Mérogis, dans l'Essonne.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-07.07.2015-ITEMA_20774061-0.mp3" download="Quand la presse entre en prison">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-07.07.2015-ITEMA_20774061-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-nucleaire-quand-liran-retient-son-souffle">Nucléaire : quand l'Iran retient son souffle</a></h2>
<p>Fri Jul 03 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:56 - Le zoom de la rédaction - L’accord sur le nucléaire entre l’Iran et les grandes puissances doit être bouclé le 7 juillet. L'enjeu est considérable pour le peuple iranien qui subit de plein fouet les sanctions internationales. Reportage de notre envoyé spécial Christian Chesnot.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-03.07.2015-ITEMA_20773229-0.mp3" download="Nucléaire : quand l'Iran retient son souffle">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-03.07.2015-ITEMA_20773229-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-nucleaire-quand-liran-retient-son-souffle">Nucléaire : quand l'Iran retient son souffle</a></h2>
<p>Thu Jul 02 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - L’accord sur le nucléaire entre l’Iran et les grandes puissances doit être bouclé le 7 juillet. L'enjeu est considérable pour le peuple iranien qui subit de plein fouet les sanctions internationales. Reportage de notre envoyé spécial Christian Chesnot.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-02.07.2015-ITEMA_20772945-0.mp3" download="Nucléaire : quand l'Iran retient son souffle">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-02.07.2015-ITEMA_20772945-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-urgences-la-semaine-de-48-heures">Urgences : la semaine de 48 heures</a></h2>
<p>Wed Jul 01 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:21 - Le zoom de la rédaction - Le statut des médecins urgentistes change ce 1er juillet, un changement de statut obtenu après une courte grève à la fin de l'année dernière.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-01.07.2015-ITEMA_20772668-0.mp3" download="Urgences : la semaine de 48 heures">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-01.07.2015-ITEMA_20772668-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-faut-il-creer-un-statut-dassistant-sexuel-pour-handicapes">Faut-il créer un statut d'assistant sexuel pour handicapés ?</a></h2>
<p>Tue Jun 30 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - Même si François Hollande avait promis un vrai débat public sur le sujet en 2012, la question reste taboue. D’autant que certains voient dans ces pratiques de la prostitution déguisée.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-30.06.2015-ITEMA_20772620-0.mp3" download="Faut-il créer un statut d'assistant sexuel pour handicapés ?">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-30.06.2015-ITEMA_20772620-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lincroyable-recit-de-lunique-survivant-du-massacre-de-tikrit">L'incroyable récit de l'unique survivant du massacre de Tikrit</a></h2>
<p>Mon Jun 29 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:46 - Le zoom de la rédaction - Il y a un an à Tikrit, à 200 kms au nord de Bagdad, le groupe État islamique a assassiné près de 1 700 soldats irakiens. Poussé dans une fosse commune, Ali Hussein Khadim s'est caché au milieu de ses camarades assassinés. Il raconte...</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-29.06.2015-ITEMA_20772619-0.mp3" download="L'incroyable récit de l'unique survivant du massacre de Tikrit">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-29.06.2015-ITEMA_20772619-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-nouvelle-et-tres-couteuse-cite-judiciaire-des-batignolles">La nouvelle et très coûteuse cité judiciaire des Batignolles</a></h2>
<p>Fri Jun 26 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:29 - Le zoom de la rédaction - La future cité judiciaire des Batignolles doit ouvrir ses portes en 2017. Ce gratte-ciel de 160 mètres de haut accueillera le tribunal de Grande Instance, jusqu’ici hébergés dans l’île de la cité. Mais ce projet pose encore bien des questions.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-26.06.2015-ITEMA_20771136-0.mp3" download="La nouvelle et très coûteuse cité judiciaire des Batignolles">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-26.06.2015-ITEMA_20771136-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-les-taxis-en-guerre-contre-uberpop">Les taxis en guerre contre UberPop</a></h2>
<p>Thu Jun 25 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:47 - Le zoom de la rédaction - Une intersyndicale de taxis engage aujourd'hui un mouvement national illimité contre les services du type UberPOP. Ce mouvement pourrait notamment se traduire par des blocages ponctuels à l'abord des aéroports et des gares.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-25.06.2015-ITEMA_20770706-0.mp3" download="Les taxis en guerre contre UberPop">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-25.06.2015-ITEMA_20770706-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-passion-patrimoine">Passion patrimoine</a></h2>
<p>Wed Jun 24 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:41 - Le zoom de la rédaction - On connaît le succès des journées du Patrimoine ou des émissions de télévision sur le sujet. On le sait moins mais plus de 32.000 particuliers ont donné l'an dernier pour aider à restaurer une église, un lavoir ou un chateau.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-24.06.2015-ITEMA_20770199-0.mp3" download="Passion patrimoine">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-24.06.2015-ITEMA_20770199-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-on-est-vraiment-au-fond-du-trou">"On est vraiment au fond du trou"</a></h2>
<p>Tue Jun 23 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:22 - Le zoom de la rédaction - Reportage dans l'intimité d'une famille de la classe moyenne grecque. Depuis 2012, Mikhail est au chômage et endetté. Toute la famille vit avec les 15 000 euros annuels que sa femme gagne.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-23.06.2015-ITEMA_20769753-0.mp3" download=""On est vraiment au fond du trou"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-23.06.2015-ITEMA_20769753-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comprendre-le-changement-climatique-dans-les-glaces">Comprendre le changement climatique dans les glaces</a></h2>
<p>Mon Jun 22 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:09:26 - Le zoom de la rédaction - Et si la mémoire du climat disparaissait ? Et si les glaciers étaient amenés à fondre définitivement ? Zoom sur la glace, mémoire du climat et victime du réchauffement climatique.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-22.06.2015-ITEMA_20769314-0.mp3" download="Comprendre le changement climatique dans les glaces">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-22.06.2015-ITEMA_20769314-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-quand-les-canadiens-investissent-dans-le-gaz-de-schiste-francais">Quand les Canadiens investissent dans le gaz de schiste français</a></h2>
<p>Fri Jun 19 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:03:51 - Le zoom de la rédaction - L'installation de stockage de Vermilion à Vert-le-Grand où une fuite a été constatée le dimanche 24 mai. Il y a trois ans, Vermilion a racheté à Total quatre anciennes concessions, un rachat qui intrigue.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-19.06.2015-ITEMA_20768420-0.mp3" download="Quand les Canadiens investissent dans le gaz de schiste français">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-19.06.2015-ITEMA_20768420-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-waterloo-on-refait-la-bataille">Waterloo : on refait la bataille</a></h2>
<p>Thu Jun 18 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:33 - Le zoom de la rédaction - Il y a 200 ans tout juste éclatait la bataille de Waterloo. Les armées française, anglaise et prussienne s'affrontaient alors dans la plaine de Waterloo, située à vingt kilomètres de l'actuelle Bruxelles.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-18.06.2015-ITEMA_20768008-0.mp3" download="Waterloo : on refait la bataille">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-18.06.2015-ITEMA_20768008-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-contrainte-penale-a-un-an">La contrainte pénale a un an</a></h2>
<p>Wed Jun 17 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:53 - Le zoom de la rédaction - C'était il y a un an : l'Assemblée nationale discutait de la réforme pénale portée par Christiane Taubira. Après des débats passionnés, la loi est entrée en application en octobre, et notamment sa mesure phare : la &quot;contrainte pénale&quot;.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-17.06.2015-ITEMA_20767583-0.mp3" download="La contrainte pénale a un an">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-17.06.2015-ITEMA_20767583-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-migrants-bloques-a-la-frontiere-franco-italienne-limpasse">Migrants bloqués à la frontière franco-italienne : l'impasse</a></h2>
<p>Tue Jun 16 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - Près de 200 migrants, venus principalement de la corne de l'Afrique, sont bloqués à la frontière franco-italienne par les autorités françaises. &quot;Laissez-nous passer&quot; demandent ces migrants sans cesse repoussés vers Vintimille.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-16.06.2015-ITEMA_20767134-0.mp3" download="Migrants bloqués à la frontière franco-italienne : l'impasse">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-16.06.2015-ITEMA_20767134-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-comment-le-succes-du-rafale-beneficie-a-ses-sous-traitants">Comment le succès du Rafale bénéficie à ses sous-traitants</a></h2>
<p>Mon Jun 15 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:34 - Le zoom de la rédaction - C'est une des stars du Salon aéronautique du Bourget qui débute aujourd'hui. Le Rafale, que le groupe Dassault vient de vendre pour la première fois à l'étranger (à l'Egypte et au Qatar) pourrait être bientôt acheté par l'Inde et les Émirats Arabes Unies.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-15.06.2015-ITEMA_20766686-0.mp3" download="Comment le succès du Rafale bénéficie à ses sous-traitants">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-15.06.2015-ITEMA_20766686-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-darknet-plongee-dans-le-marche-noir-du-web">Darknet: plongée dans le marché noir du web</a></h2>
<p>Fri Jun 12 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:39 - Le zoom de la rédaction - C'est un internet totalement anonymisé où depuis quelques années se développe un trafic de produits illicites en tout genre... Zoom sur le Darknet, ses réseaux, ses url et ses logiciels.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-12.06.2015-ITEMA_20765730-0.mp3" download="Darknet: plongée dans le marché noir du web">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-12.06.2015-ITEMA_20765730-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-lesbos-le-lampedusa-grec">Lesbos : le "Lampedusa grec"</a></h2>
<p>Thu Jun 11 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:46 - Le zoom de la rédaction - À l'image de Lampedusa en Italie, l'île grecque de Lesbos est complètement débordée par l'afflux de migrants. Plus de 48.000 arrivées depuis le début de l'année, une augmentation &quot;spectaculaire&quot;, selon le Haut Commissariat aux Réfugiés des Nations Unies.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-11.06.2015-ITEMA_20765297-0.mp3" download="Lesbos : le "Lampedusa grec"">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-11.06.2015-ITEMA_20765297-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-un-an-apres-la-greve-les-intermittents-entre-soulagement-et-precari">Un an après la grève, les intermittents entre soulagement et précarité</a></h2>
<p>Wed Jun 10 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:13 - Le zoom de la rédaction - Alors que le Printemps des Comédiens s'ouvre ce soir à Montpellier, retour sur la grève des intermittents depuis cette ville de l'Hérault où avait débuté le mouvement national l'année dernière. Derrière l'apparent apaisement, les inquiétudes persistent.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-10.06.2015-ITEMA_20764888-0.mp3" download="Un an après la grève, les intermittents entre soulagement et précarité">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-10.06.2015-ITEMA_20764888-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-foot-les-filles-chaussent-de-plus-en-plus-les-crampons">Foot : les filles chaussent de plus en plus les crampons</a></h2>
<p>Tue Jun 09 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:24 - Le zoom de la rédaction - L'équipe de France féminine de foot joue ce mardi soir son 1er match de Coupe du Monde au Canada, contre l'Angleterre. Si les projecteurs sont souvent braqués sur les garçons, le foot féminin explose en France. Reportage à Paris, dans le 14ème.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-09.06.2015-ITEMA_20764424-0.mp3" download="Foot : les filles chaussent de plus en plus les crampons">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-09.06.2015-ITEMA_20764424-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
<div class="item">
<h2><a href="http://www.franceinter.fr/emission-le-zoom-de-la-redaction-la-turquie-derdogan-une-societe-fracturee">La Turquie d'Erdogan, une société fracturée</a></h2>
<p>Mon Jun 08 2015 05:16:00 GMT+0000 (UTC)</p>
<p>durée : 00:04:50 - Le zoom de la rédaction - Les élections législatives turques ont révélé un pays de plus en plus divisé entre les islamo-conservateurs d’un côté et le camp libéral et laïc de l’autre.</p>
<table>
<tr>
<td>
<div class="btn"><a href="http://media.radiofrance-podcast.net/podcast09/10265-08.06.2015-ITEMA_20763923-0.mp3" download="La Turquie d'Erdogan, une société fracturée">Télécharger (clic droit puis enregistrer sous...)</a></div>
</td>
</tr>
</table><br>
<audio src="http://media.radiofrance-podcast.net/podcast09/10265-08.06.2015-ITEMA_20763923-0.mp3" preload="none" controls>Your browser does not support the <code>audio</code> element.</audio><br>
</div>
</ul>
</body>
</html> | 75.912277 | 342 | 0.694727 |
1a925620c23b3cda6e5d0bd88e62133a90113511 | 335 | swift | Swift | PP2/Views/TrendChartViewController.swift | algoryunov/Predator-Prey-Model-Visualisation | f8b7c1a2088070b3f3ca7a5ac89ba4e8db5908da | [
"Apache-2.0"
] | 4 | 2019-06-18T10:39:50.000Z | 2020-12-03T12:10:11.000Z | PP2/Views/TrendChartViewController.swift | algoryunov/Predator-Prey-Model-Visualisation | f8b7c1a2088070b3f3ca7a5ac89ba4e8db5908da | [
"Apache-2.0"
] | 1 | 2019-09-27T14:04:46.000Z | 2019-09-27T14:04:46.000Z | PP2/Views/TrendChartViewController.swift | algoryunov/Predator-Prey-Model-Visualisation | f8b7c1a2088070b3f3ca7a5ac89ba4e8db5908da | [
"Apache-2.0"
] | 1 | 2019-06-18T10:27:05.000Z | 2019-06-18T10:27:05.000Z | //
// TrendChartViewController.swift
// PP2
//
// Created by Alexey Goryunov on 6/8/19.
// Copyright © 2019 Alexey Goryunov. All rights reserved.
//
import UIKit
class TrendChartViewController: UIViewController {
var viewModel = TrendChartViewModel()
override func viewDidLoad() {
super.viewDidLoad()
}
}
| 15.952381 | 58 | 0.689552 |
9d3a72e2889012f88521e662863d64a08462b471 | 43,087 | html | HTML | docs/struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html | ilazoja/BrawlCrate | 0204b441d27c19697a6888f4eb478f7079d483c6 | [
"MIT"
] | 1 | 2021-07-24T18:03:06.000Z | 2021-07-24T18:03:06.000Z | docs/struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html | ilazoja/BrawlCrate | 0204b441d27c19697a6888f4eb478f7079d483c6 | [
"MIT"
] | null | null | null | docs/struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html | ilazoja/BrawlCrate | 0204b441d27c19697a6888f4eb478f7079d483c6 | [
"MIT"
] | null | null | null | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.17"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>BrawlCrate: BrawlLib.SSBB.Types.MDL0Props Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="BrawlCrateIcon55px.png"/></td>
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">BrawlCrate
 <span id="projectnumber">v0.34-h3</span>
</div>
<div id="projectbrief">Wii File Editor</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespace_brawl_lib.html">BrawlLib</a></li><li class="navelem"><a class="el" href="namespace_brawl_lib_1_1_s_s_b_b.html">SSBB</a></li><li class="navelem"><a class="el" href="namespace_brawl_lib_1_1_s_s_b_b_1_1_types.html">Types</a></li><li class="navelem"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html">MDL0Props</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-attribs">Public Attributes</a> |
<a href="#pub-static-attribs">Static Public Attributes</a> |
<a href="#properties">Properties</a> |
<a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">BrawlLib.SSBB.Types.MDL0Props Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ad3333cab0042b72fcffdf93708a85e72"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ad3333cab0042b72fcffdf93708a85e72">MDL0Props</a> (int version, int vertices, int faces, int nodes, int scalingRule, int texMtxMode, bool needsNrmArr, bool needsTexArr, bool enableExtents, byte envMtxMode, <a class="el" href="struct_brawl_lib_1_1_internal_1_1_vector3.html">Vector3</a> min, <a class="el" href="struct_brawl_lib_1_1_internal_1_1_vector3.html">Vector3</a> max)</td></tr>
<tr class="separator:ad3333cab0042b72fcffdf93708a85e72"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:ae8df9b4411786ce2cb1f9dde4a70b652"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1buint.html">buint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ae8df9b4411786ce2cb1f9dde4a70b652">_headerLen</a></td></tr>
<tr class="separator:ae8df9b4411786ce2cb1f9dde4a70b652"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9a808d35ffc027a8f8861796d4f8320f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">_mdl0Offset</a></td></tr>
<tr class="separator:a9a808d35ffc027a8f8861796d4f8320f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57d91db38cc26eefa08b8f77ddd37232"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a57d91db38cc26eefa08b8f77ddd37232">_scalingRule</a></td></tr>
<tr class="separator:a57d91db38cc26eefa08b8f77ddd37232"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a596f1d62b8990c3759054c2d5a55a51d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a596f1d62b8990c3759054c2d5a55a51d">_texMatrixMode</a></td></tr>
<tr class="separator:a596f1d62b8990c3759054c2d5a55a51d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80910855f5b6045baa3e414deec52fee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a80910855f5b6045baa3e414deec52fee">_numVertices</a></td></tr>
<tr class="separator:a80910855f5b6045baa3e414deec52fee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41ec0a90a4c545c3af9d71f1d69e410a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a41ec0a90a4c545c3af9d71f1d69e410a">_numTriangles</a></td></tr>
<tr class="separator:a41ec0a90a4c545c3af9d71f1d69e410a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7bd6f1777877858122c80f032a07362d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a7bd6f1777877858122c80f032a07362d">_origPathOffset</a></td></tr>
<tr class="separator:a7bd6f1777877858122c80f032a07362d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa25215d8571356f98980eb25cffc69a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#aaa25215d8571356f98980eb25cffc69a">_numNodes</a></td></tr>
<tr class="separator:aaa25215d8571356f98980eb25cffc69a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4148cead0101be4184634a9bf8591fb0"><td class="memItemLeft" align="right" valign="top">byte </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a4148cead0101be4184634a9bf8591fb0">_needNrmMtxArray</a></td></tr>
<tr class="separator:a4148cead0101be4184634a9bf8591fb0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3c5f701d1856fc1bffb026806c465c5"><td class="memItemLeft" align="right" valign="top">byte </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ab3c5f701d1856fc1bffb026806c465c5">_needTexMtxArray</a></td></tr>
<tr class="separator:ab3c5f701d1856fc1bffb026806c465c5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f73817b3cb623eb74d19d2c3947b848"><td class="memItemLeft" align="right" valign="top">byte </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a6f73817b3cb623eb74d19d2c3947b848">_enableExtents</a></td></tr>
<tr class="separator:a6f73817b3cb623eb74d19d2c3947b848"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a123d14de73ca64f907695b4175963415"><td class="memItemLeft" align="right" valign="top">byte </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a123d14de73ca64f907695b4175963415">_envMtxMode</a></td></tr>
<tr class="separator:a123d14de73ca64f907695b4175963415"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a11fbb2a572fb0b2e396a956274a11539"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1buint.html">buint</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a11fbb2a572fb0b2e396a956274a11539">_dataOffset</a></td></tr>
<tr class="separator:a11fbb2a572fb0b2e396a956274a11539"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad80b1cbfd87458423f58035a0a3d1034"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_b_box.html">BBox</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ad80b1cbfd87458423f58035a0a3d1034">_extents</a></td></tr>
<tr class="separator:ad80b1cbfd87458423f58035a0a3d1034"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf8eec192796415aa58df865d53bf82d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_header.html">MDL0Header</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#adf8eec192796415aa58df865d53bf82d">MDL0</a> => (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_header.html">MDL0Header</a>*) (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a> + <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">_mdl0Offset</a>)</td></tr>
<tr class="separator:adf8eec192796415aa58df865d53bf82d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5a9e90a25a1d6a8aa49f582991610eab"><td class="memItemLeft" align="right" valign="top">string </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a5a9e90a25a1d6a8aa49f582991610eab">OrigPath</a> => new string((sbyte*) <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a5074284d7b791c3033fdeec7ac9b4602">OrigPathAddress</a>)</td></tr>
<tr class="separator:a5a9e90a25a1d6a8aa49f582991610eab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af35add42bd0f911a66928e12b69640c7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_node_table.html">MDL0NodeTable</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#af35add42bd0f911a66928e12b69640c7">IndexTable</a> => (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_node_table.html">MDL0NodeTable</a>*) (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a> + <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a11fbb2a572fb0b2e396a956274a11539">_dataOffset</a>)</td></tr>
<tr class="separator:af35add42bd0f911a66928e12b69640c7"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:a3b73cad741f81218d7e2d3bc328ddf0f"><td class="memItemLeft" align="right" valign="top">const uint </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a3b73cad741f81218d7e2d3bc328ddf0f">Size</a> = 0x40</td></tr>
<tr class="separator:a3b73cad741f81218d7e2d3bc328ddf0f"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
Properties</h2></td></tr>
<tr class="memitem:a15a40bde37c4a14de668ee3b9d0bd641"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_void_ptr.html">VoidPtr</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a><code> [get]</code></td></tr>
<tr class="separator:a15a40bde37c4a14de668ee3b9d0bd641"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5074284d7b791c3033fdeec7ac9b4602"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_void_ptr.html">VoidPtr</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a5074284d7b791c3033fdeec7ac9b4602">OrigPathAddress</a><code> [get, set]</code></td></tr>
<tr class="separator:a5074284d7b791c3033fdeec7ac9b4602"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a id="ad3333cab0042b72fcffdf93708a85e72"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad3333cab0042b72fcffdf93708a85e72">◆ </a></span>MDL0Props()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">BrawlLib.SSBB.Types.MDL0Props.MDL0Props </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>version</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>vertices</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>faces</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>nodes</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>scalingRule</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>texMtxMode</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>needsNrmArr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>needsTexArr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>enableExtents</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">byte </td>
<td class="paramname"><em>envMtxMode</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_vector3.html">Vector3</a> </td>
<td class="paramname"><em>min</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_vector3.html">Vector3</a> </td>
<td class="paramname"><em>max</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<div class="fragment"><div class="line"><a name="l00242"></a><span class="lineno"> 242</span>  {</div>
<div class="line"><a name="l00243"></a><span class="lineno"> 243</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ae8df9b4411786ce2cb1f9dde4a70b652">_headerLen</a> = 0x40;</div>
<div class="line"><a name="l00244"></a><span class="lineno"> 244</span>  <span class="keywordflow">if</span> (version == 9 || version == 8)</div>
<div class="line"><a name="l00245"></a><span class="lineno"> 245</span>  {</div>
<div class="line"><a name="l00246"></a><span class="lineno"> 246</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">_mdl0Offset</a> = -64;</div>
<div class="line"><a name="l00247"></a><span class="lineno"> 247</span>  }</div>
<div class="line"><a name="l00248"></a><span class="lineno"> 248</span>  <span class="keywordflow">else</span></div>
<div class="line"><a name="l00249"></a><span class="lineno"> 249</span>  {</div>
<div class="line"><a name="l00250"></a><span class="lineno"> 250</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">_mdl0Offset</a> = -76;</div>
<div class="line"><a name="l00251"></a><span class="lineno"> 251</span>  }</div>
<div class="line"><a name="l00252"></a><span class="lineno"> 252</span>  </div>
<div class="line"><a name="l00253"></a><span class="lineno"> 253</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a57d91db38cc26eefa08b8f77ddd37232">_scalingRule</a> = scalingRule;</div>
<div class="line"><a name="l00254"></a><span class="lineno"> 254</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a596f1d62b8990c3759054c2d5a55a51d">_texMatrixMode</a> = texMtxMode;</div>
<div class="line"><a name="l00255"></a><span class="lineno"> 255</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a80910855f5b6045baa3e414deec52fee">_numVertices</a> = vertices;</div>
<div class="line"><a name="l00256"></a><span class="lineno"> 256</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a41ec0a90a4c545c3af9d71f1d69e410a">_numTriangles</a> = faces;</div>
<div class="line"><a name="l00257"></a><span class="lineno"> 257</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a7bd6f1777877858122c80f032a07362d">_origPathOffset</a> = 0;</div>
<div class="line"><a name="l00258"></a><span class="lineno"> 258</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#aaa25215d8571356f98980eb25cffc69a">_numNodes</a> = nodes;</div>
<div class="line"><a name="l00259"></a><span class="lineno"> 259</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a4148cead0101be4184634a9bf8591fb0">_needNrmMtxArray</a> = (byte) (needsNrmArr ? 1 : 0);</div>
<div class="line"><a name="l00260"></a><span class="lineno"> 260</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ab3c5f701d1856fc1bffb026806c465c5">_needTexMtxArray</a> = (byte) (needsTexArr ? 1 : 0);</div>
<div class="line"><a name="l00261"></a><span class="lineno"> 261</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a6f73817b3cb623eb74d19d2c3947b848">_enableExtents</a> = (byte) (enableExtents ? 1 : 0);</div>
<div class="line"><a name="l00262"></a><span class="lineno"> 262</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a123d14de73ca64f907695b4175963415">_envMtxMode</a> = envMtxMode;</div>
<div class="line"><a name="l00263"></a><span class="lineno"> 263</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a11fbb2a572fb0b2e396a956274a11539">_dataOffset</a> = 0x40;</div>
<div class="line"><a name="l00264"></a><span class="lineno"> 264</span>  <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ad80b1cbfd87458423f58035a0a3d1034">_extents</a> = <span class="keyword">new</span> <a class="code" href="struct_brawl_lib_1_1_internal_1_1_b_box.html">BBox</a>(min, max);</div>
<div class="line"><a name="l00265"></a><span class="lineno"> 265</span>  }</div>
</div><!-- fragment -->
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a id="a11fbb2a572fb0b2e396a956274a11539"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a11fbb2a572fb0b2e396a956274a11539">◆ </a></span>_dataOffset</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1buint.html">buint</a> BrawlLib.SSBB.Types.MDL0Props._dataOffset</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a6f73817b3cb623eb74d19d2c3947b848"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6f73817b3cb623eb74d19d2c3947b848">◆ </a></span>_enableExtents</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">byte BrawlLib.SSBB.Types.MDL0Props._enableExtents</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a123d14de73ca64f907695b4175963415"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a123d14de73ca64f907695b4175963415">◆ </a></span>_envMtxMode</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">byte BrawlLib.SSBB.Types.MDL0Props._envMtxMode</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ad80b1cbfd87458423f58035a0a3d1034"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad80b1cbfd87458423f58035a0a3d1034">◆ </a></span>_extents</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_b_box.html">BBox</a> BrawlLib.SSBB.Types.MDL0Props._extents</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ae8df9b4411786ce2cb1f9dde4a70b652"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae8df9b4411786ce2cb1f9dde4a70b652">◆ </a></span>_headerLen</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1buint.html">buint</a> BrawlLib.SSBB.Types.MDL0Props._headerLen</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a9a808d35ffc027a8f8861796d4f8320f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9a808d35ffc027a8f8861796d4f8320f">◆ </a></span>_mdl0Offset</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._mdl0Offset</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a4148cead0101be4184634a9bf8591fb0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4148cead0101be4184634a9bf8591fb0">◆ </a></span>_needNrmMtxArray</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">byte BrawlLib.SSBB.Types.MDL0Props._needNrmMtxArray</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="ab3c5f701d1856fc1bffb026806c465c5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab3c5f701d1856fc1bffb026806c465c5">◆ </a></span>_needTexMtxArray</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">byte BrawlLib.SSBB.Types.MDL0Props._needTexMtxArray</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="aaa25215d8571356f98980eb25cffc69a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aaa25215d8571356f98980eb25cffc69a">◆ </a></span>_numNodes</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._numNodes</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a41ec0a90a4c545c3af9d71f1d69e410a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a41ec0a90a4c545c3af9d71f1d69e410a">◆ </a></span>_numTriangles</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._numTriangles</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a80910855f5b6045baa3e414deec52fee"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a80910855f5b6045baa3e414deec52fee">◆ </a></span>_numVertices</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._numVertices</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a7bd6f1777877858122c80f032a07362d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7bd6f1777877858122c80f032a07362d">◆ </a></span>_origPathOffset</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._origPathOffset</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a57d91db38cc26eefa08b8f77ddd37232"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a57d91db38cc26eefa08b8f77ddd37232">◆ </a></span>_scalingRule</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._scalingRule</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a596f1d62b8990c3759054c2d5a55a51d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a596f1d62b8990c3759054c2d5a55a51d">◆ </a></span>_texMatrixMode</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1bint.html">bint</a> BrawlLib.SSBB.Types.MDL0Props._texMatrixMode</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="af35add42bd0f911a66928e12b69640c7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af35add42bd0f911a66928e12b69640c7">◆ </a></span>IndexTable</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_node_table.html">MDL0NodeTable</a>* BrawlLib.SSBB.Types.MDL0Props.IndexTable => (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_node_table.html">MDL0NodeTable</a>*) (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a> + <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a11fbb2a572fb0b2e396a956274a11539">_dataOffset</a>)</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="adf8eec192796415aa58df865d53bf82d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adf8eec192796415aa58df865d53bf82d">◆ </a></span>MDL0</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_header.html">MDL0Header</a>* BrawlLib.SSBB.Types.MDL0Props.MDL0 => (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_header.html">MDL0Header</a>*) (<a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a> + <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">_mdl0Offset</a>)</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a5a9e90a25a1d6a8aa49f582991610eab"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5a9e90a25a1d6a8aa49f582991610eab">◆ </a></span>OrigPath</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">string BrawlLib.SSBB.Types.MDL0Props.OrigPath => new string((sbyte*) <a class="el" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a5074284d7b791c3033fdeec7ac9b4602">OrigPathAddress</a>)</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a id="a3b73cad741f81218d7e2d3bc328ddf0f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3b73cad741f81218d7e2d3bc328ddf0f">◆ </a></span>Size</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const uint BrawlLib.SSBB.Types.MDL0Props.Size = 0x40</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Property Documentation</h2>
<a id="a15a40bde37c4a14de668ee3b9d0bd641"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a15a40bde37c4a14de668ee3b9d0bd641">◆ </a></span>Address</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_void_ptr.html">VoidPtr</a> BrawlLib.SSBB.Types.MDL0Props.Address</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">private</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<div class="fragment"><div class="line"><a name="l00268"></a><span class="lineno"> 268</span>  {</div>
<div class="line"><a name="l00269"></a><span class="lineno"> 269</span>  <span class="keyword">get</span></div>
<div class="line"><a name="l00270"></a><span class="lineno"> 270</span>  {</div>
<div class="line"><a name="l00271"></a><span class="lineno"> 271</span>  fixed (<span class="keywordtype">void</span>* ptr = &<span class="keyword">this</span>)</div>
<div class="line"><a name="l00272"></a><span class="lineno"> 272</span>  {</div>
<div class="line"><a name="l00273"></a><span class="lineno"> 273</span>  <span class="keywordflow">return</span> ptr;</div>
<div class="line"><a name="l00274"></a><span class="lineno"> 274</span>  }</div>
<div class="line"><a name="l00275"></a><span class="lineno"> 275</span>  }</div>
<div class="line"><a name="l00276"></a><span class="lineno"> 276</span>  }</div>
</div><!-- fragment -->
</div>
</div>
<a id="a5074284d7b791c3033fdeec7ac9b4602"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5074284d7b791c3033fdeec7ac9b4602">◆ </a></span>OrigPathAddress</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_brawl_lib_1_1_internal_1_1_void_ptr.html">VoidPtr</a> BrawlLib.SSBB.Types.MDL0Props.OrigPathAddress</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">get</span><span class="mlabel">set</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<div class="fragment"><div class="line"><a name="l00283"></a><span class="lineno"> 283</span>  {</div>
<div class="line"><a name="l00284"></a><span class="lineno"> 284</span>  <span class="keyword">get</span> => <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a> + <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a7bd6f1777877858122c80f032a07362d">_origPathOffset</a>;</div>
<div class="line"><a name="l00285"></a><span class="lineno"> 285</span>  <span class="keyword">set</span> => <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a7bd6f1777877858122c80f032a07362d">_origPathOffset</a> = (int) value - (<span class="keywordtype">int</span>) <a class="code" href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">Address</a>;</div>
<div class="line"><a name="l00286"></a><span class="lineno"> 286</span>  }</div>
</div><!-- fragment -->
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>BrawlLib/SSBB/Types/MDL0.cs</li>
</ul>
</div><!-- contents -->
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_ae8df9b4411786ce2cb1f9dde4a70b652"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ae8df9b4411786ce2cb1f9dde4a70b652">BrawlLib.SSBB.Types.MDL0Props._headerLen</a></div><div class="ttdeci">buint _headerLen</div><div class="ttdef"><b>Definition:</b> MDL0.cs:224</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a11fbb2a572fb0b2e396a956274a11539"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a11fbb2a572fb0b2e396a956274a11539">BrawlLib.SSBB.Types.MDL0Props._dataOffset</a></div><div class="ttdeci">buint _dataOffset</div><div class="ttdef"><b>Definition:</b> MDL0.cs:236</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a15a40bde37c4a14de668ee3b9d0bd641"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a15a40bde37c4a14de668ee3b9d0bd641">BrawlLib.SSBB.Types.MDL0Props.Address</a></div><div class="ttdeci">VoidPtr Address</div><div class="ttdef"><b>Definition:</b> MDL0.cs:268</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a123d14de73ca64f907695b4175963415"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a123d14de73ca64f907695b4175963415">BrawlLib.SSBB.Types.MDL0Props._envMtxMode</a></div><div class="ttdeci">byte _envMtxMode</div><div class="ttdef"><b>Definition:</b> MDL0.cs:235</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_aaa25215d8571356f98980eb25cffc69a"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#aaa25215d8571356f98980eb25cffc69a">BrawlLib.SSBB.Types.MDL0Props._numNodes</a></div><div class="ttdeci">bint _numNodes</div><div class="ttdef"><b>Definition:</b> MDL0.cs:231</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_ab3c5f701d1856fc1bffb026806c465c5"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ab3c5f701d1856fc1bffb026806c465c5">BrawlLib.SSBB.Types.MDL0Props._needTexMtxArray</a></div><div class="ttdeci">byte _needTexMtxArray</div><div class="ttdef"><b>Definition:</b> MDL0.cs:233</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a80910855f5b6045baa3e414deec52fee"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a80910855f5b6045baa3e414deec52fee">BrawlLib.SSBB.Types.MDL0Props._numVertices</a></div><div class="ttdeci">bint _numVertices</div><div class="ttdef"><b>Definition:</b> MDL0.cs:228</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a7bd6f1777877858122c80f032a07362d"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a7bd6f1777877858122c80f032a07362d">BrawlLib.SSBB.Types.MDL0Props._origPathOffset</a></div><div class="ttdeci">bint _origPathOffset</div><div class="ttdef"><b>Definition:</b> MDL0.cs:230</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a6f73817b3cb623eb74d19d2c3947b848"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a6f73817b3cb623eb74d19d2c3947b848">BrawlLib.SSBB.Types.MDL0Props._enableExtents</a></div><div class="ttdeci">byte _enableExtents</div><div class="ttdef"><b>Definition:</b> MDL0.cs:234</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a4148cead0101be4184634a9bf8591fb0"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a4148cead0101be4184634a9bf8591fb0">BrawlLib.SSBB.Types.MDL0Props._needNrmMtxArray</a></div><div class="ttdeci">byte _needNrmMtxArray</div><div class="ttdef"><b>Definition:</b> MDL0.cs:232</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a57d91db38cc26eefa08b8f77ddd37232"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a57d91db38cc26eefa08b8f77ddd37232">BrawlLib.SSBB.Types.MDL0Props._scalingRule</a></div><div class="ttdeci">bint _scalingRule</div><div class="ttdef"><b>Definition:</b> MDL0.cs:226</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_ad80b1cbfd87458423f58035a0a3d1034"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#ad80b1cbfd87458423f58035a0a3d1034">BrawlLib.SSBB.Types.MDL0Props._extents</a></div><div class="ttdeci">BBox _extents</div><div class="ttdef"><b>Definition:</b> MDL0.cs:237</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_internal_1_1_b_box_html"><div class="ttname"><a href="struct_brawl_lib_1_1_internal_1_1_b_box.html">BrawlLib.Internal.BBox</a></div><div class="ttdef"><b>Definition:</b> Box.cs:66</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a9a808d35ffc027a8f8861796d4f8320f"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a9a808d35ffc027a8f8861796d4f8320f">BrawlLib.SSBB.Types.MDL0Props._mdl0Offset</a></div><div class="ttdeci">bint _mdl0Offset</div><div class="ttdef"><b>Definition:</b> MDL0.cs:225</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a596f1d62b8990c3759054c2d5a55a51d"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a596f1d62b8990c3759054c2d5a55a51d">BrawlLib.SSBB.Types.MDL0Props._texMatrixMode</a></div><div class="ttdeci">bint _texMatrixMode</div><div class="ttdef"><b>Definition:</b> MDL0.cs:227</div></div>
<div class="ttc" id="astruct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props_html_a41ec0a90a4c545c3af9d71f1d69e410a"><div class="ttname"><a href="struct_brawl_lib_1_1_s_s_b_b_1_1_types_1_1_m_d_l0_props.html#a41ec0a90a4c545c3af9d71f1d69e410a">BrawlLib.SSBB.Types.MDL0Props._numTriangles</a></div><div class="ttdeci">bint _numTriangles</div><div class="ttdef"><b>Definition:</b> MDL0.cs:229</div></div>
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.17
</small></address>
</body>
</html>
| 71.336093 | 781 | 0.718128 |
b9139a5bc54af5829f34d2c7fa643becf56e29d0 | 2,043 | go | Go | cmd/zc_traverser_local_windows.go | rioriost/azure-storage-azcopy | 24089bad250aa9f4cbb58fe6fc04b82fcf34724d | [
"MIT"
] | 414 | 2018-06-11T20:30:08.000Z | 2022-03-28T12:24:28.000Z | cmd/zc_traverser_local_windows.go | rioriost/azure-storage-azcopy | 24089bad250aa9f4cbb58fe6fc04b82fcf34724d | [
"MIT"
] | 1,194 | 2018-06-08T16:11:44.000Z | 2022-03-31T16:59:50.000Z | cmd/zc_traverser_local_windows.go | rioriost/azure-storage-azcopy | 24089bad250aa9f4cbb58fe6fc04b82fcf34724d | [
"MIT"
] | 158 | 2018-06-11T06:12:54.000Z | 2022-03-26T22:52:41.000Z | // +build windows
package cmd
import (
"os"
"syscall"
"time"
"unsafe"
"github.com/hillu/go-ntdll"
"golang.org/x/sys/windows"
)
// Override the modtime from the OS stat
type folderStatWrapper struct {
os.FileInfo
changeTime time.Time
}
func (f *folderStatWrapper) ModTime() time.Time {
return f.changeTime
}
func WrapFolder(fullpath string, stat os.FileInfo) (os.FileInfo, error) {
srcPtr, err := syscall.UTF16PtrFromString(fullpath)
if err != nil {
return nil, err
}
// custom open call, because must specify FILE_FLAG_BACKUP_SEMANTICS to make --backup mode work properly (i.e. our use of SeBackupPrivilege)
fd, err := windows.CreateFile(srcPtr,
windows.GENERIC_READ, windows.FILE_SHARE_READ, nil,
windows.OPEN_EXISTING, windows.FILE_FLAG_BACKUP_SEMANTICS, 0)
if err != nil {
return nil, err
}
defer windows.Close(fd)
buf := make([]byte, 1024)
var rLen = uint32(unsafe.Sizeof(ntdll.FileBasicInformationT{}))
if st := ntdll.CallWithExpandingBuffer(func() ntdll.NtStatus {
var stat ntdll.IoStatusBlock
return ntdll.NtQueryInformationFile(ntdll.Handle(fd), &stat, &buf[0], uint32(len(buf)), ntdll.FileBasicInformation)
}, &buf, &rLen); st.IsSuccess() {
ntdllTime := time.Date(1601, time.January, 1, 0, 0, 0, 0, time.UTC)
// do a nasty unsafe thing and tell go that our []byte is actually a FileStandardInformationT.
fi := (*ntdll.FileBasicInformationT)(unsafe.Pointer(&buf[0]))
// ntdll returns times that are incremented by 100-nanosecond "instants" past the beginning of 1601.
// time.Duration is a 64 bit integer, starting at nanoseconds.
// It cannot hold more than 290 years. You can't add any kind of arbitrary precision number of nanoseconds either.
// However, time.Time can handle such things on it's own.
// So, we just add our changetime 100x. It's a little cheesy, but it does work.
for i := 0; i < 100; i++ {
ntdllTime = ntdllTime.Add(time.Duration(fi.ChangeTime))
}
return &folderStatWrapper{
stat,
ntdllTime,
}, nil
} else {
return nil, st.Error()
}
} | 30.954545 | 141 | 0.718551 |
3a066f9065d8014506ac4b74108285de6a21cc21 | 449 | kt | Kotlin | app/src/main/java/com/allat/mboychenko/silverthread/presentation/helpers/CalendarExtensions.kt | glmcz/SilverThread | 4928d888e025188ab854f59121b54acfc4c06265 | [
"Apache-2.0"
] | 2 | 2019-11-29T05:22:08.000Z | 2021-09-28T11:09:18.000Z | app/src/main/java/com/allat/mboychenko/silverthread/presentation/helpers/CalendarExtensions.kt | glmcz/SilverThread | 4928d888e025188ab854f59121b54acfc4c06265 | [
"Apache-2.0"
] | null | null | null | app/src/main/java/com/allat/mboychenko/silverthread/presentation/helpers/CalendarExtensions.kt | glmcz/SilverThread | 4928d888e025188ab854f59121b54acfc4c06265 | [
"Apache-2.0"
] | 1 | 2020-06-05T13:41:29.000Z | 2020-06-05T13:41:29.000Z | package com.allat.mboychenko.silverthread.presentation.helpers
import java.util.*
fun Calendar.applyDayStart(): Calendar {
set(Calendar.HOUR_OF_DAY, 0)
set(Calendar.MINUTE, 0)
set(Calendar.SECOND, 0)
set(Calendar.MILLISECOND, 0)
return this
}
fun Calendar.applyDayEnd(): Calendar {
set(Calendar.HOUR_OF_DAY, 23)
set(Calendar.MINUTE, 59)
set(Calendar.SECOND, 59)
set(Calendar.MILLISECOND, 999)
return this
} | 23.631579 | 62 | 0.714922 |
eb57f41643ea28da3e69ef6661b1b1c204a9ca51 | 528,729 | lua | Lua | Data/5075.lua | dfbb/iWclPlayerScore | 7f50f7d5e3ead84df346f0af4a631e6038e02e94 | [
"MIT"
] | null | null | null | Data/5075.lua | dfbb/iWclPlayerScore | 7f50f7d5e3ead84df346f0af4a631e6038e02e94 | [
"MIT"
] | 2 | 2021-04-27T06:33:17.000Z | 2021-04-27T06:41:50.000Z | Data/5075.lua | dfbb/iWclPlayerScore | 7f50f7d5e3ead84df346f0af4a631e6038e02e94 | [
"MIT"
] | null | null | null | if(GetRealmName() == "Dragon's Call")then
WP_Database = {
["Hadrion"] = "ST:814/99%SB:814/99%SM:1010/99%",
["Anndora"] = "ST:836/99%SB:788/99%SM:1002/99%",
["Fârewell"] = "ST:826/99%SB:848/99%SM:1004/99%",
["Jintao"] = "ST:821/99%SB:848/99%SM:1024/99%",
["Rîsk"] = "LT:771/97%SB:816/99%SM:1079/99%",
["Álfheimr"] = "LT:787/98%SB:801/99%SM:1003/99%",
["Jinkazama"] = "ET:619/83%SB:824/99%LM:944/96%",
["Genkis"] = "LT:744/95%LB:786/98%LM:968/97%",
["Sanchezgodx"] = "ST:858/99%SB:847/99%SM:1054/99%",
["Stormforce"] = "ST:799/99%SB:815/99%LM:988/98%",
["Lydraeth"] = "LT:778/98%LB:784/98%SM:993/99%",
["Takeya"] = "ET:652/84%SB:893/99%SM:1003/99%",
["Fisheye"] = "LT:791/98%SB:863/99%LM:999/98%",
["Ririna"] = "ET:727/94%LB:788/98%LM:980/98%",
["Melos"] = "ST:713/99%LB:787/98%SM:964/99%",
["Zuliane"] = "ST:808/99%SB:824/99%SM:1026/99%",
["Mentalist"] = "UT:319/47%LB:772/97%LM:962/97%",
["Narisea"] = "LT:763/97%LB:797/98%SM:1026/99%",
["Insanecrits"] = "LT:771/97%LB:794/98%LM:980/98%",
["Oric"] = "ET:716/92%LB:779/98%LM:955/97%",
["Jiskra"] = "ST:708/99%SB:767/99%SM:986/99%",
["Molestermann"] = "LT:764/97%LB:790/98%LM:871/98%",
["Sherly"] = "ST:798/99%SB:776/99%EM:900/94%",
["Bakko"] = "UT:107/42%LB:784/98%LM:958/98%",
["Nhoci"] = "LT:635/98%SB:779/99%SM:1024/99%",
["Zaposaurus"] = "LT:773/97%SB:799/99%LM:995/98%",
["Durrahan"] = "LB:795/98%SM:1017/99%",
["Fenito"] = "ST:808/99%SB:886/99%SM:986/99%",
["Wollepetry"] = "ET:736/94%LB:780/98%SM:993/99%",
["Zakk"] = "LT:789/98%SB:810/99%SM:1001/99%",
["Minz"] = "ST:798/99%SB:823/99%SM:998/99%",
["Falscherwurm"] = "LT:768/97%SB:809/99%LM:973/98%",
["Inugami"] = "ST:816/99%SB:810/99%SM:1011/99%",
["Ahyraz"] = "ST:805/99%SB:774/99%SM:1076/99%",
["Ballermike"] = "LT:770/97%LB:777/97%LM:851/97%",
["Rufuck"] = "LT:764/96%SB:801/99%LM:944/95%",
["Kamy"] = "LT:775/97%SB:771/99%LM:947/95%",
["Swagstep"] = "ST:802/99%SB:800/99%EM:910/93%",
["Nazzgai"] = "ET:736/94%LB:704/97%EM:897/92%",
["Thedeadmaker"] = "ST:786/99%LB:732/98%SM:958/99%",
["Artega"] = "LT:771/97%LB:789/98%SM:991/99%",
["Umrag"] = "LT:756/96%LB:777/97%LM:924/96%",
["Xiou"] = "ST:810/99%SB:818/99%SM:990/99%",
["Mareda"] = "LT:773/97%LB:779/97%LM:884/98%",
["Fabix"] = "LT:792/98%SB:802/99%SM:975/99%",
["Karstnstahl"] = "LT:772/97%LB:782/98%LM:958/97%",
["Any"] = "ST:822/99%SB:797/99%SM:1003/99%",
["Mestronon"] = "LT:744/95%SB:806/99%SM:984/99%",
["Enyu"] = "ST:813/99%SB:805/99%LM:988/98%",
["Zórrò"] = "LT:757/96%LB:733/98%EM:858/90%",
["Zagstruk"] = "ET:740/94%SB:753/99%LM:969/98%",
["Davidsohn"] = "LT:750/95%LB:787/98%LM:988/98%",
["Sayera"] = "LT:761/96%LB:771/97%LM:934/96%",
["Nextacy"] = "LT:750/95%SB:819/99%LM:949/97%",
["Roit"] = "ST:845/99%SB:880/99%SM:1009/99%",
["Falawfel"] = "ST:793/99%LB:787/98%SM:966/99%",
["Tricked"] = "LT:788/98%LB:781/98%SM:936/99%",
["Ønslaught"] = "LT:752/96%LB:779/98%LM:972/98%",
["Dejott"] = "ST:814/99%SB:804/99%SM:1002/99%",
["Nemethis"] = "LT:773/97%SB:801/99%LM:962/97%",
["Baggins"] = "LT:745/96%LB:762/96%EM:886/92%",
["Rrim"] = "LT:793/98%SB:802/99%SM:1038/99%",
["Zeplan"] = "ST:805/99%LB:788/98%LM:929/96%",
["Morabia"] = "ET:735/93%SB:802/99%LM:949/97%",
["Oroscha"] = "LT:755/96%LB:776/97%LM:868/98%",
["Riwo"] = "LT:789/98%SB:840/99%SM:999/99%",
["Bishoff"] = "LT:742/95%LB:790/98%LM:984/98%",
["Heldojin"] = "LT:789/98%LB:797/98%SM:954/99%",
["Rhokor"] = "LT:759/97%LB:768/96%EM:913/93%",
["Keltas"] = "LT:778/97%SB:795/99%LM:991/98%",
["Doomboy"] = "ET:738/94%LB:769/96%LM:957/97%",
["Mikasi"] = "ST:833/99%SB:783/99%SM:1043/99%",
["Cerokz"] = "LT:760/96%SB:761/99%LM:936/95%",
["Eldridge"] = "LT:786/98%SB:759/99%EM:932/94%",
["Cracken"] = "ET:736/94%SB:815/99%SM:1007/99%",
["Arndtosh"] = "ET:705/91%LB:772/97%LM:991/98%",
["Mafakasap"] = "ET:739/94%LB:777/97%LM:969/97%",
["Elsanto"] = "LT:778/97%LB:793/98%SM:1017/99%",
["Asspirin"] = "LT:762/96%LB:786/98%LM:823/96%",
["Kocky"] = "LT:597/98%LB:792/98%LM:948/95%",
["Feygn"] = "LT:774/98%SB:804/99%SM:1016/99%",
["Vuuth"] = "LT:774/97%SB:804/99%LM:959/97%",
["Sijulia"] = "ET:722/93%LB:769/97%EM:920/94%",
["Xèrxès"] = "ET:634/85%LB:766/96%LM:915/95%",
["Alator"] = "LT:768/97%LB:735/98%LM:963/97%",
["Maydayx"] = "ST:791/99%SB:789/99%SM:1011/99%",
["Misplaced"] = "ET:736/94%LB:766/96%LM:938/96%",
["Exer"] = "LT:771/97%SB:797/99%LM:960/97%",
["Talonlonfarm"] = "LT:743/95%LB:783/98%LM:965/98%",
["Matz"] = "LT:771/97%LB:781/98%LM:961/97%",
["Turdina"] = "LT:781/98%LB:746/98%LM:956/96%",
["Peace"] = "ST:766/99%LB:787/98%SM:1004/99%",
["Fabilicious"] = "LT:754/95%LB:787/98%SM:988/99%",
["Marrak"] = "LT:577/98%LB:777/97%LM:948/97%",
["Precision"] = "ST:813/99%SB:800/99%LM:957/97%",
["Grishok"] = "LT:778/98%SB:815/99%SM:952/99%",
["Knaro"] = "ET:628/84%LB:724/98%EM:842/87%",
["Undeadflex"] = "LT:760/96%LB:783/98%LM:978/98%",
["Crîztalix"] = "ET:724/93%LB:763/96%LM:963/97%",
["Starzn"] = "ET:742/94%SB:750/99%LM:943/97%",
["Strachehc"] = "ST:891/99%SB:841/99%SM:1055/99%",
["Sausageboy"] = "LT:856/98%SB:838/99%SM:921/99%",
["Bagece"] = "LT:856/98%SB:861/99%SM:998/99%",
["Tsetse"] = "ST:940/99%SB:855/99%SM:1052/99%",
["Nemoray"] = "ST:916/99%SB:826/99%SM:1023/99%",
["Fulgore"] = "LT:867/98%SB:825/99%SM:909/99%",
["Berthor"] = "LT:875/98%SB:837/99%SM:1018/99%",
["Muhlan"] = "LT:854/98%SB:784/99%LM:927/95%",
["Blackwhite"] = "ST:926/99%SB:851/99%SM:974/99%",
["Doril"] = "ST:961/99%SB:860/99%SM:1032/99%",
["Vija"] = "LT:844/97%SB:822/99%SM:977/99%",
["Tarama"] = "ST:879/99%SB:820/99%LM:942/96%",
["Nazgrol"] = "LT:538/96%SB:799/99%LM:976/98%",
["Iwinagainlol"] = "ST:830/99%SB:853/99%SM:1046/99%",
["Gnius"] = "ET:480/94%SB:792/99%LM:964/98%",
["Poffner"] = "ET:803/94%LB:776/98%LM:942/96%",
["Fenster"] = "ET:412/92%SB:781/99%SM:1022/99%",
["Mouji"] = "ST:732/99%SB:773/99%SM:953/99%",
["Baamlise"] = "ST:853/99%SB:810/99%SM:985/99%",
["Vento"] = "ST:895/99%SB:831/99%SM:967/99%",
["Krozz"] = "ST:940/99%SB:803/99%SM:994/99%",
["Yamal"] = "LT:802/96%SB:790/99%SM:977/99%",
["Neramin"] = "ST:770/99%SB:790/99%LM:935/97%",
["Binabik"] = "ST:806/99%SB:785/99%LM:938/97%",
["Bawspleyer"] = "ST:918/99%SB:826/99%SM:1053/99%",
["Jin"] = "ST:908/99%SB:913/99%SM:1049/99%",
["Vole"] = "LT:836/97%SB:784/99%LM:939/97%",
["Rak"] = "ET:469/94%SB:779/99%LM:940/97%",
["Gûardina"] = "LT:827/96%SB:784/99%SM:968/99%",
["Nillepeter"] = "ST:876/99%SB:782/99%LM:976/98%",
["Verty"] = "LT:656/98%LB:763/98%LM:948/97%",
["Ananasorange"] = "ST:907/99%SB:810/99%SM:1026/99%",
["Forellengabi"] = "LT:866/98%SB:734/99%LM:965/98%",
["Helther"] = "LT:868/98%SB:782/99%LM:841/98%",
["Dexxtro"] = "ET:778/93%SB:790/99%LM:939/96%",
["Smirkintotem"] = "ET:785/94%LB:751/97%LM:853/98%",
["Tazuo"] = "ST:899/99%SB:828/99%SM:1093/99%",
["Tsar"] = "LT:506/95%SB:828/99%SM:1012/99%",
["Anyy"] = "ET:765/92%SB:780/99%LM:757/96%",
["Bargul"] = "LT:781/95%SB:790/99%SM:985/99%",
["Johnnylight"] = "ST:933/99%SB:823/99%LM:964/98%",
["Edwardo"] = "LT:875/98%SB:787/99%SM:1005/99%",
["Tâumâne"] = "LT:644/98%SB:797/99%LM:938/96%",
["Taana"] = "LT:837/97%SB:842/99%SM:1016/99%",
["Wanzer"] = "ST:885/99%SB:819/99%LM:940/96%",
["Hâzel"] = "LT:664/98%SB:753/99%SM:983/99%",
["Hardcôre"] = "ST:885/99%SB:782/99%EM:866/91%",
["Trollabelle"] = "ET:452/93%SB:795/99%SM:997/99%",
["Narue"] = "ST:928/99%SB:786/99%SM:1043/99%",
["Tedralil"] = "LT:851/98%SB:800/99%LM:975/98%",
["Hashberry"] = "ST:879/99%SB:829/99%LM:973/98%",
["Incantare"] = "ET:790/94%LB:768/98%EM:856/93%",
["Moraira"] = "LT:841/97%LB:733/97%RM:614/71%",
["Rikia"] = "ET:627/83%SB:800/99%LM:959/98%",
["Innocuous"] = "LT:823/96%SB:789/99%LM:913/96%",
["Mosu"] = "LT:850/98%SB:801/99%SM:1032/99%",
["Hømelander"] = "LT:856/98%LB:785/98%SM:1000/99%",
["Dracarya"] = "RT:460/61%SB:770/99%LM:939/97%",
["Ysie"] = "LT:832/97%SB:784/99%SM:1042/99%",
["Skyz"] = "LT:842/97%SB:773/99%SM:1010/99%",
["Seedark"] = "ET:430/91%EB:709/94%EM:846/89%",
["Kranich"] = "SB:794/99%SM:928/99%",
["Merdih"] = "LT:813/96%SB:788/99%SM:1008/99%",
["Foehammer"] = "ST:745/99%SB:779/99%SM:937/99%",
["Tonjin"] = "LT:829/96%SB:782/99%LM:913/96%",
["Blitzhuf"] = "LT:836/97%SB:753/99%SM:990/99%",
["Werak"] = "ET:733/89%LB:747/96%SM:1001/99%",
["Gigi"] = "ST:874/99%SB:836/99%SM:1061/99%",
["Saufisaufi"] = "LT:816/96%SB:790/99%SM:981/99%",
["Sykone"] = "ST:739/99%LB:714/96%SM:979/99%",
["Dwayna"] = "LT:860/98%SB:777/99%LM:973/98%",
["Luxferre"] = "ET:414/91%SB:796/99%LM:900/95%",
["Hardwell"] = "ET:784/93%SB:751/99%LM:970/98%",
["Retardos"] = "LT:840/97%SB:797/99%SM:1000/99%",
["Womi"] = "LT:808/95%LB:773/98%LM:951/97%",
["Winifry"] = "ET:767/92%LB:700/98%EM:911/94%",
["Mojan"] = "LT:867/98%LB:780/98%LM:976/98%",
["Sîtalia"] = "ST:949/99%SB:810/99%LM:735/95%",
["Suiki"] = "LT:837/97%LB:654/98%LM:919/97%",
["Nazzran"] = "LT:819/96%LB:764/98%SM:974/99%",
["Fenrîr"] = "LT:836/97%SB:803/99%EM:848/92%",
["Surakai"] = "ST:879/99%SB:834/99%SM:982/99%",
["Athastorm"] = "RT:275/74%LB:756/97%EM:898/93%",
["Liabel"] = "ET:405/90%SB:803/99%SM:969/99%",
["Gorbat"] = "ST:880/99%SB:793/99%LM:849/98%",
["Bushroot"] = "LT:873/98%SB:796/99%SM:1008/99%",
["Entspannt"] = "ST:721/99%SB:781/99%SM:935/99%",
["Flashed"] = "LT:793/95%LB:777/98%LM:892/95%",
["Tweak"] = "ST:876/99%LB:714/95%SM:966/99%",
["Icewalloh"] = "ST:896/99%SB:737/99%SM:981/99%",
["Oleana"] = "LB:728/97%EM:703/81%",
["Tessek"] = "ET:648/82%LB:737/97%EM:836/91%",
["Anron"] = "ET:769/94%LB:647/98%EM:898/94%",
["Hunumukuapua"] = "ST:920/99%SB:791/99%LM:920/95%",
["Binabak"] = "LT:629/97%LB:770/98%LM:867/98%",
["Smi"] = "LT:634/98%LB:734/96%LM:934/96%",
["Alavon"] = "LT:827/96%SB:727/99%SM:995/99%",
["Cæsper"] = "ET:792/94%LB:736/96%LM:826/98%",
["Jaymoh"] = "LT:871/98%SB:787/99%LM:962/98%",
["Jeanella"] = "LT:828/96%SB:781/99%LM:974/98%",
["Presenter"] = "ST:800/99%SB:831/99%SM:1011/99%",
["Tåm"] = "ST:810/99%SB:904/99%SM:1047/99%",
["Dennizz"] = "ST:830/99%SB:785/99%LM:957/97%",
["Beenie"] = "LT:771/97%LB:780/97%SM:924/99%",
["Nektaar"] = "ST:830/99%SB:850/99%SM:980/99%",
["Zasz"] = "ST:843/99%SB:841/99%SM:1119/99%",
["Vizi"] = "ST:809/99%SB:872/99%SM:1050/99%",
["Noradez"] = "ST:838/99%SB:860/99%LM:953/98%",
["Auhur"] = "ST:825/99%SB:814/99%SM:984/99%",
["Skoldo"] = "ST:797/99%SB:804/99%SM:954/99%",
["Blurí"] = "ST:818/99%SB:833/99%SM:1086/99%",
["Bigcritsky"] = "LT:752/95%LB:763/96%SM:951/99%",
["Hacksen"] = "LT:776/98%LB:776/97%LM:797/96%",
["Malvida"] = "ST:792/99%LB:784/98%SM:938/99%",
["Automatikkus"] = "LT:764/97%LB:746/98%EM:799/85%",
["Balzgott"] = "LT:744/95%EB:750/94%EM:865/89%",
["Nogg"] = "ST:812/99%SB:834/99%SM:992/99%",
["Eriksen"] = "ST:798/99%SB:823/99%SM:1027/99%",
["Kobito"] = "ST:803/99%SB:831/99%SM:1060/99%",
["Roguenrolla"] = "ST:714/99%SB:795/99%LM:939/96%",
["Cleavehilde"] = "LT:751/96%LB:789/98%LM:973/97%",
["Acuro"] = "ST:819/99%LB:787/98%SM:1048/99%",
["Rygoku"] = "ST:669/99%LB:767/96%LM:992/98%",
["Gyrot"] = "ST:811/99%SB:833/99%SM:964/99%",
["Swusch"] = "LT:755/96%LB:786/98%LM:957/97%",
["Mykra"] = "ST:799/99%SB:832/99%SM:1005/99%",
["Galidar"] = "LT:759/96%LB:793/98%LM:990/98%",
["Fishyee"] = "ST:813/99%LB:771/97%LM:963/97%",
["Place"] = "LT:633/98%SB:830/99%SM:981/99%",
["Jiji"] = "LT:780/98%SB:752/99%SM:1056/99%",
["Harvi"] = "ST:806/99%SB:833/99%SM:976/99%",
["Mitbutter"] = "LT:768/97%SB:783/99%LM:983/98%",
["Nimz"] = "LT:784/98%SB:806/99%LM:948/98%",
["Isera"] = "ST:813/99%SB:812/99%SM:980/99%",
["Thagumi"] = "ST:796/99%LB:773/97%LM:962/97%",
["Canámo"] = "LT:784/98%LB:781/98%LM:982/98%",
["Kemsi"] = "LT:757/96%LB:751/95%LM:962/97%",
["Slz"] = "ST:735/99%LB:714/98%LM:928/96%",
["Ambition"] = "ST:798/99%SB:804/99%SM:1026/99%",
["Glückswurst"] = "LT:772/97%SB:799/99%EM:906/92%",
["Kloppix"] = "ST:743/99%SB:816/99%SM:952/99%",
["Neves"] = "ST:690/99%SB:822/99%SM:947/99%",
["Critty"] = "LT:770/97%LB:782/98%EM:924/94%",
["Erikzwurgel"] = "ST:840/99%SB:836/99%SM:987/99%",
["Boomdoom"] = "LT:780/98%LB:796/98%SM:1024/99%",
["Layering"] = "LT:784/98%SB:852/99%SM:1038/99%",
["Steveedge"] = "LT:777/97%EB:739/93%LM:944/96%",
["Buttspencer"] = "LT:755/96%LB:765/96%LM:965/97%",
["Mizukosan"] = "ST:818/99%SB:799/99%LM:976/98%",
["Coldz"] = "ST:826/99%SB:820/99%LM:950/98%",
["Bigfi"] = "ST:796/99%SB:839/99%SM:1077/99%",
["Hârdcore"] = "LT:785/98%SB:804/99%SM:1041/99%",
["Rägäkiller"] = "LT:768/97%SB:795/99%SM:998/99%",
["Kln"] = "LT:761/96%LB:767/96%EM:913/94%",
["Lilus"] = "LT:776/97%SB:805/99%SM:1003/99%",
["Vysola"] = "ST:810/99%SB:802/99%SM:1031/99%",
["Zovi"] = "LT:851/98%SB:752/99%SM:991/99%",
["Laghul"] = "ST:918/99%SB:825/99%SM:1024/99%",
["Lancy"] = "ET:787/94%EB:661/90%EM:693/80%",
["Rônnyy"] = "ST:893/99%SB:800/99%SM:999/99%",
["Aerox"] = "LT:650/98%LB:765/98%LM:961/98%",
["Aaroff"] = "ST:905/99%SB:794/99%SM:1017/99%",
["Hoppsi"] = "ST:894/99%LB:739/97%LM:952/97%",
["Theza"] = "LT:835/97%LB:735/97%LM:902/95%",
["Deadbull"] = "LT:866/98%SB:777/99%SM:982/99%",
["Linu"] = "LT:871/98%SB:802/99%SM:909/99%",
["Taote"] = "LT:846/98%EB:678/93%EM:708/82%",
["Zwergdlx"] = "ST:789/99%LB:755/98%UM:137/37%",
["Kl"] = "ST:893/99%LB:668/98%EM:788/88%",
["Kainis"] = "LT:863/98%LB:767/98%SM:957/99%",
["Saix"] = "ST:753/99%LB:745/98%LM:957/98%",
["Synthwave"] = "LT:801/95%SB:813/99%SM:1015/99%",
["Hottalotta"] = "LT:805/95%SB:776/99%LM:915/97%",
["Miaya"] = "ST:877/99%LB:758/98%LM:934/98%",
["Iboshi"] = "ST:734/99%LB:744/97%EM:887/94%",
["Nécrolyt"] = "LT:847/97%LB:745/97%SM:1005/99%",
["Drschnâggêls"] = "LT:517/95%LB:745/97%EM:780/85%",
["Murphy"] = "LT:865/98%LB:637/98%LM:961/98%",
["Anja"] = "LT:803/96%LB:752/98%LM:939/97%",
["Mahareth"] = "LT:860/98%LB:590/96%SM:937/99%",
["Grobí"] = "LT:846/97%SB:687/99%LM:916/96%",
["Blackouts"] = "ET:776/93%EB:473/89%RM:601/70%",
["Airbeat"] = "ET:778/93%LB:707/95%LM:888/95%",
["Lenaid"] = "LT:844/97%LB:762/98%SM:1020/99%",
["Syzygy"] = "ET:797/94%SB:781/99%EM:895/94%",
["Foxzilla"] = "LT:835/97%LB:762/98%LM:905/96%",
["Tionium"] = "ET:776/93%EB:674/93%RM:598/70%",
["Healmob"] = "ST:742/99%EB:682/93%LM:943/97%",
["Teho"] = "ET:776/94%LB:754/98%LM:901/96%",
["Ellowyn"] = "LT:833/97%SB:772/99%SM:897/99%",
["Lanari"] = "LT:799/95%SB:850/99%LM:927/97%",
["Dachilla"] = "LT:855/98%LB:736/97%LM:938/97%",
["Wagant"] = "ET:746/91%LB:769/98%LM:928/96%",
["Fumi"] = "ET:750/91%SB:777/99%LM:939/98%",
["Blafreak"] = "LT:560/97%EB:695/94%LM:922/97%",
["Liduen"] = "LT:832/97%LB:740/97%LM:830/98%",
["Elenyaa"] = "ST:942/99%SB:844/99%SM:1019/99%",
["Klingatu"] = "LT:829/96%LB:726/96%SM:1000/99%",
["Moragrim"] = "LT:821/96%LB:736/95%EM:890/93%",
["Soroma"] = "ET:767/92%EB:696/94%LM:950/98%",
["Arianis"] = "LT:824/96%SB:802/99%LM:974/98%",
["Aryi"] = "ST:831/99%SB:826/99%SM:993/99%",
["Ocean"] = "LT:822/96%LB:774/98%LM:954/98%",
["Kolari"] = "ET:776/94%EB:541/78%LM:756/96%",
["Elyxa"] = "ST:707/99%LB:751/98%LM:940/97%",
["Nightplant"] = "ST:884/99%SB:828/99%SM:1023/99%",
["Scrotsh"] = "LT:801/95%LB:725/96%LM:917/96%",
["Palisöse"] = "LT:834/97%SB:758/99%SM:967/99%",
["Myp"] = "LT:816/96%LB:592/96%EM:802/86%",
["Veriana"] = "ET:743/92%LB:765/98%EM:861/92%",
["Nedinsxsicht"] = "LT:826/96%SB:781/99%LM:954/98%",
["Endorphins"] = "ET:756/91%SB:695/99%LM:970/98%",
["Niiv"] = "ET:759/92%EB:652/90%EM:895/94%",
["Lenä"] = "ST:729/99%LB:748/98%LM:961/98%",
["Krosis"] = "ST:738/99%EB:522/92%EM:853/93%",
["Aldoer"] = "ET:660/83%EB:649/90%EM:889/94%",
["Lmoseinvater"] = "LT:788/98%LB:748/98%LM:947/96%",
["Coconutjoe"] = "ET:720/92%LB:770/97%LM:914/95%",
["Silvâ"] = "LB:760/96%LM:963/97%",
["Blyatbear"] = "ET:738/94%EB:750/94%LM:962/97%",
["Pwnflakes"] = "UT:266/40%EB:739/93%LM:952/96%",
["Glmll"] = "LT:756/96%LB:768/96%SM:941/99%",
["Dabby"] = "ET:739/94%LB:739/98%SM:938/99%",
["Felz"] = "LT:767/97%LB:781/98%LM:901/98%",
["Smaugs"] = "LT:752/96%SB:795/99%LM:945/97%",
["Cãnãj"] = "ET:682/89%LB:715/98%EM:848/90%",
["Hollorok"] = "ET:691/90%LB:775/97%LM:937/95%",
["Moqtah"] = "LT:768/97%LB:781/98%LM:824/96%",
["Samuucards"] = "ST:837/99%SB:868/99%SM:1143/99%",
["Goto"] = "LT:765/97%LB:758/95%LM:919/95%",
["Hirobeauty"] = "ET:697/90%EB:744/94%EM:899/92%",
["Quelloria"] = "LT:756/96%LB:681/97%EM:774/94%",
["Shijo"] = "LT:771/97%SB:761/99%SM:1005/99%",
["Exy"] = "SB:867/99%LM:970/97%",
["Vesley"] = "LT:765/97%LB:752/95%LM:921/95%",
["Zaiy"] = "LT:460/95%LB:766/96%LM:965/97%",
["Ottilie"] = "LT:775/97%SB:808/99%LM:968/97%",
["Icanstunlol"] = "LT:778/97%LB:788/98%SM:1023/99%",
["Griffith"] = "ST:799/99%LB:786/98%LM:932/96%",
["Nuddelsupp"] = "ET:688/89%LB:759/95%EM:893/92%",
["Bari"] = "ET:730/93%LB:785/98%LM:926/95%",
["Sharoc"] = "ET:666/87%LB:775/97%LM:926/95%",
["Gaba"] = "ST:807/99%LB:783/98%SM:957/99%",
["Katyparry"] = "LT:762/96%LB:778/97%EM:919/94%",
["Shenayla"] = "LT:766/97%LB:778/98%LM:969/97%",
["Hobbster"] = "ET:732/93%SB:790/99%EM:905/93%",
["Argotol"] = "ET:721/93%LB:788/98%LM:955/96%",
["Denlico"] = "LT:769/97%LB:785/98%EM:880/90%",
["Rogie"] = "ET:734/94%LB:755/95%EM:848/89%",
["Bombatar"] = "LT:437/95%LB:762/95%EM:894/89%",
["Ricardomilos"] = "ST:672/99%LB:719/98%LM:876/98%",
["Anthrazz"] = "LT:597/98%LB:765/96%EM:909/92%",
["Kartano"] = "ET:647/85%LB:736/98%EM:909/93%",
["Viala"] = "ET:735/94%LB:792/98%LM:955/97%",
["Môrty"] = "LT:635/98%LB:733/98%SM:935/99%",
["Stulle"] = "ET:722/92%LB:766/96%LM:794/95%",
["Ciso"] = "ET:689/89%LB:755/95%LM:932/96%",
["Theowynn"] = "ET:618/83%EB:741/94%EM:907/93%",
["Meburstudead"] = "ET:731/93%SB:780/99%LM:964/97%",
["Chokkii"] = "LT:787/98%LB:793/98%LM:965/97%",
["Spane"] = "LT:550/97%LB:764/96%LM:941/96%",
["Tydusz"] = "ST:754/99%LB:729/98%LM:828/97%",
["Sakûra"] = "LT:761/96%LB:775/97%LM:963/97%",
["Shandora"] = "LT:596/98%LB:767/96%EM:738/93%",
["Dragor"] = "ET:706/91%LB:767/96%LM:950/97%",
["Shuun"] = "ST:797/99%LB:787/98%LM:991/98%",
["Mellt"] = "RT:509/71%LB:760/96%LM:908/95%",
["Tyronicz"] = "ET:675/88%LB:756/95%EM:902/94%",
["Summermarty"] = "ET:321/89%LB:762/96%LM:909/95%",
["Namorah"] = "LT:767/97%LB:766/96%EM:917/94%",
["Blumenjunge"] = "ET:680/89%LB:746/98%LM:932/96%",
["Yirrakra"] = "ET:699/90%LB:758/95%LM:803/96%",
["Zino"] = "RT:341/60%EB:726/92%EM:558/87%",
["Provodkante"] = "LT:497/96%LB:758/95%EM:880/91%",
["Brutalbreit"] = "ST:742/99%LB:717/98%LM:954/97%",
["Snagger"] = "LT:613/98%LB:772/97%EM:916/93%",
["Bamboozed"] = "ET:375/92%EB:735/93%EM:913/93%",
["Múte"] = "ST:748/99%LB:795/98%LM:970/97%",
["Gutdok"] = "ET:742/94%LB:762/96%EM:891/91%",
["Kuroneko"] = "ET:655/86%EB:559/91%EM:926/94%",
["Yassou"] = "LT:759/96%LB:706/97%LM:932/95%",
["Kramia"] = "ET:370/92%LB:778/97%LM:947/97%",
["Thangart"] = "ST:738/99%LB:765/97%LM:952/97%",
["Woodraider"] = "LT:762/96%LB:722/98%LM:942/96%",
["Giftflaschl"] = "ET:744/94%LB:723/98%EM:929/94%",
["Sisyphøs"] = "ST:782/99%LB:789/98%SM:1011/99%",
["Artania"] = "LT:442/95%SB:778/99%SM:937/99%",
["Jackofblades"] = "RT:224/72%EB:747/94%LM:922/95%",
["Bebe"] = "LT:756/96%EB:738/93%LM:807/96%",
["Ònehit"] = "LT:479/96%LB:752/95%LM:957/96%",
["Freast"] = "LT:568/97%LB:783/98%LM:844/96%",
["Sikoz"] = "LT:415/95%EB:734/93%EM:635/90%",
["Gade"] = "ST:878/99%SB:939/99%SM:1079/99%",
["Âxion"] = "ET:624/84%EB:734/93%EM:875/90%",
["Krakíe"] = "LT:562/97%EB:744/94%EM:898/92%",
["Serazer"] = "ET:694/90%LB:758/95%LM:952/96%",
["Swîfty"] = "ET:642/83%LB:764/96%EM:924/94%",
["Toosickbro"] = "LT:762/96%EB:740/93%LM:902/98%",
["Mikritjudei"] = "ET:730/93%LB:756/95%EM:730/92%",
["Walden"] = "LT:777/97%LB:772/97%EM:924/94%",
["Vaquero"] = "LT:840/97%SB:771/99%SM:1002/99%",
["Slimshadow"] = "CT:30/3%LB:742/98%LM:897/96%",
["Beanz"] = "ET:771/93%SB:845/99%LM:924/97%",
["Wawawumm"] = "LT:831/96%LB:755/97%EM:701/84%",
["Rivurr"] = "SB:771/99%SM:983/99%",
["Slîce"] = "LT:644/98%LB:746/98%LM:899/95%",
["Eritrus"] = "ST:766/99%LB:743/96%EM:903/93%",
["Sargoth"] = "ET:449/92%LB:761/98%LM:922/95%",
["Athax"] = "ET:792/94%SB:776/99%LM:809/97%",
["Personalheal"] = "ST:717/99%SB:807/99%SM:1002/99%",
["Namohc"] = "ET:636/82%LB:762/97%SM:1002/99%",
["Pazifist"] = "ET:755/91%LB:783/98%LM:945/98%",
["Reds"] = "ET:614/80%LB:766/98%LM:941/96%",
["Lügnix"] = "LT:537/96%SB:798/99%SM:986/99%",
["Poaser"] = "ET:364/87%LB:739/96%EM:872/91%",
["Soulripper"] = "ET:769/92%SB:820/99%SM:1017/99%",
["Shamuhna"] = "ET:366/88%SB:838/99%SM:1031/99%",
["Funi"] = "LT:870/98%LB:763/98%LM:937/97%",
["Kilaine"] = "ET:664/85%LB:727/97%LM:915/96%",
["Murtaugh"] = "LT:643/98%SB:790/99%LM:971/98%",
["Risba"] = "LT:871/98%SB:779/99%LM:969/98%",
["Muks"] = "LT:533/96%LB:761/98%LM:943/98%",
["Bhang"] = "LT:844/97%LB:757/97%LM:976/98%",
["Flashbang"] = "ST:714/99%SB:730/99%LM:814/97%",
["Làx"] = "ET:612/76%LB:755/97%LM:925/97%",
["Necronoma"] = "LT:861/98%LB:763/98%LM:966/98%",
["Nackensteak"] = "ET:380/90%SB:798/99%SM:985/99%",
["Exitas"] = "LT:820/97%SB:823/99%SM:1026/99%",
["Sangu"] = "LT:519/96%LB:645/98%LM:938/96%",
["Phonzie"] = "LT:877/98%LB:742/96%LM:931/96%",
["Firala"] = "ET:366/87%LB:735/97%SM:1009/99%",
["Fana"] = "LT:856/98%SB:805/99%SM:989/99%",
["Esus"] = "UT:88/27%LB:711/96%LM:907/95%",
["Missmadame"] = "LT:676/98%LB:625/96%LM:942/97%",
["Cindl"] = "ET:289/76%LB:727/95%SM:987/99%",
["Athiniel"] = "LB:731/97%EM:829/89%",
["Jigs"] = "LT:508/95%LB:744/97%LM:945/97%",
["Hakkuna"] = "ET:780/94%SB:783/99%SM:880/99%",
["Greop"] = "LT:635/98%SB:694/99%LM:898/95%",
["Ravgeer"] = "ET:474/94%LB:660/98%EM:601/89%",
["Dêlârîa"] = "LT:865/98%SB:753/99%LM:946/98%",
["Rásalghul"] = "ET:788/94%LB:618/97%EM:880/93%",
["Lucretos"] = "EB:703/94%EM:902/93%",
["Sharrakor"] = "ST:755/99%LB:760/98%LM:914/95%",
["Neujahr"] = "RT:189/59%LB:705/96%EM:738/81%",
["Majirel"] = "ET:431/93%LB:713/95%EM:886/94%",
["Halu"] = "LT:577/97%LB:757/98%LM:946/97%",
["Maggivonhowi"] = "LT:555/97%LB:773/98%LM:953/97%",
["Zottlschratz"] = "ET:336/84%LB:766/98%EM:865/93%",
["Sanitöter"] = "LT:846/97%SB:772/99%SM:1000/99%",
["Dluv"] = "UT:284/36%EB:593/85%EM:556/75%",
["Hooftop"] = "ET:612/79%LB:760/97%EM:913/94%",
["Vátras"] = "ET:692/88%LB:728/96%LM:948/97%",
["Manara"] = "LT:550/97%LB:628/97%LM:938/98%",
["Sahl"] = "LT:866/98%LB:762/98%SM:967/99%",
["Soría"] = "LT:541/96%LB:744/97%EM:865/92%",
["Murmile"] = "ET:779/93%LB:748/97%LM:931/97%",
["Eikó"] = "ST:784/99%LB:747/96%LM:923/95%",
["Magîer"] = "ET:709/88%LB:631/98%LM:942/97%",
["Aywin"] = "RT:262/74%EB:538/94%LM:899/96%",
["Jaleria"] = "ET:764/92%LB:723/96%LM:921/96%",
["Arastit"] = "ET:369/86%LB:644/97%EM:826/88%",
["Wartec"] = "LT:812/95%LB:720/95%LM:747/95%",
["Quent"] = "LT:593/97%SB:722/99%LM:818/97%",
["Olgras"] = "ET:710/87%SB:772/99%SM:982/99%",
["Yaelisil"] = "LT:836/97%SB:785/99%LM:963/98%",
["Amador"] = "LT:509/95%SB:681/99%EM:872/93%",
["Opheliablack"] = "ET:393/89%LB:707/95%EM:815/88%",
["Raygoona"] = "LT:680/98%LB:746/98%LM:945/98%",
["Riplucifron"] = "ET:643/81%LB:761/98%LM:947/97%",
["Farrisonhord"] = "LT:795/95%LB:754/98%EM:822/88%",
["Dralnu"] = "LT:562/96%LB:736/96%EM:712/80%",
["Clerk"] = "LT:861/98%LB:675/98%LM:957/98%",
["Besimo"] = "ST:848/99%SB:797/99%LM:963/98%",
["Punkrock"] = "ET:753/91%LB:761/98%LM:914/96%",
["Eustass"] = "ET:794/94%LB:754/97%LM:942/98%",
["Stille"] = "ST:852/99%SB:765/99%LM:869/98%",
["Loreana"] = "LT:762/96%EB:752/94%LM:952/96%",
["Shanqs"] = "LT:770/97%LB:737/98%RM:501/57%",
["Muksli"] = "LT:788/98%LB:739/96%LM:932/98%",
["Nordwand"] = "ST:812/99%SB:813/99%SM:1001/99%",
["Seqertepu"] = "LT:774/97%LB:766/97%LM:941/98%",
["Gabotok"] = "ET:657/86%LB:767/96%LM:857/97%",
["Dazzi"] = "LT:771/97%SB:805/99%SM:1019/99%",
["Killmeplz"] = "LT:789/98%SB:815/99%LM:999/98%",
["Twentykcrit"] = "LT:743/95%LB:753/95%EM:891/92%",
["Hanswanderer"] = "LT:768/97%LB:777/97%LM:820/96%",
["Grimoire"] = "ST:828/99%SB:844/99%SM:1037/99%",
["Minifeal"] = "ST:815/99%SB:879/99%LM:995/98%",
["Doomhilda"] = "ST:814/99%SB:816/99%SM:976/99%",
["Gannes"] = "LT:767/97%LB:793/98%SM:912/99%",
["Clixx"] = "LT:754/96%LB:754/95%EM:855/90%",
["Corran"] = "LT:765/96%LB:764/96%EM:907/92%",
["Farêwell"] = "LT:769/97%EB:750/94%LM:957/97%",
["Harrk"] = "LT:671/98%LB:773/97%LM:860/98%",
["Skyrro"] = "LT:769/97%EB:748/94%EM:888/91%",
["Chromm"] = "ST:799/99%LB:744/98%LM:976/98%",
["Zky"] = "LT:768/97%LB:742/96%SM:901/99%",
["Nazzo"] = "LT:761/96%LB:767/96%LM:930/95%",
["Sadura"] = "ST:806/99%LB:762/96%LM:947/96%",
["Mikaelias"] = "LT:788/98%LB:787/98%SM:944/99%",
["Fluu"] = "LT:761/97%SB:743/99%SM:1006/99%",
["Nyrelia"] = "LT:788/98%SB:831/99%LM:952/96%",
["Chuxsen"] = "LT:763/96%SB:792/99%SM:1042/99%",
["Tyraela"] = "ST:820/99%SB:869/99%LM:989/98%",
["Serenetas"] = "ST:834/99%SB:774/99%SM:1054/99%",
["Ellowan"] = "ET:724/92%EB:738/93%LM:927/95%",
["Kaelte"] = "LT:768/97%SB:838/99%SM:1012/99%",
["Iwan"] = "LT:776/97%LB:759/95%LM:970/97%",
["Fjwarri"] = "ET:736/94%LB:769/97%LM:937/95%",
["Zorlon"] = "LT:767/97%LB:791/98%LM:990/98%",
["Nyarlathotep"] = "ST:809/99%SB:851/99%SM:1000/99%",
["Rreid"] = "ST:794/99%LB:773/98%LM:947/98%",
["Zentaurus"] = "LT:760/96%LB:692/97%EM:706/93%",
["Jilla"] = "ET:742/94%LB:719/98%LM:936/95%",
["Schurkengnom"] = "LT:756/96%LB:766/96%EM:924/94%",
["Hagur"] = "LT:758/96%LB:779/98%SM:1052/99%",
["Irendiel"] = "ST:880/99%SB:861/99%SM:1098/99%",
["Snowii"] = "ET:690/90%LB:771/97%LM:933/98%",
["Dinh"] = "LT:786/98%SB:728/99%SM:1019/99%",
["Swoup"] = "ET:713/92%LB:774/97%LM:976/98%",
["Zeezo"] = "ST:811/99%LB:787/98%SM:1012/99%",
["Spells"] = "ET:736/94%EB:718/92%LM:925/95%",
["Zwicker"] = "LT:788/98%SB:822/99%SM:1012/99%",
["Daphnis"] = "LT:762/97%SB:741/99%SM:1019/99%",
["Dodt"] = "ST:806/99%SB:755/99%LM:971/98%",
["Casta"] = "LT:778/98%EB:718/92%EM:805/86%",
["Hathey"] = "LT:780/98%SB:782/99%LM:959/97%",
["Fridge"] = "LT:778/98%SB:836/99%SM:1015/99%",
["Cecillé"] = "LT:772/97%LB:780/98%LM:923/96%",
["Strunzbacke"] = "ET:698/91%EB:732/93%EM:902/94%",
["Ehrenkerl"] = "ST:734/99%EB:595/93%EM:923/94%",
["Zamzuel"] = "ST:839/99%SB:813/99%SM:1090/99%",
["Nitrorizor"] = "LT:770/97%SB:830/99%LM:889/96%",
["Gc"] = "ST:859/99%SB:951/99%SM:1014/99%",
["Sigrun"] = "ET:724/93%LB:779/97%LM:941/96%",
["Kyroo"] = "LT:776/97%EB:719/91%EM:618/87%",
["Bernúr"] = "ET:357/90%LB:766/96%LM:968/97%",
["Wildespony"] = "ET:725/93%EB:702/89%EM:858/91%",
["Könîg"] = "LT:771/97%SB:803/99%SM:1029/99%",
["Garrow"] = "LT:588/97%LB:762/98%LM:932/97%",
["Stenze"] = "LT:799/95%LB:704/95%LM:963/98%",
["Abada"] = "ET:753/91%LB:633/97%LM:877/95%",
["Dopamind"] = "ST:768/99%LB:579/95%LM:940/98%",
["Fòxx"] = "ST:679/99%LB:752/98%LM:975/98%",
["Fakenewz"] = "ET:775/93%LB:753/98%LM:900/95%",
["Rottingham"] = "RT:569/72%EB:580/83%SM:1012/99%",
["Theologe"] = "ET:591/78%EB:623/86%EM:827/92%",
["Medipack"] = "ST:753/99%SB:794/99%SM:1038/99%",
["Cupy"] = "ET:714/88%LB:765/98%LM:912/95%",
["Sempha"] = "LT:554/96%EB:673/92%EM:869/92%",
["Shalyn"] = "ST:759/99%LB:738/97%LM:957/98%",
["Nøxi"] = "ET:779/93%LB:712/95%EM:825/89%",
["Nappelbauer"] = "ET:782/93%LB:758/98%LM:933/97%",
["Westologe"] = "ET:773/93%LB:761/98%LM:943/97%",
["Ilvat"] = "LT:633/98%LB:670/98%LM:962/98%",
["Gavriel"] = "LT:843/97%LB:765/98%LM:900/95%",
["Autohit"] = "LT:842/97%SB:819/99%LM:916/95%",
["Discokuh"] = "LT:864/98%LB:748/97%LM:968/98%",
["Tig"] = "ET:711/90%EB:576/83%EM:850/89%",
["Binza"] = "ET:745/90%LB:763/98%SM:901/99%",
["Slyi"] = "ST:817/99%SB:789/99%SM:1044/99%",
["Fortheloot"] = "LT:838/97%SB:771/99%LM:909/96%",
["Kolóss"] = "LT:834/97%LB:710/95%LM:970/98%",
["Knud"] = "ET:662/83%LB:719/96%LM:920/96%",
["Ilyasviel"] = "ET:742/90%EB:691/93%EM:886/94%",
["Bartlbe"] = "LT:861/98%LB:754/98%LM:947/97%",
["Alysara"] = "LT:861/98%SB:816/99%SM:1005/99%",
["Ghalem"] = "LT:876/98%SB:726/99%LM:980/98%",
["Miraculay"] = "LT:835/96%SB:833/99%LM:976/98%",
["Reactive"] = "LT:830/97%LB:754/97%SM:1002/99%",
["Wurzelgemüse"] = "ST:907/99%SB:781/99%SM:980/99%",
["Akizu"] = "LT:844/97%SB:808/99%SM:996/99%",
["Tobiwan"] = "ET:767/92%LB:639/98%LM:923/97%",
["Lewon"] = "LT:806/95%SB:724/99%EM:555/87%",
["Evanthia"] = "ST:724/99%SB:806/99%SM:975/99%",
["Tanderius"] = "ST:761/99%LB:750/98%EM:677/93%",
["Demo"] = "LT:525/96%LB:725/96%EM:829/89%",
["Katie"] = "ST:884/99%SB:818/99%LM:929/96%",
["Zarathos"] = "LT:799/95%SB:777/99%LM:962/98%",
["Nahr"] = "LT:655/98%LB:684/98%LM:955/98%",
["Funkrosin"] = "ET:737/91%LB:769/98%SM:970/99%",
["Lasir"] = "ET:748/93%SB:833/99%SM:1013/99%",
["Jaig"] = "LT:832/97%SB:794/99%LM:971/98%",
["Kunaz"] = "ET:713/88%SB:799/99%EM:834/92%",
["Puzzls"] = "LT:543/96%LB:718/96%LM:939/97%",
["Azunay"] = "ET:772/94%LB:742/97%EM:875/94%",
["Eruat"] = "ET:720/89%LB:722/96%LM:768/96%",
["Zaphot"] = "ST:813/99%SB:779/99%EM:779/86%",
["Trâudl"] = "ET:754/91%LB:707/95%EM:856/93%",
["Arcwyn"] = "LT:852/97%SB:797/99%SM:1030/99%",
["Renzy"] = "ET:746/91%EB:692/94%LM:905/95%",
["Denali"] = "LT:848/97%LB:741/97%LM:935/96%",
["Celyra"] = "ET:718/88%EB:614/85%LM:910/95%",
["Palakalle"] = "LT:530/96%EB:683/92%LM:924/96%",
["Emendor"] = "ST:692/99%LB:727/96%LM:918/97%",
["Mizumaru"] = "ET:773/94%EB:684/94%SM:979/99%",
["Raidbull"] = "LT:803/95%EB:605/86%EM:817/91%",
["Djin"] = "ET:663/85%LB:555/95%EM:860/94%",
["Razaila"] = "ET:707/87%LB:651/98%SM:970/99%",
["Leekör"] = "LT:847/97%EB:664/91%EM:822/90%",
["Leftigon"] = "LT:868/98%LB:762/98%LM:974/98%",
["Gannjapanda"] = "ET:690/87%LB:734/95%EM:873/91%",
["Pomyo"] = "ET:745/91%LB:709/95%LM:822/98%",
["Cinthia"] = "LT:832/97%SB:778/99%SM:998/99%",
["Klingebiel"] = "ET:754/91%LB:738/97%LM:938/96%",
["Luciferion"] = "ET:766/92%EB:673/92%EM:850/91%",
["Chambermaid"] = "ET:760/91%LB:761/97%SM:992/99%",
["Moeplord"] = "ET:689/86%EB:691/94%EM:600/90%",
["Extralarge"] = "ET:384/93%EB:730/94%LM:938/96%",
["Fafaza"] = "ET:679/88%LB:751/95%EM:734/78%",
["Illunaghor"] = "ET:684/89%EB:741/94%LM:961/97%",
["Alto"] = "LT:675/98%SB:768/99%SM:1006/99%",
["Spuggi"] = "ST:796/99%SB:823/99%SM:1007/99%",
["Cyra"] = "LT:789/98%SB:778/99%SM:1038/99%",
["Garga"] = "ST:808/99%SB:863/99%SM:1048/99%",
["Tríck"] = "ET:664/87%LB:770/97%LM:978/98%",
["Deedlitt"] = "ET:699/90%LB:784/98%SM:1003/99%",
["Burley"] = "ST:804/99%SB:846/99%LM:947/96%",
["Ajur"] = "ST:802/99%SB:827/99%SM:1034/99%",
["Stepback"] = "ET:647/84%EB:748/94%EM:770/94%",
["Xelly"] = "ET:564/76%LB:690/97%LM:898/98%",
["Schadora"] = "RT:184/63%LB:756/95%LM:954/97%",
["Garymcstabby"] = "ET:719/92%LB:773/97%LM:906/98%",
["Critvanhinte"] = "LB:762/96%LM:960/97%",
["Piddy"] = "LB:767/96%LM:954/96%",
["Xstrykee"] = "ET:322/87%LB:784/98%LM:989/98%",
["Derverrückte"] = "ET:741/94%LB:764/96%LM:803/95%",
["Shià"] = "ET:362/90%LB:763/96%LM:971/97%",
["Arnoy"] = "ET:630/83%LB:736/98%EM:881/91%",
["Huggy"] = "LT:548/97%LB:764/96%EM:898/91%",
["Zeió"] = "ET:711/92%LB:758/95%LM:890/98%",
["Tornac"] = "ET:690/88%LB:756/95%LM:958/97%",
["Screamm"] = "ST:754/99%LB:781/98%LM:948/96%",
["Fazzer"] = "ET:672/87%LB:766/96%EM:904/93%",
["Ecos"] = "ET:366/92%LB:757/95%EM:482/81%",
["Freddifritte"] = "ET:701/90%LB:780/98%LM:977/98%",
["Gurglomosch"] = "RT:524/71%LB:635/95%EM:887/91%",
["Stunley"] = "ET:728/93%EB:732/92%EM:885/90%",
["Grimloc"] = "ST:681/99%EB:721/91%EM:611/88%",
["Thorgal"] = "ET:712/91%LB:709/97%EM:920/94%",
["Livoo"] = "ET:377/91%LB:764/96%EM:872/89%",
["Warrjin"] = "ET:722/92%LB:752/95%EM:644/90%",
["Mallrich"] = "LT:753/95%SB:810/99%SM:990/99%",
["Seiya"] = "LT:772/97%LB:706/97%LM:963/97%",
["Archaon"] = "ET:666/90%LB:683/98%LM:947/97%",
["Muyu"] = "ET:734/94%LB:760/96%LM:943/96%",
["Arcliteh"] = "ET:700/90%EB:726/92%EM:865/91%",
["Neltheraku"] = "ET:588/77%EB:750/94%EM:865/89%",
["Crankyx"] = "ET:708/91%LB:636/95%LM:947/96%",
["Grennini"] = "ST:763/99%LB:772/97%LM:968/98%",
["Skizle"] = "LT:521/96%LB:770/97%LM:937/95%",
["Ferdydertod"] = "ET:582/78%EB:734/93%EM:885/92%",
["Yesnig"] = "ST:813/99%SB:866/99%SM:980/99%",
["Lutgar"] = "ET:730/93%SB:784/99%LM:952/96%",
["Kíllmeplz"] = "LT:781/98%LB:762/96%LM:954/96%",
["Refler"] = "RT:211/70%LB:776/97%EM:859/88%",
["Rummsda"] = "LT:451/95%EB:731/92%EM:927/94%",
["Violet"] = "ST:792/99%SB:804/99%SM:1032/99%",
["Yukha"] = "ET:650/86%LB:765/96%EM:913/93%",
["Omegapepega"] = "ET:682/88%EB:741/94%SM:926/99%",
["Chrinity"] = "LT:609/98%LB:751/95%LM:909/98%",
["Sveezy"] = "EB:731/93%EM:869/89%",
["Gikay"] = "UT:338/46%LB:773/97%EM:602/87%",
["Lagger"] = "ST:709/99%LB:774/97%LM:830/96%",
["Vaakoo"] = "ET:708/90%LB:767/96%LM:968/97%",
["Phorus"] = "EB:737/92%LM:929/95%",
["Deztron"] = "LT:783/98%LB:769/97%LM:942/96%",
["Smaugsiline"] = "ET:728/93%LB:767/96%LM:930/95%",
["Friedl"] = "LT:788/98%EB:752/94%LM:933/95%",
["Nightz"] = "ET:403/94%LB:774/97%SM:1030/99%",
["Chavez"] = "ET:309/87%EB:731/92%EM:892/93%",
["Scheline"] = "ET:674/87%LB:773/97%EM:931/94%",
["Proctor"] = "ET:689/89%EB:747/94%EM:660/91%",
["Totar"] = "ET:711/91%EB:741/93%EM:871/89%",
["Blackdead"] = "ET:737/94%LB:714/98%EM:903/92%",
["Kargara"] = "LT:762/96%LB:762/96%LM:960/97%",
["Sanajiren"] = "ET:722/93%LB:712/98%EM:854/89%",
["Streex"] = "ET:348/90%LB:719/98%LM:996/98%",
["Smoki"] = "ET:675/88%LB:710/98%EM:905/92%",
["Rizmo"] = "LT:754/95%LB:767/96%EM:918/94%",
["Yuboh"] = "ET:654/86%EB:748/94%LM:952/96%",
["Farmdose"] = "ET:680/87%EB:740/93%LM:930/95%",
["Demonian"] = "ET:728/93%EB:738/93%LM:934/96%",
["Leyda"] = "ET:704/90%LB:753/95%EM:905/93%",
["Wyndz"] = "EB:730/92%LM:936/95%",
["Krümelkorn"] = "LT:589/98%LB:765/96%EM:928/93%",
["Kayze"] = "ET:734/93%LB:760/96%EM:893/92%",
["Teajunky"] = "LT:630/97%EB:704/93%SM:902/99%",
["Broxon"] = "ET:670/85%EB:698/93%RM:381/74%",
["Bormelot"] = "RT:560/73%LB:725/97%EM:878/93%",
["Diida"] = "ET:418/90%LB:757/97%LM:956/97%",
["Shamboozled"] = "LT:578/97%LB:614/96%LM:735/95%",
["Despee"] = "ET:447/93%LB:752/98%LM:961/98%",
["Muhtalist"] = "RT:381/52%LB:757/97%LM:935/96%",
["Shockybalboa"] = "UT:32/40%EB:678/92%EM:872/91%",
["Wetta"] = "ET:797/94%EB:706/93%EM:862/90%",
["Rlycooldude"] = "ET:609/90%LB:625/95%EM:780/89%",
["Felizar"] = "ET:411/91%LB:724/97%EM:800/87%",
["Magicmuffin"] = "LT:533/96%LB:758/98%SM:1011/99%",
["Lookmytotem"] = "ET:417/90%LB:753/97%EM:866/91%",
["Morxli"] = "ET:439/92%EB:655/91%LM:950/98%",
["Alania"] = "SB:783/99%SM:973/99%",
["Bearpaw"] = "RT:497/68%LB:766/98%LM:923/95%",
["Tales"] = "ET:484/94%LB:755/97%EM:723/81%",
["Daballz"] = "RT:422/56%EB:713/93%EM:900/93%",
["Crunch"] = "UT:278/35%EB:646/91%EM:849/91%",
["Ruya"] = "LT:527/96%LB:731/97%EM:649/92%",
["Hildi"] = "LT:563/97%LB:726/96%LM:904/95%",
["Smoove"] = "ST:853/99%LB:728/97%EM:792/86%",
["Zardar"] = "LT:561/96%LB:772/98%LM:970/98%",
["Nyraxon"] = "ET:409/76%LB:772/98%EM:893/93%",
["Vharz"] = "LB:734/95%EM:791/85%",
["Ehane"] = "ET:771/92%LB:760/97%LM:744/95%",
["Thondril"] = "LT:621/98%LB:739/97%LM:812/97%",
["Dunkelfunkel"] = "EB:665/90%EM:774/86%",
["Worruk"] = "ET:457/93%LB:733/96%LM:894/95%",
["Kamel"] = "LT:524/96%SB:724/99%EM:690/94%",
["Crackor"] = "CT:125/12%LB:747/96%SM:967/99%",
["Orangejuize"] = "CT:159/17%SB:786/99%LM:971/98%",
["Scadu"] = "LT:831/97%LB:607/97%EM:865/94%",
["Cloudhoof"] = "ET:328/81%LB:601/96%EM:746/88%",
["Ulrìk"] = "ET:469/94%LB:752/97%LM:923/95%",
["Grogor"] = "LT:493/95%LB:745/96%LM:942/96%",
["Shyka"] = "ET:485/94%LB:711/95%LM:920/96%",
["Balanor"] = "LT:539/96%LB:744/97%LM:953/98%",
["Valerija"] = "LT:562/97%LB:754/97%LM:948/97%",
["Nidhogg"] = "ET:492/94%LB:730/95%EM:589/89%",
["Rydin"] = "ET:330/84%LB:727/96%LM:913/96%",
["Hirschberg"] = "LT:816/96%LB:777/98%LM:980/98%",
["Calitotems"] = "ET:418/91%LB:579/95%EM:890/94%",
["Velvet"] = "LT:804/95%LB:753/98%EM:896/94%",
["Miramus"] = "LT:797/95%SB:806/99%SM:1045/99%",
["Xdeadq"] = "LT:860/98%SB:737/99%SM:1002/99%",
["Holyspells"] = "LT:802/95%LB:765/98%EM:868/94%",
["Eos"] = "ET:626/79%EB:623/88%EM:685/79%",
["Nathanios"] = "ET:460/93%LB:747/97%EM:724/79%",
["Sitane"] = "LT:467/95%LB:746/97%EM:758/86%",
["Fatul"] = "ET:432/92%EB:659/91%EM:855/93%",
["Cheapmonday"] = "ET:777/92%LB:632/97%EM:780/86%",
["Knolline"] = "ET:471/94%LB:707/95%LM:859/98%",
["Eir"] = "LB:758/98%LM:951/98%",
["Zugarod"] = "ET:756/91%LB:723/95%EM:787/86%",
["Xyzzall"] = "LT:593/97%SB:781/99%LM:956/98%",
["Geck"] = "RT:221/64%LB:594/95%EM:767/83%",
["Kharl"] = "EB:605/85%EM:794/86%",
["Sharifal"] = "LT:659/98%LB:736/96%EM:521/86%",
["Voices"] = "EB:663/91%EM:868/92%",
["Thegame"] = "ET:405/89%EB:681/91%EM:883/92%",
["Thrar"] = "CT:145/16%LB:727/96%SM:909/99%",
["Khazra"] = "RT:437/58%LB:766/98%EM:864/91%",
["Saslen"] = "ET:382/87%SB:735/99%LM:959/98%",
["Shirâ"] = "ET:610/77%EB:696/94%EM:770/84%",
["Acyx"] = "ET:304/79%EB:634/87%EM:882/93%",
["Argonax"] = "LT:854/97%SB:717/99%SM:1023/99%",
["Thôrax"] = "ET:297/78%EB:673/92%LM:899/96%",
["Rascul"] = "RT:217/65%EB:701/92%LM:919/95%",
["Nôrdwand"] = "ET:721/92%EB:727/92%LM:954/96%",
["Zovia"] = "LT:759/96%LB:786/98%LM:962/97%",
["Blackmerlin"] = "LT:780/98%SB:812/99%LM:976/98%",
["Thanatòs"] = "ST:800/99%SB:821/99%SM:998/99%",
["Doomgiver"] = "ET:677/88%LB:784/98%SM:986/99%",
["Vhala"] = "ST:869/99%SB:857/99%SM:1030/99%",
["Wanjin"] = "LT:755/96%LB:748/95%LM:958/97%",
["Béla"] = "LT:764/97%LB:747/96%LM:946/98%",
["Bohred"] = "ST:823/99%SB:877/99%SM:1044/99%",
["Digitalkid"] = "ST:814/99%SB:801/99%SM:1004/99%",
["Tatjanawurst"] = "LT:768/97%LB:779/97%LM:929/95%",
["Sipo"] = "LT:753/96%LB:749/96%LM:891/96%",
["Avax"] = "ST:793/99%LB:781/97%LM:965/97%",
["Yoni"] = "LT:755/96%LB:770/96%LM:901/98%",
["Stöcker"] = "LT:765/97%LB:780/98%LM:793/97%",
["Advi"] = "ST:783/99%LB:782/98%LM:961/97%",
["Meli"] = "LT:786/98%LB:722/95%LM:948/98%",
["Sunoa"] = "ST:808/99%SB:826/99%SM:1002/99%",
["Toadmuncher"] = "ST:808/99%SB:819/99%LM:988/98%",
["Threz"] = "LT:756/96%EB:749/94%EM:876/91%",
["Emilian"] = "ET:715/93%LB:665/98%LM:986/98%",
["Jamira"] = "ST:698/99%LB:769/98%LM:996/98%",
["Russxtremme"] = "LT:767/97%LB:784/98%LM:976/98%",
["Dumpdonald"] = "ET:700/91%EB:725/92%LM:774/95%",
["Punni"] = "LT:785/98%SB:821/99%SM:1022/99%",
["Jînxed"] = "ST:798/99%SB:807/99%LM:983/98%",
["Brexos"] = "LT:652/98%SB:738/99%SM:962/99%",
["Mára"] = "LT:773/97%EB:748/94%EM:724/76%",
["Gepetto"] = "LT:775/97%EB:709/90%EM:910/92%",
["Derarius"] = "ET:735/94%LB:754/96%LM:969/97%",
["Gýrot"] = "ET:739/94%EB:727/91%EM:868/89%",
["Sgrodo"] = "LT:621/98%SB:860/99%LM:714/95%",
["Tribunus"] = "ET:657/87%EB:743/93%EM:912/93%",
["Ceridwen"] = "ET:726/94%LB:752/95%LM:930/95%",
["Marie"] = "LT:741/95%LB:747/97%LM:986/98%",
["Kromdar"] = "LT:464/96%EB:748/94%EM:870/91%",
["Nostrum"] = "ET:620/82%EB:507/88%LM:808/96%",
["Kiury"] = "ET:711/91%LB:763/96%LM:937/95%",
["Koidini"] = "LT:617/98%LB:780/97%SM:898/99%",
["Uhuralel"] = "ST:773/99%SB:798/99%SM:1006/99%",
["Waris"] = "LT:784/98%SB:864/99%LM:996/98%",
["Rîp"] = "ST:797/99%LB:791/98%LM:952/97%",
["Próòf"] = "ST:829/99%SB:819/99%SM:1015/99%",
["Selesnia"] = "ST:831/99%LB:789/98%SM:1016/99%",
["Zazui"] = "LT:784/98%SB:817/99%SM:1029/99%",
["Stube"] = "ST:796/99%LB:780/98%LM:844/98%",
["Atomkraftzer"] = "LT:781/98%LB:757/97%EM:877/91%",
["Martînlooter"] = "ST:835/99%SB:840/99%SM:1031/99%",
["Seidl"] = "ST:792/99%SB:819/99%SM:1030/99%",
["Snazel"] = "LT:746/95%LB:771/97%LM:954/97%",
["Nopi"] = "ST:725/99%LB:798/98%LM:992/98%",
["Piwa"] = "ET:734/94%LB:732/96%LM:896/96%",
["Drunkest"] = "LT:774/97%SB:865/99%SM:1020/99%",
["Eniyu"] = "ST:800/99%LB:746/97%LM:921/97%",
["Arishi"] = "LT:749/95%SB:808/99%LM:941/96%",
["Jody"] = "ET:735/94%LB:796/98%LM:994/98%",
["Alkareem"] = "LT:764/97%LB:783/98%LM:965/97%",
["Vony"] = "ET:727/93%SB:709/99%LM:767/97%",
["Rimy"] = "ST:827/99%LB:799/98%LM:962/97%",
["Mylina"] = "LT:771/97%LB:782/98%SM:1006/99%",
["All"] = "ST:779/99%EB:738/94%EM:856/94%",
["Vandòóm"] = "ST:756/99%LB:764/96%LM:971/97%",
["Cylar"] = "LT:747/95%LB:770/97%LM:984/98%",
["Aimy"] = "ST:829/99%SB:838/99%LM:943/95%",
["Davora"] = "ET:393/93%LB:783/98%LM:925/97%",
["Melonice"] = "LT:758/96%LB:782/98%LM:966/97%",
["Muros"] = "LT:757/96%SB:865/99%SM:1048/99%",
["Blackbeard"] = "ET:627/79%LB:707/95%LM:832/98%",
["Lexn"] = "ET:623/82%SB:789/99%SM:1027/99%",
["Clixo"] = "LT:579/97%SB:820/99%LM:877/98%",
["Seroo"] = "ET:733/89%LB:744/97%LM:950/98%",
["Noxis"] = "ET:666/83%EB:675/93%EM:839/90%",
["Kwor"] = "ET:741/91%LB:584/96%LM:976/98%",
["Eytz"] = "ET:738/90%LB:716/96%LM:933/97%",
["Zainz"] = "LT:610/97%EB:673/92%EM:824/89%",
["Somobischi"] = "LT:801/95%LB:721/96%EM:803/87%",
["Mayumie"] = "LT:823/96%SB:777/99%LM:929/96%",
["Maldorah"] = "LT:801/95%LB:570/95%LM:904/96%",
["Befron"] = "RT:470/59%EB:697/94%EM:773/84%",
["Loulu"] = "ET:605/77%EB:530/93%RM:554/71%",
["Murakai"] = "ET:671/83%EB:584/81%EM:831/89%",
["Dollydur"] = "ET:656/82%EB:602/85%EM:766/86%",
["Rágnar"] = "ET:573/75%EB:677/92%LM:757/96%",
["Valla"] = "ET:782/94%EB:641/89%EM:731/82%",
["Teyraki"] = "ET:760/92%EB:605/84%EM:863/92%",
["Phizlirp"] = "ST:759/99%LB:746/97%LM:953/97%",
["Netharion"] = "ET:428/93%EB:651/90%EM:897/94%",
["Bronkn"] = "ET:737/90%LB:752/98%LM:936/96%",
["Bratzbock"] = "LT:799/95%SB:778/99%LM:847/98%",
["Debbyharris"] = "ET:688/85%LB:719/96%LM:918/97%",
["Walpurgar"] = "LT:573/97%LB:717/95%LM:925/96%",
["Oldchicken"] = "ET:704/87%LB:729/96%EM:812/88%",
["Khazadum"] = "LT:570/97%EB:650/90%LM:896/96%",
["Elumey"] = "ET:689/86%EB:681/92%SM:976/99%",
["Toastar"] = "ET:798/94%LB:677/98%EM:901/93%",
["Naliya"] = "LT:807/96%LB:734/96%LM:925/96%",
["Aneera"] = "LT:561/97%EB:538/93%LM:819/97%",
["Arkorian"] = "LT:635/98%LB:738/97%EM:842/90%",
["Fraumüller"] = "ET:695/86%EB:612/86%EM:511/84%",
["Xandøs"] = "ET:615/81%EB:704/94%EM:886/93%",
["Ghrotah"] = "LT:539/96%EB:664/91%EM:852/91%",
["Snûs"] = "ST:899/99%SB:794/99%SM:895/99%",
["Tazzy"] = "ET:729/92%LB:712/95%EM:871/92%",
["Poha"] = "ST:714/99%EB:647/89%EM:553/88%",
["Rôsenrot"] = "ET:760/92%EB:619/86%LM:769/96%",
["Larà"] = "ET:360/86%LB:723/96%LM:969/98%",
["Bappra"] = "RT:523/67%EB:572/82%RM:568/72%",
["Fexx"] = "LT:619/98%LB:738/97%LM:915/96%",
["Duff"] = "RT:542/73%LB:720/95%EM:843/90%",
["Desperados"] = "LT:652/98%LB:615/97%LM:848/98%",
["Untiqua"] = "ET:766/93%LB:582/95%RM:347/71%",
["Galoin"] = "LT:549/96%EB:645/90%EM:828/89%",
["Wryven"] = "LT:582/97%LB:728/96%LM:919/96%",
["Nynn"] = "ET:649/81%EB:641/89%LM:888/95%",
["Thaylia"] = "ET:318/83%EB:674/92%EM:816/88%",
["Lilymu"] = "LT:876/98%LB:777/98%LM:924/96%",
["Heartilly"] = "ET:696/86%EB:592/84%LM:771/96%",
["Hiheels"] = "ET:737/90%LB:585/96%LM:953/98%",
["Nails"] = "ET:652/82%LB:712/95%EM:669/93%",
["Tonnzibaby"] = "ET:719/88%LB:722/96%LM:958/98%",
["Mjk"] = "ET:713/89%LB:762/98%LM:927/96%",
["Ragnvald"] = "ET:722/89%EB:695/93%EM:823/88%",
["Holyspírìt"] = "UT:365/48%EB:592/85%EM:764/83%",
["Kaiga"] = "ET:678/84%EB:697/94%EM:814/88%",
["Triton"] = "ET:439/92%EB:704/94%LM:947/97%",
["Ugaabooga"] = "LT:706/95%LB:751/97%LM:943/98%",
["Brond"] = "LT:643/98%EB:567/81%LM:916/96%",
["Snowi"] = "ET:758/92%LB:744/97%LM:957/98%",
["Lostmagic"] = "ET:758/92%EB:668/92%EM:830/89%",
["Vandram"] = "ST:894/99%SB:689/99%LM:949/98%",
["Sôulspirit"] = "ET:681/84%LB:728/96%EM:809/88%",
["Screecha"] = "ET:377/88%EB:614/85%LM:724/95%",
["Kyussa"] = "ET:783/94%LB:707/95%LM:905/96%",
["Dulai"] = "ET:781/94%LB:766/98%SM:978/99%",
["Acrila"] = "RT:236/68%EB:537/77%EM:586/88%",
["Zitroneminze"] = "ET:767/92%EB:615/85%EM:817/88%",
["Zärtlichkeit"] = "LT:625/98%EB:698/94%LM:925/97%",
["Undyed"] = "ET:640/80%EB:683/93%LM:922/96%",
["Girlz"] = "ET:711/91%EB:747/94%EM:879/92%",
["Boy"] = "LT:551/97%EB:738/93%LM:958/97%",
["Kidneymcshot"] = "ET:655/85%EB:721/91%EM:894/91%",
["Vidorra"] = "ET:737/94%LB:767/96%LM:894/98%",
["Spinnerbait"] = "ST:844/99%SB:875/99%SM:1006/99%",
["Raven"] = "LT:438/95%LB:756/95%EM:880/91%",
["Bananasnack"] = "ET:737/94%LB:783/98%LM:933/95%",
["Tycan"] = "LT:470/95%LB:762/96%EM:833/87%",
["Ullihoeness"] = "ST:753/99%EB:743/93%LM:941/96%",
["Siggidiesäge"] = "ET:370/91%LB:757/95%LM:985/98%",
["Kryptto"] = "LT:765/97%LB:727/98%EM:911/94%",
["Cheatefix"] = "ET:680/88%LB:768/96%EM:899/93%",
["Desolator"] = "ET:742/94%LB:783/98%LM:945/96%",
["Lois"] = "ET:247/78%EB:720/91%EM:875/92%",
["Baang"] = "RT:503/68%LB:670/97%EM:837/86%",
["Achernar"] = "ET:708/91%LB:722/98%LM:901/98%",
["Cryphes"] = "RT:453/62%EB:745/94%LM:992/98%",
["Akkon"] = "ET:363/92%EB:743/94%LM:774/95%",
["Sixskins"] = "ET:405/93%EB:734/93%",
["Napalia"] = "ET:706/91%EB:623/94%EM:914/93%",
["Deniá"] = "ST:808/99%LB:764/96%EM:902/92%",
["Prime"] = "ET:671/87%LB:699/97%EM:886/91%",
["Gebieter"] = "ET:698/90%LB:729/98%EM:922/94%",
["Toktan"] = "ST:735/99%LB:771/96%EM:877/90%",
["Waldschas"] = "LT:747/98%SB:797/99%SM:1080/99%",
["Líghtnìng"] = "RT:199/67%LB:767/96%LM:979/98%",
["Nikezjr"] = "ET:707/91%LB:756/95%EM:911/94%",
["Milfner"] = "LB:766/96%LM:934/95%",
["Hordy"] = "ST:793/99%LB:770/97%EM:634/88%",
["Abrayo"] = "ET:662/86%EB:729/92%EM:903/94%",
["Perceive"] = "EB:726/92%EM:844/87%",
["Allmighty"] = "ET:317/86%EB:722/91%EM:870/90%",
["Rikikovin"] = "ET:591/79%LB:674/96%LM:942/96%",
["Vrywen"] = "ST:725/99%LB:755/95%LM:949/96%",
["Envenom"] = "LT:749/95%LB:768/96%EM:884/91%",
["Cruelrogue"] = "ET:643/83%EB:750/94%LM:875/97%",
["Snazzel"] = "EB:738/93%LM:875/97%",
["Gippel"] = "ET:669/87%LB:755/95%EM:905/93%",
["Irageatnoobs"] = "LT:521/97%LB:693/97%LM:972/98%",
["Kiuchi"] = "LT:532/96%EB:744/94%EM:863/88%",
["Roniya"] = "ET:731/93%EB:744/94%",
["Endusrogue"] = "ET:325/87%EB:733/93%EM:895/91%",
["Slimski"] = "LT:745/95%LB:779/97%LM:953/96%",
["Dramon"] = "ET:714/92%LB:779/98%LM:960/98%",
["Bazl"] = "ET:691/89%LB:743/98%EM:912/93%",
["Orclicious"] = "RT:397/57%EB:679/87%EM:587/88%",
["Vessina"] = "ET:697/90%EB:743/94%LM:936/95%",
["Kaala"] = "ST:708/99%LB:739/98%LM:841/97%",
["Kurø"] = "ET:387/93%EB:744/94%EM:896/93%",
["Amnezia"] = "LT:765/96%LB:767/96%EM:941/94%",
["Magicboi"] = "ET:738/94%LB:771/98%SM:996/99%",
["Mezzi"] = "ET:325/87%EB:731/92%LM:940/96%",
["Darkenrahl"] = "ET:709/91%EB:714/90%LM:761/95%",
["Krazon"] = "ST:679/99%LB:755/95%SM:924/99%",
["Simpkin"] = "ET:373/91%LB:632/95%LM:955/96%",
["Terx"] = "ET:689/89%EB:720/91%EM:873/90%",
["Thinguhl"] = "ET:330/88%LB:756/95%EM:918/93%",
["Ultamm"] = "ET:589/78%LB:751/95%EM:890/93%",
["Colâ"] = "ET:584/78%SB:797/99%LM:976/98%",
["Ugluck"] = "LT:496/96%EB:727/91%EM:814/87%",
["Dilius"] = "ET:717/92%LB:772/97%LM:984/98%",
["Dexon"] = "ET:704/90%EB:753/94%LM:927/95%",
["Amalgor"] = "ET:689/89%LB:757/95%LM:801/96%",
["Bariander"] = "ET:611/81%EB:732/92%LM:781/95%",
["Mjammjammjam"] = "ST:664/99%LB:650/95%LM:967/97%",
["Eichelkopf"] = "ET:680/88%EB:752/94%LM:951/96%",
["Luminel"] = "ET:713/91%EB:740/93%LM:921/95%",
["Zandoriana"] = "ST:764/99%LB:769/97%LM:980/98%",
["Forcemonk"] = "ET:405/93%LB:655/96%LM:804/95%",
["Burnie"] = "LT:756/96%LB:730/98%EM:913/94%",
["Savaras"] = "LT:640/98%LB:771/97%SM:936/99%",
["Acuroo"] = "CT:0/0%LB:773/97%LM:946/96%",
["Firejumper"] = "ET:323/89%SB:795/99%LM:930/96%",
["Frommy"] = "LT:612/98%LB:735/98%LM:803/96%",
["Lomi"] = "LT:774/97%SB:740/99%LM:907/97%",
["Beyonze"] = "CT:119/20%EB:715/91%LM:940/95%",
["Plueschie"] = "ET:726/93%EB:745/94%EM:899/93%",
["Rago"] = "ET:689/89%EB:720/91%LM:950/96%",
["Mithandriel"] = "RT:220/64%EB:670/92%EM:770/87%",
["Yamama"] = "RT:432/55%LB:575/95%EM:875/92%",
["Garam"] = "LT:497/95%EB:656/89%EM:882/94%",
["Owlsen"] = "ET:794/94%SB:796/99%LM:964/98%",
["Ruhestein"] = "LT:825/96%LB:675/98%LM:879/98%",
["Dessembrae"] = "ET:615/90%EB:683/93%SM:930/99%",
["Kannok"] = "ET:797/94%LB:739/96%EM:859/90%",
["Schampansen"] = "LT:505/95%EB:718/94%EM:848/89%",
["Lykke"] = "UT:82/28%EB:516/92%LM:883/95%",
["Bax"] = "ET:417/90%LB:753/97%EM:905/94%",
["Pallandiel"] = "ET:765/92%LB:752/98%SM:1018/99%",
["Healthy"] = "LT:558/97%LB:737/97%UM:296/30%",
["Firith"] = "ET:291/79%EB:633/89%LM:747/96%",
["Silerius"] = "LB:599/96%RM:543/60%",
["Alviarin"] = "RT:520/69%EB:635/90%EM:889/94%",
["Mortalcomcat"] = "LT:655/98%SB:757/99%LM:917/95%",
["Fortack"] = "RT:586/74%EB:685/92%EM:708/78%",
["Chimale"] = "ET:278/76%EB:646/89%RM:668/74%",
["Vincecarter"] = "ET:616/79%EB:679/92%EM:813/89%",
["Rohle"] = "ET:667/85%EB:693/93%EM:882/92%",
["Ebioida"] = "LT:520/96%LB:612/97%EM:874/94%",
["Chrillz"] = "LB:757/97%LM:924/95%",
["Aschantia"] = "ST:722/99%LB:753/97%SM:987/99%",
["Tayna"] = "LT:554/97%LB:617/97%LM:923/95%",
["Grumbeersaft"] = "ST:662/99%LB:748/96%LM:922/95%",
["Vatikan"] = "LT:650/98%LB:768/98%LM:933/97%",
["Kyranisdala"] = "RT:207/63%EB:519/75%SM:981/99%",
["Moket"] = "ET:745/91%EB:615/85%EM:856/91%",
["Echter"] = "LB:748/96%EM:894/93%",
["Firstaidkit"] = "ET:443/92%LB:720/96%LM:924/96%",
["Syncronity"] = "ET:801/94%LB:575/95%EM:901/94%",
["Shaakthul"] = "ET:384/87%LB:597/95%EM:492/83%",
["Grotox"] = "LT:613/98%LB:751/97%EM:842/89%",
["Roti"] = "ET:638/80%EB:534/93%EM:852/91%",
["Euzzle"] = "ET:574/76%EB:641/90%RM:606/71%",
["Deftendar"] = "UT:315/38%EB:645/90%EM:745/85%",
["Jonesman"] = "ET:613/77%LB:707/95%EM:838/90%",
["Azriel"] = "ET:312/81%EB:682/91%LM:918/95%",
["Cuergo"] = "LT:631/98%EB:704/94%LM:974/98%",
["Orlando"] = "ST:703/99%LB:658/98%EM:744/81%",
["Balinda"] = "EB:608/87%EM:758/86%",
["Candie"] = "ET:441/92%EB:696/94%LM:882/95%",
["Igordergrüne"] = "ET:369/88%LB:751/98%LM:942/97%",
["Tresch"] = "LT:522/95%EB:454/87%EM:780/86%",
["Schmusi"] = "ET:715/90%SB:788/99%LM:864/98%",
["Fortuno"] = "ST:795/99%LB:710/95%LM:922/96%",
["Fenriss"] = "LT:799/95%SB:779/99%LM:964/98%",
["Brotinger"] = "ET:319/85%LB:732/97%LM:920/95%",
["Masty"] = "ET:689/86%LB:725/95%LM:947/97%",
["Kalas"] = "LT:518/96%LB:743/96%LM:957/97%",
["Kimminella"] = "LT:643/98%LB:593/96%LM:898/95%",
["Glarius"] = "LT:483/95%LB:724/96%EM:863/92%",
["Phesa"] = "LT:483/95%LB:717/95%EM:876/94%",
["Lam"] = "RT:550/69%EB:661/91%EM:850/91%",
["Loridy"] = "ET:425/91%EB:530/92%LM:923/95%",
["Magami"] = "ET:748/91%LB:749/97%EM:901/94%",
["Priestituté"] = "LT:497/95%EB:628/87%LM:965/98%",
["Divinora"] = "ST:695/99%SB:739/99%LM:910/96%",
["Luînara"] = "ET:396/89%LB:752/98%EM:571/88%",
["Frygg"] = "ET:676/83%EB:645/88%EM:859/90%",
["Julian"] = "ET:725/88%LB:740/96%EM:718/94%",
["Kümmelbart"] = "EB:658/91%UM:355/38%",
["Ktwentyo"] = "ET:421/90%EB:546/82%EM:743/83%",
["Peg"] = "ST:728/99%EB:653/89%UM:75/26%",
["Lethalia"] = "ET:727/92%LB:712/97%LM:954/96%",
["Ørbyte"] = "ET:638/84%LB:748/98%LM:948/96%",
["Kernschmelze"] = "LT:753/96%SB:720/99%SM:888/99%",
["Eigor"] = "LT:484/96%SB:772/99%SM:932/99%",
["Clairemore"] = "ST:722/99%EB:750/94%LM:950/96%",
["Khaos"] = "LT:788/98%SB:822/99%SM:1030/99%",
["Izak"] = "ST:797/99%SB:797/99%SM:924/99%",
["Slûck"] = "LT:762/96%LB:781/98%LM:931/97%",
["Nes"] = "ST:830/99%SB:847/99%LM:992/98%",
["Clarice"] = "LT:746/95%LB:663/97%EM:848/89%",
["Lefux"] = "ST:793/99%LB:792/98%LM:937/96%",
["Beatngu"] = "LT:766/97%LB:751/95%LM:970/98%",
["Spreed"] = "LT:766/97%LB:760/96%LM:976/98%",
["Qtz"] = "LT:786/98%SB:828/99%SM:1024/99%",
["Auwin"] = "ST:816/99%SB:816/99%SM:1026/99%",
["Mým"] = "ET:723/93%LB:783/98%LM:958/97%",
["Vacabo"] = "LT:758/96%LB:729/95%LM:962/97%",
["Nano"] = "LT:782/98%SB:773/99%LM:985/98%",
["Jandai"] = "ST:792/99%SB:809/99%SM:997/99%",
["Bald"] = "LT:787/98%SB:801/99%SM:1001/99%",
["Pythio"] = "LT:778/98%LB:757/97%SM:1044/99%",
["Ukiyo"] = "LT:767/97%LB:794/98%LM:943/96%",
["Mafakafear"] = "LT:789/98%SB:805/99%SM:1039/99%",
["Corrista"] = "ST:800/99%SB:827/99%SM:1014/99%",
["Swooshy"] = "ET:729/94%EB:732/93%LM:959/97%",
["Booner"] = "ET:351/90%SB:791/99%LM:966/97%",
["Vitalîs"] = "ST:776/99%SB:785/99%LM:964/98%",
["Kotaki"] = "ET:661/86%EB:649/88%LM:863/95%",
["Dyzz"] = "LT:772/97%SB:752/99%LM:936/95%",
["Gimbathul"] = "LT:736/95%SB:830/99%SM:1029/99%",
["Gunkan"] = "ST:768/99%LB:770/97%LM:950/96%",
["Ganjá"] = "LT:785/98%SB:837/99%SM:1018/99%",
["Boomrog"] = "ET:724/92%EB:690/88%EM:542/83%",
["Namira"] = "LT:773/97%LB:749/95%EM:878/90%",
["Cassye"] = "ET:730/93%EB:616/94%EM:817/80%",
["Baata"] = "ET:674/88%EB:730/92%LM:877/98%",
["Niph"] = "LT:781/98%LB:792/98%LM:979/98%",
["Araj"] = "ET:730/93%LB:756/95%LM:935/95%",
["Lenore"] = "ST:808/99%LB:788/98%LM:974/98%",
["Xynt"] = "LT:782/98%SB:816/99%SM:1041/99%",
["Zerberruss"] = "LT:743/95%LB:640/97%LM:938/96%",
["Puro"] = "ET:678/89%LB:794/98%LM:944/96%",
["Vanilleeis"] = "LT:555/97%LB:777/97%LM:928/95%",
["Elevoltek"] = "LT:752/98%SB:788/99%LM:948/98%",
["Eddycarry"] = "ST:804/99%LB:784/98%SM:992/99%",
["Warluck"] = "ST:824/99%SB:822/99%SM:1044/99%",
["Talonlover"] = "ST:755/99%LB:796/98%LM:980/98%",
["Methisto"] = "ET:699/90%LB:671/98%EM:908/94%",
["Thundertitan"] = "ET:696/90%LB:726/98%EM:811/86%",
["Twikzy"] = "ET:718/92%EB:585/93%EM:818/87%",
["Jinigami"] = "ET:692/89%EB:695/88%EM:803/84%",
["Laser"] = "ET:704/90%EB:722/91%EM:898/93%",
["Sker"] = "ST:804/99%SB:839/99%SM:1039/99%",
["Sharalira"] = "LT:752/96%LB:761/96%LM:926/95%",
["Mekroth"] = "LT:783/98%LB:770/97%LM:909/96%",
["Sziggi"] = "ET:692/90%SB:724/99%EM:915/94%",
["Jimbei"] = "ET:466/94%EB:671/91%EM:773/84%",
["Funeros"] = "LT:833/96%LB:754/98%SM:997/99%",
["Alvatta"] = "LT:557/97%EB:552/79%RM:297/63%",
["Turang"] = "ST:768/99%LB:753/97%LM:964/98%",
["Schlüpper"] = "ST:772/99%LB:775/98%LM:958/98%",
["Judgemental"] = "LT:554/97%EB:703/94%LM:929/96%",
["Hanfling"] = "ET:329/83%RB:439/60%EM:715/79%",
["Nathul"] = "ET:445/92%SB:789/99%SM:1067/99%",
["Dampfturbine"] = "ET:465/94%LB:620/97%EM:715/94%",
["Sarondan"] = "RT:549/70%EB:566/94%EM:788/85%",
["Riße"] = "ET:768/93%LB:715/95%RM:655/73%",
["Veni"] = "ET:584/75%EB:600/84%EM:490/83%",
["Cavan"] = "ET:607/76%EB:485/89%EM:887/94%",
["Bakghul"] = "ET:718/88%LB:719/96%EM:836/90%",
["Shironeko"] = "RT:585/74%EB:665/92%EM:856/92%",
["Fvckingmad"] = "ST:823/99%EB:675/91%EM:490/82%",
["Rheas"] = "ET:475/94%EB:618/87%RM:347/70%",
["Jinto"] = "ST:696/99%EB:668/91%EM:791/87%",
["Elva"] = "ET:644/81%EB:704/94%EM:780/85%",
["Valana"] = "RT:246/70%EB:457/87%EM:855/90%",
["Jora"] = "ET:730/90%EB:685/93%EM:845/89%",
["Gandogar"] = "ET:480/94%RB:471/68%EM:504/83%",
["Yunshan"] = "LT:536/96%EB:706/93%EM:840/91%",
["Zolai"] = "LT:843/97%EB:710/94%LM:770/96%",
["Happysnow"] = "LT:854/98%LB:729/96%EM:866/91%",
["Dumplin"] = "ET:468/94%LB:701/95%EM:846/91%",
["Allvaterjan"] = "LT:496/95%EB:638/88%EM:667/93%",
["Rondarion"] = "ET:371/89%EB:653/89%EM:860/91%",
["Bullgur"] = "ET:759/92%LB:662/98%EM:689/94%",
["Karimkaze"] = "UT:366/48%EB:605/86%RM:647/71%",
["Lolheal"] = "ET:412/90%EB:588/83%EM:516/84%",
["Furo"] = "LT:801/96%EB:698/92%EM:898/93%",
["Elenya"] = "LT:549/97%EB:659/90%LM:728/95%",
["Lilyen"] = "ET:683/85%EB:681/93%EM:864/92%",
["Mireika"] = "ET:443/92%EB:715/94%LM:948/97%",
["Sylvaspriest"] = "ET:390/91%EB:572/82%RM:334/60%",
["Beeftoe"] = "ET:739/91%RB:312/71%EM:793/87%",
["Mine"] = "ET:759/92%LB:625/97%LM:948/97%",
["Asusrog"] = "LT:812/95%LB:747/97%EM:882/94%",
["Haneng"] = "ET:685/85%EB:600/85%EM:657/92%",
["Crittycat"] = "LT:820/96%LB:741/96%EM:742/81%",
["Healory"] = "RT:489/62%EB:498/91%EM:731/84%",
["Enelyé"] = "LT:614/98%EB:608/86%EM:532/85%",
["Henson"] = "LT:654/98%LB:759/97%LM:965/98%",
["Joeljoelkk"] = "ET:660/82%EB:640/89%EM:661/92%",
["Gragan"] = "RT:565/71%EB:644/90%EM:685/93%",
["Neribi"] = "LT:591/97%EB:464/88%EM:839/90%",
["Smallclaw"] = "ET:744/90%LB:722/95%EM:858/91%",
["Jaleeyn"] = "LT:482/95%EB:706/94%EM:701/94%",
["Focusrite"] = "ET:680/85%EB:624/87%LM:755/96%",
["Gravemind"] = "RT:467/60%EB:570/83%LM:925/97%",
["Kahini"] = "ET:728/89%EB:697/94%LM:940/97%",
["Tyrileth"] = "ET:608/77%EB:415/83%EM:869/92%",
["Lubensan"] = "ET:732/91%LB:733/97%SM:1007/99%",
["Clixa"] = "UT:353/46%UB:324/43%RM:565/62%",
["Drebane"] = "RT:483/61%EB:564/78%RM:665/73%",
["Fabiulous"] = "ET:774/93%LB:734/96%EM:902/93%",
["Evania"] = "LT:833/96%LB:749/97%LM:941/97%",
["Teehramisu"] = "ET:615/77%EB:524/92%EM:789/86%",
["Gadriel"] = "ET:277/75%EB:474/88%EM:895/94%",
["Dexterjones"] = "LT:587/97%EB:615/86%EM:727/79%",
["Coohn"] = "ET:422/94%EB:729/92%EM:760/80%",
["Timea"] = "LT:649/98%LB:764/96%LM:971/97%",
["Snoop"] = "ET:669/86%EB:728/92%LM:935/95%",
["Boomboclaat"] = "ET:731/93%LB:752/95%LM:928/96%",
["Rexie"] = "LT:627/98%EB:736/92%EM:882/91%",
["Wardruggler"] = "LT:552/97%LB:753/95%EM:891/93%",
["Touchable"] = "ET:659/86%LB:634/95%EM:877/90%",
["Tothale"] = "LB:766/96%LM:963/97%",
["Xhup"] = "LT:779/98%SB:807/99%LM:972/98%",
["Gesundestier"] = "LT:630/98%EB:714/91%EM:821/85%",
["Avengis"] = "UT:97/43%EB:698/89%EM:786/82%",
["Adeeline"] = "ET:676/88%EB:736/93%EM:906/94%",
["Itscrazy"] = "EB:697/89%RM:595/64%",
["Grodir"] = "ET:386/93%EB:747/94%EM:872/90%",
["Journy"] = "ET:670/88%LB:769/96%LM:978/98%",
["Bakslash"] = "EB:703/89%EM:792/85%",
["Sdôg"] = "ET:673/89%EB:730/92%RM:344/70%",
["Nastygal"] = "RT:391/56%EB:741/93%EM:884/91%",
["Kelerus"] = "LT:765/97%SB:760/99%SM:1031/99%",
["Dogwuffwuff"] = "ET:734/94%EB:732/92%EM:701/93%",
["Jizzer"] = "ET:701/90%EB:748/94%EM:646/89%",
["Zaddar"] = "ET:672/87%LB:759/95%EM:729/92%",
["Hèlmy"] = "UT:138/49%EB:736/93%EM:749/78%",
["Kookimonster"] = "UT:176/28%EB:735/93%EM:865/91%",
["Foxxy"] = "LT:623/98%LB:753/95%EM:740/80%",
["Festedrauf"] = "ET:729/93%SB:751/99%EM:907/94%",
["Baamlee"] = "RT:239/74%EB:725/92%EM:902/92%",
["Dallmann"] = "LT:543/97%SB:806/99%SM:1005/99%",
["Tellem"] = "ET:676/88%LB:668/96%EM:938/94%",
["Nadlek"] = "ST:730/99%SB:799/99%SM:992/99%",
["Bumba"] = "ST:793/99%LB:773/98%LM:964/98%",
["Whooshog"] = "EB:699/92%EM:904/93%",
["Yuimi"] = "ET:352/92%EB:732/92%LM:947/96%",
["Môrana"] = "LT:498/96%LB:661/96%EM:728/77%",
["Visvanhinten"] = "ET:605/80%EB:693/88%EM:717/76%",
["Niralta"] = "ET:727/93%LB:784/98%EM:919/94%",
["Tanox"] = "LT:530/97%EB:721/90%EM:868/89%",
["Healingwind"] = "LT:631/98%LB:753/95%LM:951/96%",
["Vâdîm"] = "LT:495/96%LB:764/96%EM:882/90%",
["Diago"] = "LT:772/97%LB:757/95%LM:939/95%",
["Geradon"] = "ET:686/89%LB:771/98%EM:874/94%",
["Neremia"] = "ET:383/92%EB:735/92%EM:921/93%",
["Serakon"] = "ET:712/91%LB:758/95%LM:977/98%",
["Kattar"] = "ET:597/79%EB:717/91%EM:833/88%",
["Shaðøw"] = "ET:335/88%LB:753/95%EM:907/92%",
["Stonecøld"] = "ST:755/99%SB:779/99%LM:980/97%",
["Momosoup"] = "ET:680/88%LB:693/97%EM:847/92%",
["Snêâky"] = "ET:722/92%EB:724/92%EM:795/83%",
["Feindselig"] = "LT:562/97%LB:630/95%LM:960/97%",
["Raubjörn"] = "ET:362/92%EB:728/92%EM:903/94%",
["Aa"] = "ET:228/75%EB:730/92%SM:1011/99%",
["Surd"] = "EB:752/94%EM:772/80%",
["Malfagor"] = "ET:624/82%EB:702/89%EM:689/92%",
["Thrynn"] = "UT:334/43%LB:626/95%EM:863/90%",
["Balindis"] = "ET:653/85%LB:768/96%LM:932/95%",
["Bellpheron"] = "LT:664/95%SB:783/99%SM:1005/99%",
["Phinx"] = "ST:760/99%SB:795/99%SM:1033/99%",
["Yurizee"] = "ST:806/99%SB:803/99%SM:1014/99%",
["Jímbei"] = "ET:726/92%EB:734/92%EM:901/93%",
["Akiroth"] = "LT:777/98%SB:783/99%SM:981/99%",
["Kikenna"] = "ET:419/93%EB:623/94%LM:828/96%",
["Nìa"] = "ET:387/92%EB:744/94%EM:921/93%",
["Serarog"] = "ET:270/80%EB:701/89%EM:811/85%",
["Dentist"] = "LT:559/97%EB:700/89%EM:734/77%",
["Ziepel"] = "ET:710/91%EB:619/94%EM:738/94%",
["Venjiz"] = "LT:749/95%EB:735/93%EM:914/94%",
["Montex"] = "ST:693/99%EB:597/93%EM:881/90%",
["Rhox"] = "ST:783/99%LB:782/98%LM:990/98%",
["Ramzes"] = "ET:688/90%LB:770/96%LM:971/98%",
["Hanazua"] = "UT:253/34%EB:731/93%EM:642/89%",
["Umbí"] = "ET:594/81%EB:746/93%SM:927/99%",
["Schläfer"] = "EB:693/87%EM:796/83%",
["Stealthh"] = "ET:368/91%EB:747/94%EM:918/93%",
["Lööps"] = "EB:742/93%EM:924/94%",
["Gatsu"] = "LT:576/98%SB:771/99%LM:945/97%",
["Hagbard"] = "ST:759/99%EB:750/94%EM:913/93%",
["Gambin"] = "ET:685/89%EB:733/93%LM:765/95%",
["Ventilator"] = "LB:786/98%LM:936/95%",
["Bejsaar"] = "RT:409/54%EB:664/91%EM:879/93%",
["Kamex"] = "EB:680/92%EM:686/93%",
["Zapopa"] = "ET:468/93%LB:759/97%EM:872/91%",
["Holydiver"] = "RT:389/51%LB:761/98%EM:874/93%",
["Kulturgut"] = "ET:430/93%EB:504/92%RM:478/52%",
["Nyanda"] = "ST:793/99%LB:648/97%EM:898/93%",
["Gritgrit"] = "ET:684/84%EB:614/85%EM:488/82%",
["Maschock"] = "RT:539/69%LB:716/95%SM:917/99%",
["Cpthardy"] = "ET:435/94%LB:708/95%RM:676/74%",
["Itsnogood"] = "EB:632/87%LM:929/96%",
["Kraosh"] = "ET:389/88%LB:729/95%LM:976/98%",
["Gríever"] = "ST:844/99%LB:744/97%SM:998/99%",
["Badsippy"] = "ET:287/81%LB:724/95%LM:948/97%",
["Leonite"] = "UT:309/40%EB:699/94%EM:883/94%",
["Distress"] = "LB:721/96%LM:902/95%",
["Sakim"] = "ET:475/94%LB:614/96%EM:821/89%",
["Sephrania"] = "LT:627/98%EB:537/94%UM:412/49%",
["Rohkta"] = "UT:330/42%EB:672/91%RM:596/69%",
["Nazra"] = "ET:448/94%EB:693/93%LM:920/97%",
["Reikjar"] = "ST:787/99%LB:688/98%RM:640/71%",
["Madzn"] = "EB:565/81%EM:880/92%",
["Puch"] = "ET:605/79%LB:746/96%LM:935/96%",
["Tramon"] = "ST:804/99%SB:731/99%LM:936/96%",
["Trolive"] = "ET:693/86%EB:672/92%EM:847/91%",
["Srilaxmi"] = "ST:727/99%LB:735/97%LM:836/98%",
["Pest"] = "RT:238/68%EB:448/86%EM:750/82%",
["Uguur"] = "CT:166/19%EB:672/91%EM:761/84%",
["Noobius"] = "ET:699/89%EB:697/94%EM:841/90%",
["Schmullrich"] = "RT:537/68%EB:677/93%RM:647/71%",
["Patro"] = "UT:258/32%EB:716/94%EM:876/92%",
["Bonefatzius"] = "ET:300/78%EB:706/93%EM:786/84%",
["Spychest"] = "LT:505/95%LB:734/96%EM:889/94%",
["Hanfdämmt"] = "ET:422/90%EB:682/91%EM:564/87%",
["Tha"] = "ET:354/85%EB:695/94%EM:787/86%",
["Jucý"] = "ET:607/78%EB:679/92%EM:895/94%",
["Ximm"] = "UT:287/37%LB:746/97%SM:991/99%",
["Horáz"] = "LT:560/97%EB:604/85%EM:698/80%",
["Iboo"] = "RT:492/66%LB:757/98%LM:938/96%",
["Zefi"] = "ET:656/81%EB:701/92%LM:960/98%",
["Ryvwen"] = "LT:518/95%LB:727/95%LM:955/97%",
["Babylon"] = "RT:503/64%EB:646/90%RM:608/71%",
["Trok"] = "ET:308/82%EB:639/88%EM:846/91%",
["Layonis"] = "UT:83/25%EB:572/82%EM:723/83%",
["Friggasee"] = "LT:670/98%EB:509/91%EM:702/77%",
["Ahriman"] = "ET:337/84%LB:723/96%EM:863/92%",
["Cillano"] = "LT:636/98%LB:740/96%LM:897/95%",
["Bildschirm"] = "EB:658/91%EM:776/90%",
["Redbaron"] = "ET:761/91%LB:723/95%SM:984/99%",
["Mércilèss"] = "EB:668/91%LM:931/97%",
["Kampfente"] = "ET:312/82%EB:531/92%EM:781/85%",
["Luckystrîke"] = "ST:704/99%SB:700/99%LM:913/95%",
["Osstriker"] = "ET:647/80%LB:583/95%EM:687/93%",
["Phonsekal"] = "LT:655/98%EB:682/93%EM:767/87%",
["Hesis"] = "ET:767/93%EB:693/93%EM:891/93%",
["Sodi"] = "LT:532/96%LB:711/95%EM:796/86%",
["Redflash"] = "LT:539/96%LB:736/97%LM:942/97%",
["Elokir"] = "LT:563/97%EB:572/81%EM:890/94%",
["Fenixfunk"] = "LT:769/98%LB:727/95%EM:902/93%",
["Epioné"] = "RT:242/69%EB:388/80%EM:811/88%",
["Laridna"] = "LT:755/96%LB:790/98%LM:963/98%",
["Squenyu"] = "LT:484/96%LB:791/98%SM:984/99%",
["Rokhtar"] = "ET:739/94%EB:627/94%SM:1005/99%",
["Krapfey"] = "ST:816/99%SB:823/99%SM:893/99%",
["Pluton"] = "ET:734/94%EB:735/92%EM:899/92%",
["Ibico"] = "ET:298/85%LB:663/97%LM:928/95%",
["Kyrbz"] = "LT:767/97%LB:776/97%SM:923/99%",
["Ultimage"] = "ET:732/94%LB:744/97%LM:940/96%",
["Neramia"] = "ET:730/93%LB:787/98%LM:961/97%",
["Zipzirip"] = "ET:744/94%EB:729/92%EM:885/90%",
["Frozenballs"] = "LT:790/98%SB:826/99%SM:1044/99%",
["Ogabunga"] = "ST:708/99%LB:740/98%LM:865/98%",
["Heszn"] = "ET:306/86%LB:766/96%LM:952/96%",
["Lyrano"] = "ET:664/88%LB:622/97%EM:898/93%",
["Ferdinand"] = "ET:707/91%SB:804/99%LM:951/96%",
["Spankyy"] = "ET:734/94%EB:724/92%LM:820/96%",
["Derko"] = "ET:411/93%EB:539/93%EM:430/83%",
["Shakés"] = "LT:570/97%EB:718/91%EM:810/84%",
["Thjasse"] = "ET:656/87%LB:700/97%LM:934/96%",
["Qunoa"] = "ET:724/93%EB:690/88%EM:777/84%",
["Brandgefahr"] = "LT:598/98%LB:763/96%LM:950/96%",
["Algrin"] = "LT:609/98%LB:631/97%LM:973/98%",
["Shaddor"] = "ET:648/86%EB:681/87%EM:831/86%",
["Looq"] = "ST:773/99%LB:762/95%LM:959/97%",
["Portia"] = "LT:751/96%LB:754/95%EM:924/94%",
["Qy"] = "ST:812/99%SB:814/99%LM:981/98%",
["Lilleskutt"] = "ST:800/99%SB:815/99%SM:1037/99%",
["Dsven"] = "ET:640/85%LB:777/97%LM:959/97%",
["Meggruk"] = "ET:729/93%EB:726/93%LM:761/96%",
["Smörrebröd"] = "ET:643/83%EB:721/91%EM:826/85%",
["Sabra"] = "ST:798/99%SB:755/99%SM:989/99%",
["Schnuggl"] = "ET:664/88%EB:718/90%LM:942/96%",
["Nois"] = "ST:778/99%SB:762/99%SM:989/99%",
["Raubina"] = "ET:719/92%EB:595/93%LM:870/97%",
["Garuda"] = "LT:620/98%LB:766/96%EM:921/94%",
["Pronxy"] = "LT:751/95%LB:779/97%LM:967/97%",
["Whitoon"] = "ST:761/99%LB:776/98%SM:1029/99%",
["Jaynar"] = "ET:657/86%LB:784/98%SM:1004/99%",
["Sekko"] = "ST:690/99%LB:781/98%LM:794/97%",
["Amba"] = "LT:763/96%SB:755/99%LM:980/98%",
["Bohne"] = "ET:732/94%LB:759/96%LM:939/96%",
["Sifir"] = "ST:732/99%LB:770/98%LM:938/96%",
["Roxzas"] = "LT:766/97%LB:777/98%LM:975/98%",
["Lucifera"] = "LT:764/97%LB:748/95%EM:888/93%",
["Dorill"] = "LT:746/95%LB:786/98%LM:961/97%",
["Belzxy"] = "LT:598/97%LB:756/95%EM:916/94%",
["Skillcapped"] = "ET:727/93%EB:693/89%EM:863/90%",
["Kalahad"] = "LT:750/95%SB:754/99%EM:901/92%",
["Untoast"] = "ST:793/99%SB:765/99%LM:768/95%",
["Ifilluup"] = "ST:781/99%SB:792/99%LM:969/98%",
["Llyn"] = "ET:584/78%EB:583/82%EM:703/76%",
["Junglu"] = "ET:709/91%EB:703/93%EM:530/89%",
["Tarhana"] = "ET:697/91%EB:622/85%RM:570/67%",
["Zeri"] = "LT:769/98%LB:777/98%LM:964/98%",
["Papapalo"] = "ET:407/94%LB:726/95%LM:895/95%",
["Squizzelbud"] = "LT:488/96%EB:720/91%RM:555/62%",
["Kauket"] = "LT:606/97%LB:597/96%EM:881/93%",
["Mazarin"] = "LT:617/98%LB:681/98%LM:749/96%",
["Crawny"] = "RT:510/69%EB:618/86%EM:812/87%",
["Wunna"] = "UT:353/46%EB:689/92%LM:947/97%",
["Vater"] = "ET:343/85%EB:670/91%EM:882/93%",
["Rinderrella"] = "LT:873/98%SB:788/99%LM:921/96%",
["Avaith"] = "LT:819/96%EB:698/94%LM:857/98%",
["Mavé"] = "ET:261/75%EB:690/93%EM:660/92%",
["Kräidl"] = "RT:208/62%RB:292/66%EM:522/84%",
["Schnarkol"] = "ET:654/82%EB:675/93%RM:652/72%",
["Fléx"] = "ET:700/86%LB:716/95%LM:963/98%",
["Amily"] = "UT:150/48%LB:722/96%EM:894/94%",
["Fluchi"] = "ET:429/92%EB:516/75%EM:822/89%",
["Jormundgandr"] = "ET:681/85%EB:540/93%EM:610/90%",
["Healpod"] = "UT:307/40%RB:492/68%EM:783/85%",
["Bry"] = "RT:537/69%EB:678/91%LM:943/97%",
["Baabiel"] = "ET:602/76%LB:753/98%LM:956/98%",
["Maggus"] = "ET:665/83%EB:678/92%LM:884/95%",
["Nelpurne"] = "ET:436/92%LB:720/95%LM:925/97%",
["Bahilbaldan"] = "ET:728/91%EB:692/92%EM:727/80%",
["Guinea"] = "ET:277/77%RB:464/64%RM:327/68%",
["Blauperle"] = "RT:564/72%EB:585/83%RM:611/67%",
["Gbxhnx"] = "LT:817/95%LB:748/97%LM:816/97%",
["Bruide"] = "ET:709/89%EB:668/91%LM:921/95%",
["Yessy"] = "ET:429/92%EB:691/94%LM:875/95%",
["Stephinho"] = "RT:505/65%EB:667/90%EM:856/91%",
["Karlfranz"] = "ET:416/92%EB:671/91%LM:952/97%",
["Fumara"] = "RT:218/67%LB:595/96%EM:781/87%",
["Faloran"] = "ET:370/88%EB:536/93%EM:743/83%",
["Schantall"] = "ET:462/93%EB:656/91%RM:341/69%",
["Qeter"] = "ET:715/87%EB:618/88%EM:845/93%",
["Achtern"] = "UT:344/45%RB:252/59%UM:271/31%",
["Banana"] = "ET:572/75%EB:703/94%LM:965/98%",
["Paladingsda"] = "ET:444/93%EB:680/92%LM:972/98%",
["Zwacken"] = "LT:490/95%LB:724/95%EM:861/91%",
["Merrymojo"] = "RT:270/73%EB:695/92%EM:885/92%",
["Jocid"] = "ET:656/84%LB:726/96%LM:951/97%",
["Monkas"] = "RT:581/73%EB:696/94%EM:815/88%",
["Kyryon"] = "RT:459/58%UB:269/35%RM:586/65%",
["Sanella"] = "ET:715/90%LB:739/97%LM:959/98%",
["Gottfather"] = "RT:508/64%EB:638/88%EM:855/91%",
["Nefex"] = "LT:631/98%LB:752/97%LM:970/98%",
["Penicillium"] = "ET:312/83%EB:684/93%EM:893/94%",
["Yulienne"] = "LT:616/98%EB:639/88%LM:800/97%",
["Boza"] = "RT:182/55%RB:503/70%EM:733/80%",
["Aboe"] = "ET:778/93%LB:723/95%EM:738/83%",
["Bonks"] = "ET:740/89%EB:678/90%LM:935/96%",
["Nilenya"] = "LT:684/98%LB:730/98%SM:944/99%",
["Malier"] = "RT:489/61%EB:452/86%EM:762/83%",
["Hiddigeigei"] = "ET:666/84%EB:656/89%EM:903/94%",
["Thoroz"] = "ET:354/89%EB:711/94%EM:857/90%",
["Rimbaru"] = "ET:722/88%LB:759/97%LM:947/97%",
["Relyon"] = "ET:377/88%RB:452/64%EM:850/93%",
["Ephialteia"] = "RT:465/58%EB:423/84%RM:683/74%",
["Sylithia"] = "LT:817/95%EB:674/91%EM:478/82%",
["Splitout"] = "ET:670/84%EB:675/93%EM:877/94%",
["Nesuma"] = "LT:686/98%LB:722/95%EM:868/94%",
["Brolinski"] = "ET:349/85%EB:659/91%LM:725/95%",
["Pomaul"] = "UT:155/48%EB:629/87%EM:786/85%",
["Uzo"] = "ET:707/88%EB:688/93%LM:762/96%",
["Rosi"] = "ET:282/78%EB:602/83%EM:771/83%",
["Akinos"] = "ET:330/82%EB:691/92%EM:652/92%",
["Nophis"] = "ET:703/87%EB:705/94%EM:876/92%",
["Save"] = "ET:658/82%EB:718/94%EM:783/86%",
["Chupachûps"] = "ET:599/75%EB:668/92%EM:672/78%",
["Grak"] = "LT:506/95%EB:603/84%EM:903/93%",
["Fynnjard"] = "ET:353/85%EB:590/82%EM:699/80%",
["Holyboi"] = "RT:410/52%EB:626/86%EM:744/81%",
["Lovley"] = "ET:338/84%EB:650/89%EM:796/86%",
["Lewleen"] = "UT:388/48%RB:325/71%EM:670/77%",
["Kräpfchen"] = "RT:425/57%EB:598/82%EM:870/92%",
["Gunilla"] = "LT:551/97%EB:391/79%RM:254/60%",
["Èlena"] = "RT:162/51%EB:669/91%EM:800/87%",
["Ragecylo"] = "UT:231/29%RB:437/64%UM:339/40%",
["Primahrr"] = "RT:449/56%RB:392/55%RM:538/63%",
["Elbardo"] = "RT:442/57%RB:414/60%EM:696/80%",
["Galad"] = "RT:582/74%EB:630/87%EM:546/87%",
["Dusty"] = "RT:539/73%EB:724/92%EM:815/84%",
["Blury"] = "ET:698/91%EB:715/91%EM:441/78%",
["Lazuri"] = "ST:797/99%LB:791/98%SM:917/99%",
["Gunrød"] = "LB:757/95%LM:938/95%",
["Adelheid"] = "ST:802/99%SB:853/99%SM:1008/99%",
["Senzar"] = "ET:686/89%LB:739/98%EM:843/87%",
["Sílvíe"] = "RT:402/58%EB:717/90%EM:868/89%",
["Man"] = "ET:655/86%EB:735/93%LM:932/95%",
["Ríver"] = "ET:293/86%EB:704/92%EM:766/88%",
["Plyschbyxa"] = "ET:671/86%LB:759/95%EM:912/93%",
["Malammo"] = "UT:318/41%EB:714/91%EM:829/85%",
["Abrissbírne"] = "ET:600/80%EB:707/90%EM:850/90%",
["Finley"] = "ET:603/79%EB:720/91%EM:721/92%",
["Toughone"] = "ST:791/99%LB:781/98%LM:950/97%",
["Trinos"] = "ET:598/78%EB:694/88%EM:630/88%",
["Inside"] = "ET:582/78%EB:749/94%EM:881/90%",
["Law"] = "ET:701/90%EB:685/87%LM:807/95%",
["Zahra"] = "ET:286/85%EB:744/93%EM:824/86%",
["Jây"] = "ET:383/92%EB:728/92%EM:701/91%",
["Bdlfcritler"] = "LT:459/95%SB:794/99%LM:807/95%",
["Ostborn"] = "ET:609/81%EB:744/94%EM:741/94%",
["Persephon"] = "ST:751/99%EB:736/93%LM:947/96%",
["Noizze"] = "LT:462/96%LB:649/95%LM:888/98%",
["Dirtyschuss"] = "UT:97/39%EB:709/90%EM:859/89%",
["Hoppi"] = "ET:667/87%EB:730/92%EM:846/89%",
["Buyuadrank"] = "ET:719/92%LB:752/95%EM:900/93%",
["Roguelove"] = "ST:695/99%EB:692/88%EM:661/89%",
["Schreckhaft"] = "ET:436/94%LB:654/96%EM:889/91%",
["Fsmaul"] = "ET:343/90%EB:725/92%EM:872/91%",
["Assaakira"] = "ET:349/89%EB:726/92%LM:959/97%",
["Cleavealot"] = "ET:671/88%EB:719/91%EM:818/87%",
["Ashram"] = "ET:358/92%EB:673/86%EM:784/82%",
["Shepherd"] = "RT:394/57%EB:751/94%EM:918/94%",
["Jayde"] = "LT:658/98%LB:777/97%LM:913/98%",
["Izzieh"] = "LT:530/97%EB:699/89%EM:904/92%",
["Rigs"] = "ET:331/89%LB:672/96%EM:691/92%",
["Agnikai"] = "ET:667/87%EB:705/89%EM:842/89%",
["Garuga"] = "UT:85/30%EB:694/89%EM:668/90%",
["Baodur"] = "RT:175/60%EB:730/92%EM:919/93%",
["Scizz"] = "EB:750/94%LM:942/95%",
["Asaur"] = "ET:413/94%LB:783/98%LM:946/96%",
["Leriakos"] = "ET:611/82%EB:736/92%EM:897/92%",
["Kazuy"] = "ET:350/91%EB:706/90%LM:786/96%",
["Alivea"] = "ET:313/85%EB:716/91%EM:915/93%",
["Xayon"] = "ET:349/89%EB:701/89%LM:974/98%",
["Neilon"] = "LT:777/97%LB:700/97%EM:917/91%",
["Skrall"] = "ET:597/80%EB:724/92%EM:842/89%",
["Aylea"] = "ET:612/81%EB:691/88%EM:746/94%",
["Protos"] = "ET:414/94%EB:605/93%EM:835/87%",
["Jalapeño"] = "ET:682/88%LB:639/95%LM:931/95%",
["Schwarzloch"] = "ET:677/87%EB:738/93%EM:675/90%",
["Fantômas"] = "ET:360/91%EB:725/92%LM:940/96%",
["Plattfuss"] = "ET:307/87%LB:723/98%LM:851/97%",
["Norg"] = "ET:628/83%EB:700/89%EM:673/91%",
["Scarpa"] = "ET:660/85%EB:714/91%EM:853/84%",
["Dèx"] = "ST:788/99%LB:753/95%LM:905/98%",
["Sangoki"] = "UT:193/25%EB:693/88%EM:896/91%",
["Zorry"] = "ET:234/76%EB:651/84%EM:831/89%",
["Buckley"] = "ET:721/92%EB:545/90%EM:872/90%",
["Dustyrusty"] = "UT:267/40%EB:692/88%EM:825/86%",
["Sevinjo"] = "ET:582/78%LB:640/95%LM:793/96%",
["Hippolyte"] = "ST:818/99%SB:804/99%SM:1009/99%",
["Hutzler"] = "LT:777/98%SB:805/99%LM:900/96%",
["Raislin"] = "ET:654/86%LB:731/98%LM:935/95%",
["Hintertür"] = "ET:355/91%EB:612/94%EM:859/88%",
["Gordron"] = "ET:304/86%EB:703/89%EM:708/93%",
["Baldwyn"] = "ET:399/93%EB:592/93%EM:880/90%",
["Remind"] = "ET:380/91%EB:661/85%EM:802/83%",
["Mascheng"] = "ET:591/79%EB:719/91%EM:588/87%",
["Slardar"] = "ET:640/84%EB:717/91%EM:902/94%",
["Paradentoxx"] = "LT:588/98%EB:699/89%EM:881/90%",
["Natali"] = "EB:690/87%EM:907/93%",
["Nailol"] = "LB:775/97%SM:1034/99%",
["Trex"] = "ET:734/94%SB:761/99%LM:929/95%",
["Malda"] = "LT:618/98%EB:720/91%EM:882/91%",
["Krogh"] = "ET:725/93%SB:765/99%LM:907/98%",
["Yaeldaen"] = "ET:669/87%EB:718/91%EM:886/92%",
["Satine"] = "ET:308/81%EB:619/86%EM:857/90%",
["Vable"] = "ET:583/78%EB:708/94%LM:967/98%",
["Noxî"] = "LB:739/97%EM:903/94%",
["Psychedlix"] = "LT:806/95%LB:763/97%SM:976/99%",
["Krutera"] = "ST:688/99%LB:568/95%EM:809/88%",
["Thunderous"] = "ST:724/99%LB:738/96%EM:900/93%",
["Hashut"] = "ET:309/80%LB:567/95%EM:465/80%",
["Knäckebrot"] = "RT:579/74%LB:730/96%EM:674/93%",
["Wuarztfingaz"] = "ET:390/88%EB:650/87%EM:847/89%",
["Turnos"] = "UT:155/49%EB:499/91%EM:713/78%",
["Darthorgrim"] = "EB:674/91%EM:864/93%",
["Bahel"] = "ST:798/99%LB:632/97%EM:786/85%",
["Bluebearry"] = "ET:673/84%LB:596/96%EM:819/90%",
["Tabar"] = "LT:549/96%EB:717/94%EM:905/94%",
["Bentica"] = "EB:597/85%EM:786/89%",
["Priestige"] = "RT:400/51%EB:683/93%EM:827/89%",
["Thorgat"] = "RT:232/71%EB:660/89%EM:904/94%",
["Stiglitz"] = "LT:500/95%LB:610/96%EM:693/78%",
["Príestitute"] = "ST:710/99%SB:776/99%LM:944/97%",
["Gammablocker"] = "RT:256/73%EB:716/94%LM:955/97%",
["Zephyra"] = "RT:218/65%EB:636/88%EM:830/89%",
["Xana"] = "ET:394/90%EB:693/93%EM:756/85%",
["Arelia"] = "ET:335/83%EB:616/87%LM:902/95%",
["Mumpítz"] = "LT:605/97%LB:777/98%LM:848/98%",
["Sciurus"] = "ET:389/88%EB:553/93%LM:895/95%",
["Thorix"] = "ET:375/89%LB:765/98%EM:824/88%",
["Dentrix"] = "ET:571/75%EB:686/93%EM:889/93%",
["Schwaengel"] = "RT:465/61%EB:687/92%EM:800/86%",
["Galena"] = "LT:519/96%EB:622/87%EM:702/81%",
["Patrem"] = "EB:697/94%EM:872/92%",
["Persyphe"] = "ET:288/79%EB:677/92%RM:642/71%",
["Jahatschy"] = "ET:443/93%EB:553/94%LM:935/96%",
["Chimal"] = "ST:708/99%LB:742/97%EM:852/93%",
["Vanhenne"] = "ET:428/92%EB:546/94%EM:785/85%",
["Heizung"] = "EB:625/86%EM:770/84%",
["Mellon"] = "LT:626/98%LB:706/95%EM:687/93%",
["Fishye"] = "ET:609/77%LB:742/97%EM:796/86%",
["Schnugge"] = "CT:109/11%EB:628/88%EM:809/88%",
["Mesut"] = "UT:348/45%LB:713/95%LM:937/97%",
["Zomg"] = "CT:100/14%EB:591/84%EM:815/87%",
["Gorgias"] = "ST:833/99%LB:725/95%EM:848/89%",
["Mythandrir"] = "UT:348/45%EB:702/94%LM:918/95%",
["Woolie"] = "ET:677/94%LB:772/98%LM:962/98%",
["Nilithan"] = "LT:557/97%EB:517/92%EM:776/85%",
["Krümelmaus"] = "LT:504/95%EB:720/94%LM:938/96%",
["Lambrecht"] = "RB:471/69%EM:685/75%",
["Nobe"] = "UT:365/45%EB:638/88%EM:702/79%",
["Helles"] = "EB:666/92%EM:779/85%",
["Reddith"] = "LT:611/97%EB:712/94%EM:841/92%",
["Dofty"] = "LT:637/98%LB:703/95%LM:868/98%",
["Mimsen"] = "RT:484/61%EB:438/85%EM:683/79%",
["Fue"] = "EB:679/94%EM:847/93%",
["Donzar"] = "LT:502/96%LB:739/97%LM:955/98%",
["Aureøla"] = "LT:556/97%LB:742/97%LM:880/95%",
["Defix"] = "LT:524/96%LB:774/98%LM:950/97%",
["Kandros"] = "ET:333/83%LB:716/95%EM:864/92%",
["Boldar"] = "UT:309/38%RB:504/73%EM:648/75%",
["Shinue"] = "RT:182/57%EB:646/91%EM:677/75%",
["Demuny"] = "ET:296/80%EB:544/94%SM:983/99%",
["Tovah"] = "LT:654/98%LB:709/95%EM:667/93%",
["Kigurumi"] = "RT:271/74%EB:449/87%EM:745/83%",
["Krümelklit"] = "RT:174/53%LB:767/98%EM:890/94%",
["Krivoj"] = "EB:534/77%EM:833/92%",
["Shunten"] = "UT:100/33%EB:547/79%EM:761/85%",
["Wolfslady"] = "ET:654/82%EB:681/92%EM:676/93%",
["Shosh"] = "CT:37/8%EB:559/80%EM:602/90%",
["Korak"] = "LT:601/97%LB:633/97%LM:918/95%",
["Risin"] = "ST:774/99%LB:616/97%EM:882/93%",
["Githir"] = "LT:746/97%LB:637/96%LM:971/98%",
["Aradonbrah"] = "LT:748/96%EB:697/92%EM:458/89%",
["Amidaru"] = "ET:666/87%EB:744/94%EM:919/94%",
["Fightoor"] = "ST:813/99%SB:751/99%LM:954/97%",
["Schubstroll"] = "LT:479/96%EB:703/90%LM:956/97%",
["Haurin"] = "LT:626/98%LB:760/95%EM:846/88%",
["Aiuxd"] = "LT:748/95%LB:617/96%LM:943/98%",
["Cali"] = "LT:763/96%LB:787/98%SM:978/99%",
["Mcm"] = "ET:368/92%LB:783/98%LM:945/98%",
["Orkris"] = "ET:617/82%EB:686/87%EM:736/94%",
["Cheche"] = "LT:770/97%SB:802/99%LM:936/96%",
["Fanajin"] = "ET:379/92%RB:496/71%UM:150/48%",
["Edda"] = "LT:545/97%SB:818/99%LM:966/97%",
["Polpop"] = "ET:441/94%LB:732/96%LM:950/96%",
["Nyotha"] = "LT:549/97%LB:700/97%SM:924/99%",
["Meuchli"] = "LT:778/98%LB:714/98%LM:789/96%",
["Thogram"] = "ST:797/99%SB:821/99%LM:975/98%",
["Asúná"] = "ST:759/99%LB:781/98%SM:942/99%",
["Marmelaide"] = "LT:778/98%EB:732/93%EM:838/87%",
["Maxweezy"] = "ST:686/99%EB:575/92%EM:906/93%",
["Angrox"] = "LT:764/97%LB:788/98%LM:956/97%",
["Patrice"] = "ST:774/99%LB:789/98%LM:980/98%",
["Celaglava"] = "LT:752/95%LB:783/98%SM:999/99%",
["Emit"] = "ST:737/99%EB:731/92%EM:894/92%",
["Acandir"] = "ET:626/84%LB:761/96%LM:956/97%",
["Crudge"] = "ET:582/84%LB:759/97%LM:898/96%",
["Sâturâs"] = "ET:670/87%SB:818/99%SM:1005/99%",
["Dschän"] = "LT:787/98%SB:820/99%SM:1001/99%",
["Adeen"] = "ET:736/94%LB:676/98%LM:984/98%",
["Havsta"] = "LT:761/96%EB:710/94%LM:940/96%",
["Kriehp"] = "ST:716/99%LB:769/97%LM:971/98%",
["Needham"] = "LT:762/96%LB:725/95%EM:627/91%",
["Zhargoz"] = "ST:736/99%LB:749/96%EM:891/93%",
["Rabatz"] = "LT:769/97%LB:776/97%LM:953/97%",
["Traxy"] = "ET:699/90%LB:722/98%EM:901/92%",
["Xardros"] = "RT:458/71%EB:673/90%LM:866/95%",
["Phílìpp"] = "ET:297/86%LB:755/95%SM:1002/99%",
["Raspe"] = "LT:756/96%LB:765/96%EM:916/94%",
["Krankheit"] = "ST:712/99%LB:778/98%LM:963/97%",
["Kraanky"] = "ST:799/99%SB:768/99%LM:957/97%",
["Obi"] = "ST:785/99%SB:804/99%LM:970/98%",
["Gilus"] = "ET:607/81%LB:607/96%LM:955/97%",
["Tylana"] = "LT:748/95%SB:832/99%SM:986/99%",
["Spokeydorkey"] = "ET:669/87%EB:744/94%LM:941/96%",
["Zallog"] = "ET:703/92%SB:833/99%SM:1015/99%",
["Jimcurry"] = "ET:661/87%LB:766/96%EM:915/93%",
["Vincentrâven"] = "LT:608/98%LB:778/98%LM:925/95%",
["Oyski"] = "ET:649/85%LB:762/95%EM:904/93%",
["Daggi"] = "ET:730/93%LB:718/98%EM:912/93%",
["Xenoa"] = "LT:787/98%LB:782/98%SM:912/99%",
["Zengar"] = "LT:758/98%LB:776/98%LM:927/97%",
["Nissa"] = "LT:756/96%SB:837/99%SM:1002/99%",
["Reeth"] = "ET:637/85%EB:732/93%EM:846/89%",
["Ninly"] = "ET:733/94%LB:773/97%LM:946/97%",
["Nercomage"] = "ET:296/85%LB:791/98%LM:946/96%",
["Seggsi"] = "ET:739/94%LB:754/97%SM:1000/99%",
["Gordomar"] = "ET:727/93%EB:716/94%EM:917/94%",
["Snuss"] = "ET:692/89%EB:598/93%EM:894/92%",
["Vagux"] = "ST:750/99%EB:471/89%EM:862/90%",
["Páxit"] = "ET:566/78%LB:644/96%EM:894/94%",
["Iceolator"] = "ET:405/93%EB:691/89%EM:741/84%",
["Sanadya"] = "ET:733/94%EB:739/94%EM:871/91%",
["Lenfort"] = "LT:776/97%SB:780/99%LM:976/98%",
["Sattøx"] = "ET:612/82%UB:224/30%EM:891/90%",
["Kappadonna"] = "LT:783/98%EB:731/93%EM:848/88%",
["Necrolyt"] = "LT:770/97%SB:802/99%LM:991/98%",
["Falfaria"] = "RT:430/57%EB:600/83%LM:910/95%",
["Rabauke"] = "LT:571/97%EB:548/93%SM:998/99%",
["Anokii"] = "LT:621/98%EB:451/86%EM:738/83%",
["Ponv"] = "CT:157/18%RB:431/61%EM:663/77%",
["Freakal"] = "ET:316/81%EB:547/76%EM:777/85%",
["Kogaan"] = "RT:181/60%EB:450/87%RM:340/70%",
["Elspath"] = "ET:407/91%EB:666/91%EM:525/85%",
["Nioko"] = "ET:442/92%RB:502/72%EM:845/91%",
["Kahrael"] = "RT:248/73%EB:474/88%EM:746/83%",
["Hally"] = "RT:254/74%EB:596/84%LM:744/95%",
["Wîllbur"] = "RT:253/71%EB:627/88%EM:852/91%",
["Morgalus"] = "RT:236/68%EB:672/91%EM:827/89%",
["Teeblatt"] = "LT:579/97%EB:652/89%EM:702/94%",
["Wasloshier"] = "UT:357/44%EB:546/78%EM:771/87%",
["Tarhornak"] = "ET:472/94%EB:665/89%EM:879/92%",
["Hausmeisterr"] = "ET:337/85%LB:761/97%LM:958/97%",
["Loardas"] = "ET:646/80%SB:707/99%LM:913/96%",
["Satch"] = "ET:705/86%LB:612/96%LM:918/96%",
["Celina"] = "ET:684/85%LB:744/97%LM:762/96%",
["Lockleen"] = "ET:701/87%EB:658/90%LM:740/95%",
["Palafix"] = "RT:239/73%EB:635/88%EM:703/77%",
["Tamineh"] = "LT:524/96%LB:592/96%EM:545/87%",
["Kralj"] = "ET:631/80%EB:706/94%EM:624/91%",
["Antipasti"] = "ET:592/76%LB:707/95%RM:629/72%",
["Simrann"] = "ET:434/92%EB:645/89%EM:869/92%",
["Talisana"] = "RT:562/70%LB:752/97%EM:879/92%",
["Tecc"] = "ET:713/88%EB:594/83%RM:556/66%",
["Ohberst"] = "ET:621/79%EB:612/83%EM:909/94%",
["Zantast"] = "ET:285/79%EB:633/88%EM:498/84%",
["Marzul"] = "RT:561/71%EB:635/87%EM:682/75%",
["Hodour"] = "ET:362/86%LB:707/95%EM:763/83%",
["Nawag"] = "LT:653/98%EB:596/84%EM:864/91%",
["Komori"] = "ET:594/76%RB:536/74%EM:755/82%",
["Selexus"] = "ET:674/93%EB:707/94%LM:917/96%",
["Torchlight"] = "RT:194/60%EB:692/92%EM:909/94%",
["Zypo"] = "LT:589/97%EB:613/86%EM:673/93%",
["Wellesan"] = "LT:572/97%EB:666/90%LM:926/96%",
["Nydea"] = "ET:707/88%EB:574/81%EM:708/94%",
["Thergen"] = "LT:521/96%EB:481/89%EM:416/76%",
["Elandril"] = "ET:316/81%RB:492/71%RM:625/73%",
["Albert"] = "UT:136/47%SB:792/99%SM:996/99%",
["Brynnhildr"] = "ET:723/88%EB:647/89%LM:757/96%",
["Amalissa"] = "UT:138/43%RB:435/59%RM:590/65%",
["Xork"] = "ET:374/87%EB:581/82%EM:413/76%",
["Thrawmos"] = "ET:402/89%LB:720/95%LM:803/97%",
["Kaarinaa"] = "ET:428/92%EB:673/93%EM:833/92%",
["Muhbert"] = "LT:638/98%LB:734/96%EM:825/88%",
["Zordie"] = "ST:703/99%LB:774/98%LM:944/98%",
["Tampwn"] = "ET:332/82%EB:685/91%EM:610/90%",
["Koi"] = "ET:599/77%EB:680/92%EM:790/88%",
["Puupie"] = "UT:373/49%EB:609/84%EM:797/86%",
["Kalfurion"] = "ET:715/88%EB:564/94%RM:384/68%",
["Shaweng"] = "ET:433/92%EB:380/80%EM:402/82%",
["Yuunia"] = "LT:578/97%LB:727/96%LM:966/98%",
["Iconoclast"] = "ET:578/75%RB:437/62%LM:917/95%",
["Fettdorf"] = "RT:177/55%EB:635/87%EM:739/81%",
["Stêlla"] = "ET:673/85%EB:695/93%EM:788/85%",
["Mneo"] = "LT:810/95%EB:676/91%LM:899/95%",
["Gd"] = "RT:263/73%EB:465/88%EM:836/92%",
["Cottonhead"] = "ET:286/81%EB:550/79%LM:734/96%",
["Tutnichtweh"] = "ET:331/84%EB:515/75%RM:516/57%",
["Sefi"] = "LT:846/97%LB:752/97%EM:864/90%",
["Faxxy"] = "UT:129/40%RB:499/69%EM:761/83%",
["Haradel"] = "LT:611/97%EB:618/85%EM:759/83%",
["Imbadruide"] = "LT:676/96%LB:749/97%LM:853/95%",
["Orvus"] = "UT:100/32%LB:734/97%EM:869/92%",
["Jinthra"] = "RT:201/68%LB:760/96%LM:964/97%",
["Egre"] = "ET:355/91%EB:711/90%EM:658/91%",
["Dreshar"] = "UT:76/26%EB:695/89%EM:822/85%",
["Watchmesap"] = "RT:179/61%EB:710/90%RM:404/73%",
["Kimaruh"] = "RT:473/64%EB:698/89%EM:796/83%",
["Exident"] = "RT:192/67%EB:481/87%EM:821/85%",
["Amaroq"] = "LT:493/97%EB:719/91%LM:959/97%",
["Orkkarr"] = "ET:320/88%EB:739/93%LM:818/96%",
["Wwiesel"] = "ET:645/83%EB:726/91%EM:828/87%",
["Sumo"] = "ST:724/99%EB:735/93%EM:875/91%",
["Fatalius"] = "ET:350/89%LB:771/97%LM:966/97%",
["Undso"] = "LT:577/98%SB:750/99%LM:912/98%",
["Lisaan"] = "ET:425/94%EB:615/94%EM:822/85%",
["Stuníslove"] = "LT:578/97%EB:720/90%EM:892/91%",
["Jndy"] = "ET:306/87%EB:685/87%LM:804/96%",
["Vessl"] = "LT:520/97%LB:775/98%LM:980/98%",
["Nextime"] = "RT:186/63%LB:774/97%EM:913/93%",
["Ayzid"] = "ET:356/90%EB:710/89%EM:786/82%",
["Nohra"] = "ET:360/90%EB:729/92%EM:891/91%",
["Onid"] = "LT:444/95%EB:701/89%EM:851/88%",
["Chriso"] = "UT:361/49%EB:701/89%EM:767/80%",
["Grantelbart"] = "ET:686/89%LB:774/97%EM:881/92%",
["Leckereis"] = "ET:593/79%EB:666/85%EM:594/87%",
["Hindukush"] = "LT:443/95%EB:593/93%EM:893/92%",
["Garô"] = "ET:418/93%EB:712/90%EM:929/94%",
["Finex"] = "LT:623/98%EB:593/93%EM:854/88%",
["Snibsnab"] = "EB:649/84%EM:604/87%",
["Fíngers"] = "ET:379/93%EB:682/87%EM:803/83%",
["Wildherzchen"] = "LT:725/97%SB:784/99%LM:843/98%",
["Ogyhachi"] = "ET:645/85%EB:683/86%EM:852/88%",
["Jacboo"] = "LT:611/98%SB:756/99%LM:922/98%",
["Vincenzo"] = "RT:463/65%LB:767/96%LM:930/95%",
["Nvs"] = "LT:754/96%LB:791/98%LM:970/98%",
["Zerroc"] = "ST:797/99%LB:781/98%LM:946/97%",
["Ghazkhull"] = "ST:676/99%EB:694/87%EM:908/90%",
["Lvl"] = "ET:600/86%LB:746/96%LM:925/96%",
["Jezal"] = "EB:678/87%EM:897/92%",
["Rizii"] = "LT:783/98%SB:832/99%LM:986/98%",
["Gôdrick"] = "RT:280/52%EB:637/82%RM:660/73%",
["Leibhaftiger"] = "ET:650/84%EB:532/89%EM:629/88%",
["Søss"] = "ET:415/93%LB:772/97%EM:782/94%",
["Everspark"] = "RT:546/74%LB:776/98%SM:978/99%",
["Lindsayluhan"] = "ET:703/91%LB:753/95%LM:935/95%",
["Rageblade"] = "ET:398/93%EB:720/91%EM:881/91%",
["Barovar"] = "ET:253/77%EB:712/89%EM:842/87%",
["Kluk"] = "LT:478/95%EB:684/87%LM:834/96%",
["Fanatic"] = "ST:685/99%EB:706/90%EM:843/88%",
["Phenael"] = "ET:689/89%SB:749/99%EM:832/86%",
["Thee"] = "LT:768/97%SB:821/99%SM:1053/99%",
["Hefezwerg"] = "RT:488/66%EB:677/87%EM:498/81%",
["Azia"] = "LT:528/98%EB:683/87%EM:750/87%",
["Tôrvi"] = "ET:586/76%EB:723/91%EM:873/91%",
["Saeschn"] = "RT:384/50%EB:589/93%EM:771/80%",
["Skeptik"] = "ET:624/83%EB:733/92%EM:925/94%",
["Bigdee"] = "ET:344/91%EB:642/83%EM:873/92%",
["Suhra"] = "ET:372/92%EB:740/93%LM:851/97%",
["Mito"] = "ET:580/79%EB:651/84%EM:570/87%",
["Mcwarr"] = "UT:171/27%EB:709/90%EM:828/88%",
["Lasix"] = "ET:327/89%EB:704/88%EM:756/94%",
["Illyasviel"] = "ET:304/85%LB:629/95%LM:966/97%",
["Flûu"] = "ET:732/93%EB:707/90%EM:707/77%",
["Ultravoxx"] = "ET:563/75%EB:703/89%EM:875/89%",
["Nethariom"] = "LT:644/98%EB:744/94%LM:928/96%",
["Ajnin"] = "RT:447/61%EB:748/94%EM:899/92%",
["Hitandcrit"] = "ET:328/87%EB:554/91%EM:714/92%",
["Ragesoul"] = "RT:397/57%EB:697/88%LM:749/95%",
["Wyran"] = "ET:730/93%EB:689/88%EM:864/91%",
["Zynamal"] = "UT:310/42%EB:714/90%EM:796/83%",
["Phorman"] = "LT:572/97%EB:715/91%EM:897/91%",
["Xzyphe"] = "LT:433/95%EB:619/94%EM:743/94%",
["Kroldam"] = "RT:183/57%EB:706/93%EM:909/94%",
["Uncled"] = "LT:693/98%EB:426/84%EM:749/83%",
["Layron"] = "ET:470/93%EB:686/92%EM:905/94%",
["Humbuk"] = "LT:637/98%EB:654/91%EM:842/93%",
["Herbalist"] = "ET:278/79%LB:770/98%LM:937/96%",
["Arviu"] = "ET:419/93%LB:753/97%LM:976/98%",
["Ettê"] = "LT:604/97%LB:713/95%LM:921/96%",
["Longxhorn"] = "ET:710/87%EB:677/92%LM:830/95%",
["Alaura"] = "RT:305/69%EB:586/85%EM:769/88%",
["Lakamira"] = "ET:437/92%SB:779/99%LM:967/98%",
["Someria"] = "LT:536/97%EB:515/92%EM:795/86%",
["Megawatt"] = "EB:615/87%EM:771/84%",
["Draganar"] = "ET:656/81%LB:751/97%LM:912/96%",
["Wankatanka"] = "UT:392/48%LB:604/96%EM:910/94%",
["Persist"] = "EB:667/89%LM:925/95%",
["Katúum"] = "RB:513/71%EM:842/90%",
["Tantotanko"] = "UT:247/34%EB:654/89%LM:948/97%",
["Regnitteu"] = "ET:417/91%EB:537/93%LM:805/97%",
["Makawee"] = "ET:645/81%EB:632/86%LM:943/96%",
["Kurayamí"] = "RT:79/54%SB:789/99%SM:1012/99%",
["Matjes"] = "LT:495/95%EB:620/86%LM:817/97%",
["Aldébaran"] = "EB:600/83%EM:680/94%",
["Holychick"] = "UT:86/30%EB:649/90%EM:871/92%",
["Samilja"] = "EB:600/85%EM:741/84%",
["Foxbrush"] = "RT:265/74%EB:668/91%RM:642/74%",
["Sôûlheart"] = "UT:342/42%EB:522/92%EM:712/94%",
["Orgnolf"] = "EB:556/79%EM:853/90%",
["Grimbergen"] = "ET:371/88%EB:623/86%EM:494/85%",
["Genda"] = "UT:148/47%EB:694/94%EM:858/92%",
["Guatemua"] = "ET:310/81%EB:598/82%RM:565/63%",
["Kentox"] = "UT:141/44%LB:673/98%EM:629/91%",
["Bombel"] = "EB:516/75%EM:732/80%",
["Oce"] = "UT:292/35%EB:685/91%EM:873/91%",
["Zitra"] = "ET:469/94%EB:678/93%LM:737/95%",
["Lunaa"] = "RT:224/70%LB:596/97%EM:826/91%",
["Memeowl"] = "RT:478/66%EB:617/87%EM:827/91%",
["Platzwunde"] = "CT:175/20%EB:428/84%EM:667/77%",
["Neelyamik"] = "ST:742/99%EB:532/92%EM:725/81%",
["Jerri"] = "RB:400/59%RM:479/52%",
["Rabba"] = "LT:537/96%EB:521/92%EM:887/92%",
["Cerebor"] = "ST:767/99%LB:593/96%LM:915/95%",
["Leêrôy"] = "RT:254/70%EB:666/90%EM:859/90%",
["Kakerlake"] = "LT:550/96%EB:669/92%EM:666/93%",
["Mbáka"] = "RB:423/62%RM:539/70%",
["Dorothee"] = "ET:329/84%LB:745/97%LM:922/95%",
["Amzngheal"] = "RT:458/57%EB:687/94%EM:739/84%",
["Trüffelzahn"] = "RT:230/67%EB:588/82%EM:868/92%",
["Baldrasur"] = "EB:547/76%UM:266/27%",
["Chànnóx"] = "RT:180/56%EB:538/78%EM:751/84%",
["Lôreya"] = "EB:656/90%EM:870/93%",
["Tobear"] = "LT:666/95%EB:541/94%LM:916/97%",
["Kurtkuhbaine"] = "EB:509/91%EM:684/77%",
["Chromosom"] = "LT:492/95%EB:686/94%EM:443/81%",
["Kalami"] = "ET:651/85%LB:580/95%EM:801/81%",
["Vedran"] = "LT:757/96%LB:750/95%EM:895/94%",
["Xperience"] = "ET:335/88%LB:764/96%LM:863/98%",
["Ðipi"] = "ET:619/83%EB:735/93%LM:927/95%",
["Hugoderjäger"] = "LT:778/98%SB:812/99%SM:1014/99%",
["Trollumpi"] = "ST:710/99%SB:789/99%SM:888/99%",
["Ruzak"] = "LT:743/95%LB:781/98%LM:977/98%",
["Zugzugzug"] = "LT:774/97%SB:806/99%LM:855/97%",
["Quorn"] = "LT:453/95%SB:809/99%SM:997/99%",
["Avius"] = "ET:246/77%LB:611/96%EM:881/92%",
["Praetorius"] = "ST:753/99%RB:266/59%RM:344/64%",
["Exui"] = "ET:425/94%EB:732/92%EM:787/76%",
["Badmoonrisin"] = "ST:694/99%EB:733/93%LM:928/95%",
["Nalliya"] = "LT:780/98%LB:792/98%LM:979/97%",
["Nerathor"] = "ET:736/93%LB:769/96%LM:954/97%",
["Kräuteruwe"] = "LT:773/97%LB:793/98%LM:918/95%",
["Bordo"] = "LT:743/95%LB:720/95%EM:773/88%",
["Drewfire"] = "LT:540/97%EB:703/90%EM:863/93%",
["Morrisan"] = "ET:355/90%SB:762/99%LM:847/98%",
["Ralathor"] = "LT:571/97%LB:664/98%LM:830/98%",
["Kiwitastix"] = "LT:709/95%LB:604/95%RM:659/73%",
["Majam"] = "ET:659/86%LB:696/98%LM:986/98%",
["Tavuk"] = "ST:796/99%LB:784/98%LM:760/97%",
["Kryptonite"] = "LT:745/97%LB:774/98%LM:924/96%",
["Anorak"] = "ST:764/99%LB:757/95%LM:943/97%",
["Rakmar"] = "ET:659/86%EB:677/86%EM:847/89%",
["Malle"] = "ET:642/84%EB:731/93%LM:725/95%",
["Toolatebro"] = "LT:781/98%LB:790/98%SM:999/99%",
["Frostfreak"] = "ET:391/92%EB:491/89%EM:800/85%",
["Bunchi"] = "LT:620/98%LB:766/96%LM:945/97%",
["Dostrus"] = "ET:609/81%EB:591/75%EM:806/83%",
["Kair"] = "ET:643/84%EB:716/91%EM:898/94%",
["Fuffi"] = "LT:766/97%LB:765/96%EM:636/89%",
["Keyan"] = "ET:348/90%EB:583/77%EM:651/77%",
["Therylune"] = "ET:718/92%EB:703/90%EM:705/76%",
["Schneekanone"] = "ET:717/92%EB:713/94%EM:581/91%",
["Dalmaas"] = "LT:757/96%EB:567/94%EM:647/77%",
["Darciuss"] = "ET:725/93%LB:744/98%EM:844/89%",
["Dosenkeks"] = "ET:384/92%LB:675/98%LM:972/98%",
["Thompsen"] = "ET:705/91%EB:709/94%EM:864/94%",
["Mageszn"] = "LT:755/96%SB:811/99%SM:994/99%",
["Khera"] = "LT:770/97%LB:781/98%SM:996/99%",
["Tristanus"] = "LT:762/96%LB:786/98%LM:987/98%",
["Greyhame"] = "ST:744/99%LB:777/97%EM:885/91%",
["Dondorian"] = "ET:562/76%EB:664/90%EM:854/90%",
["Fraenklyn"] = "ST:734/99%SB:741/99%LM:794/97%",
["Apraxas"] = "LT:745/95%LB:775/97%LM:946/96%",
["Orlandoboom"] = "ET:660/86%LB:616/96%EM:776/83%",
["Thonis"] = "LT:650/98%EB:714/91%EM:919/93%",
["Sconnas"] = "ST:708/99%EB:742/94%LM:702/95%",
["Asok"] = "ST:800/99%SB:807/99%LM:978/98%",
["Yhennefer"] = "ET:294/85%EB:673/87%EM:877/91%",
["Oheris"] = "RT:486/66%EB:683/91%LM:779/97%",
["Meyhammer"] = "ET:234/75%EB:687/87%EM:804/90%",
["Surficial"] = "LT:741/95%LB:764/96%LM:741/95%",
["Rokkar"] = "ST:716/99%LB:778/97%LM:804/97%",
["Ventolus"] = "LT:774/97%LB:787/98%SM:929/99%",
["Roxes"] = "LT:767/97%SB:801/99%LM:855/97%",
["Barthleby"] = "LT:588/97%LB:648/95%SM:930/99%",
["Thorsson"] = "ET:695/87%SB:704/99%LM:904/96%",
["Dendros"] = "ET:784/93%LB:736/96%LM:900/95%",
["Noobatwork"] = "RT:173/53%EB:352/75%RM:633/74%",
["Damuh"] = "ET:611/78%EB:444/86%EM:902/94%",
["Maytai"] = "RT:175/55%RB:355/50%RM:504/55%",
["Omascharif"] = "ET:708/87%LB:619/97%EM:862/91%",
["Trenai"] = "ET:384/89%EB:641/87%EM:852/90%",
["Loghain"] = "ET:458/93%RB:495/68%EM:849/93%",
["Methodius"] = "ET:713/89%EB:619/87%RM:528/62%",
["Mirash"] = "CT:156/17%EB:402/82%EM:802/89%",
["Baccola"] = "UT:325/42%EB:615/84%RM:596/65%",
["Mezdanak"] = "RT:248/72%LB:731/96%LM:901/95%",
["Snikz"] = "UT:110/34%RB:450/64%EM:658/92%",
["Wuhanripper"] = "RT:191/58%UB:353/49%RM:340/69%",
["Eggboerd"] = "ET:287/76%LB:635/97%EM:839/91%",
["Bearnecesity"] = "ET:271/78%EB:592/84%EM:712/78%",
["Brønx"] = "RT:247/72%EB:659/89%EM:884/93%",
["Grindelforst"] = "ET:643/82%EB:583/82%EM:683/75%",
["Schamanlord"] = "ET:358/85%EB:573/81%EM:411/76%",
["Knaks"] = "ET:307/79%EB:418/84%EM:574/88%",
["Vanyari"] = "RT:140/55%EB:398/81%RM:288/63%",
["Halbrad"] = "RT:195/62%LB:596/96%EM:708/94%",
["Prajit"] = "UT:42/42%EB:422/83%LM:935/96%",
["Yeomen"] = "LT:603/97%LB:586/95%EM:563/88%",
["Elita"] = "RT:265/73%EB:518/79%EM:552/88%",
["Seidla"] = "UT:125/39%EB:543/93%LM:889/95%",
["Gehstduhea"] = "UT:244/30%EB:480/76%EM:559/75%",
["Waldgeist"] = "UT:140/45%EB:628/87%RM:648/71%",
["Merve"] = "ET:295/79%",
["Guria"] = "ET:309/80%EB:600/85%EM:558/87%",
["Selené"] = "UT:109/34%RB:254/59%RM:600/70%",
["Winde"] = "ET:721/88%LB:744/97%LM:846/98%",
["Syringia"] = "ET:384/89%EB:486/89%EM:742/83%",
["Haffax"] = "RT:229/69%EB:655/89%RM:581/65%",
["Saci"] = "RT:231/69%EB:575/81%EM:563/88%",
["Cesa"] = "ET:491/94%EB:439/86%EM:866/91%",
["Vollkan"] = "ET:351/84%EB:661/90%EM:482/82%",
["Schwarzbulle"] = "RT:175/54%RB:422/61%UM:175/48%",
["Muzdan"] = "RT:468/59%EB:655/90%RM:533/59%",
["Cødex"] = "UT:383/47%RB:454/65%EM:792/87%",
["Suk"] = "RT:166/55%EB:614/86%EM:479/84%",
["Ceresia"] = "ET:602/77%EB:620/86%EM:457/82%",
["Rycca"] = "LT:568/97%LB:741/96%EM:891/93%",
["Zwergolas"] = "RT:527/67%EB:575/82%EM:662/76%",
["Thorogar"] = "ET:269/76%EB:686/92%EM:823/88%",
["Fergustein"] = "CT:199/23%EB:409/84%EM:703/80%",
["Arrtega"] = "CB:189/23%EM:691/76%",
["Pard"] = "ET:265/77%EB:605/83%EM:749/82%",
["Dømina"] = "UT:147/47%RB:498/72%RM:365/72%",
["Zumbie"] = "LT:508/95%EB:458/87%EM:646/92%",
["Kems"] = "CT:99/10%EB:680/92%LM:946/97%",
["Cinnymaii"] = "RT:180/57%EB:536/78%EM:506/84%",
["Ruterford"] = "RT:487/67%SB:790/99%LM:951/97%",
["Otherspawn"] = "LT:655/98%EB:691/92%EM:511/84%",
["Bâna"] = "ET:495/94%EB:477/89%EM:833/88%",
["Nariel"] = "ET:615/79%EB:667/90%EM:809/87%",
["Turaliyon"] = "UT:144/49%RB:506/73%RM:635/70%",
["Vitamix"] = "ET:647/82%RB:454/65%EM:477/84%",
["Antilluke"] = "ET:351/86%RB:413/59%RM:637/71%",
["Xyle"] = "RT:215/67%RB:468/67%RM:316/70%",
["Tweedledum"] = "CT:198/23%EB:356/75%UM:395/42%",
["Thráín"] = "UT:322/40%RB:390/55%RM:668/73%",
["Tomina"] = "RT:252/70%EB:662/89%EM:853/90%",
["Coryphea"] = "LT:637/98%EB:699/93%EM:865/91%",
["Meadhre"] = "ET:401/89%EB:600/84%EM:771/83%",
["Yagguo"] = "RT:196/65%UB:326/46%RM:574/68%",
["Vitas"] = "ST:782/99%SB:752/99%SM:998/99%",
["Ufbassa"] = "RT:196/62%EB:400/80%UM:412/44%",
["Schamandi"] = "UT:115/37%UB:272/37%RM:229/55%",
["Bloedeq"] = "UT:247/31%LB:728/95%EM:861/90%",
["Gamlok"] = "CT:129/14%RB:401/55%EM:879/92%",
["Nsfl"] = "RT:57/50%LB:777/98%SM:988/99%",
["Twite"] = "ET:638/93%LB:716/95%LM:906/96%",
["Aszne"] = "CT:44/5%RB:436/64%RM:490/59%",
["Gilthoniel"] = "RT:394/52%EB:605/83%EM:877/91%",
["Ouragan"] = "UT:363/44%EB:639/87%UM:293/34%",
["Hyralia"] = "ET:458/84%EB:251/85%SM:951/99%",
["Liewa"] = "RT:411/54%EB:605/85%EM:507/85%",
["Fluuze"] = "LT:759/98%SB:806/99%SM:1071/99%",
["Glaimby"] = "ET:363/91%EB:712/94%LM:967/98%",
["Roxars"] = "CT:45/3%EB:427/85%",
["Kurtkot"] = "ET:376/77%RB:454/74%RM:429/61%",
["Belialin"] = "ET:597/88%LB:750/97%SM:981/99%",
["Truckdriver"] = "ET:281/84%EB:734/92%EM:853/88%",
["Tankovic"] = "ET:681/88%EB:697/88%EM:755/82%",
["Tierlieb"] = "SB:823/99%SM:1001/99%",
["Geisterfell"] = "ST:644/99%SB:777/99%LM:950/98%",
["Duschdaz"] = "ET:325/89%EB:711/90%EM:843/89%",
["Akazamyarak"] = "UT:242/32%LB:751/96%SM:1001/99%",
["Virome"] = "LT:557/97%LB:750/98%SM:976/99%",
["Feewulf"] = "ET:658/85%EB:701/89%EM:897/91%",
["Grob"] = "ET:330/87%EB:699/89%EM:855/88%",
["Anox"] = "EB:731/92%EM:891/91%",
["Tyrmonde"] = "RT:454/62%EB:686/88%RM:594/64%",
["Elfknight"] = "RT:524/73%EB:699/89%EM:478/81%",
["Daxuras"] = "ET:574/76%LB:772/97%EM:821/85%",
["Vespax"] = "UT:372/48%EB:515/88%EM:560/84%",
["Erazer"] = "ET:689/89%LB:760/96%EM:880/91%",
["Supergrob"] = "EB:599/79%RM:685/74%",
["Slack"] = "ST:684/99%LB:781/98%LM:949/98%",
["Tsuki"] = "ET:411/93%EB:677/87%EM:909/92%",
["Hînata"] = "ET:571/75%EB:703/89%EM:730/92%",
["Cail"] = "RT:505/68%EB:653/84%RM:679/73%",
["Donkran"] = "ET:351/91%EB:667/84%EM:853/88%",
["Waio"] = "ET:708/91%EB:694/88%RM:674/74%",
["Arylus"] = "ET:350/90%EB:622/94%LM:839/97%",
["Kamon"] = "ET:410/93%EB:749/94%EM:844/87%",
["Kleinaberoho"] = "RT:186/66%EB:745/93%EM:905/93%",
["Wolvieh"] = "ET:251/78%EB:678/86%EM:754/94%",
["Sufu"] = "ET:650/85%LB:768/97%LM:952/97%",
["Mordin"] = "ET:661/85%EB:688/88%EM:733/93%",
["Gummli"] = "LT:531/97%EB:720/91%EM:667/91%",
["Forger"] = "LT:575/98%LB:757/95%EM:804/86%",
["Søciopath"] = "ET:702/90%EB:747/94%EM:880/92%",
["Dekadence"] = "RT:554/74%EB:716/90%EM:589/87%",
["Ugurr"] = "ET:305/84%EB:710/90%EM:898/93%",
["Diegomio"] = "RT:530/72%SB:816/99%LM:966/97%",
["Toboribor"] = "ET:374/93%LB:791/98%SM:989/99%",
["Djaxsona"] = "RT:165/60%LB:737/95%LM:923/96%",
["Vâlor"] = "ET:372/94%LB:774/98%EM:902/93%",
["Luciferz"] = "UT:359/49%EB:702/88%LM:943/95%",
["Wuza"] = "ET:565/75%EB:581/93%EM:849/87%",
["Myw"] = "ET:548/76%EB:676/87%EM:817/87%",
["Dancemoves"] = "RT:509/71%EB:664/85%LM:812/97%",
["Mckeilbart"] = "ET:334/89%EB:578/92%EM:754/94%",
["Hackepetér"] = "LT:458/95%EB:653/84%EM:768/83%",
["Redone"] = "ET:668/87%EB:736/92%EM:583/87%",
["Cosy"] = "UT:115/44%EB:650/84%RM:356/71%",
["Nightdrive"] = "LT:742/95%LB:785/98%LM:917/95%",
["Râgna"] = "UT:261/39%EB:681/87%EM:442/79%",
["Kelras"] = "ET:555/75%EB:747/94%EM:629/89%",
["Belaros"] = "ET:740/94%LB:760/97%LM:952/98%",
["Milchmeister"] = "LT:480/96%EB:624/81%EM:768/81%",
["Irmgart"] = "ET:645/83%LB:639/95%LM:975/98%",
["Easychêêsy"] = "ET:321/88%EB:542/90%EM:730/93%",
["Deichfee"] = "ET:719/92%EB:697/89%EM:711/76%",
["Ðrhyde"] = "ET:713/91%EB:745/94%LM:853/97%",
["Tazil"] = "CT:166/22%EB:529/90%EM:839/86%",
["Vizose"] = "EB:645/83%EM:899/92%",
["Feedme"] = "LT:517/96%EB:652/84%EM:480/78%",
["Safur"] = "ET:627/88%EB:711/93%LM:881/95%",
["Phìllia"] = "RT:526/70%EB:653/84%EM:825/86%",
["Gunki"] = "EB:637/83%EM:922/94%",
["Gerozh"] = "ET:730/93%LB:770/97%EM:759/94%",
["Mäkker"] = "RT:517/72%EB:714/90%EM:849/88%",
["Teery"] = "ET:292/83%EB:698/89%EM:757/94%",
["Digedi"] = "LT:719/97%SB:791/99%SM:915/99%",
["Onbag"] = "CT:53/10%EB:745/93%EM:864/89%",
["Belesto"] = "LT:387/97%EB:683/94%EM:494/76%",
["Mafaka"] = "EB:620/86%EM:905/94%",
["Drusílla"] = "CT:162/18%RB:481/66%EM:839/90%",
["Rivan"] = "RT:515/64%LB:752/97%EM:785/84%",
["Malefici"] = "EB:657/90%EM:867/92%",
["Urunok"] = "EB:550/78%EM:771/83%",
["Kol"] = "RT:517/69%EB:542/94%EM:781/85%",
["Opalu"] = "CT:36/7%EB:668/89%EM:862/90%",
["Melta"] = "EB:701/94%LM:898/95%",
["Naron"] = "EB:653/90%RM:581/65%",
["Yep"] = "ET:671/86%EB:617/88%EM:691/94%",
["Aniawen"] = "LB:765/98%EM:905/94%",
["Kamaria"] = "ET:395/89%LB:657/98%RM:660/73%",
["Metyl"] = "ET:452/92%EB:544/93%EM:737/80%",
["Nevinear"] = "LT:625/98%EB:636/87%EM:794/86%",
["Boltan"] = "ET:466/93%LB:708/95%EM:822/89%",
["Urgur"] = "LT:617/98%EB:552/94%EM:758/86%",
["Leid"] = "RT:255/73%EB:674/92%LM:902/95%",
["Syrina"] = "RT:210/62%EB:650/89%LM:739/95%",
["Shokadin"] = "ET:584/75%EB:620/85%LM:788/97%",
["Dornok"] = "ET:318/82%EB:578/82%RM:606/67%",
["Footy"] = "LB:740/96%EM:906/94%",
["Flowerpowêr"] = "RT:396/53%EB:574/82%EM:736/80%",
["Exdis"] = "RT:222/66%EB:512/75%RM:348/71%",
["Hurz"] = "ET:388/89%EB:634/89%EM:792/86%",
["Perdita"] = "ET:256/76%EB:663/90%EM:790/85%",
["Zulphura"] = "ET:312/83%EB:602/84%RM:484/52%",
["Hammerheidi"] = "ET:420/92%LB:737/97%LM:892/95%",
["Turolus"] = "EB:619/85%EM:705/78%",
["Prinznoldi"] = "LT:490/95%EB:644/90%EM:869/94%",
["Jürgenfinger"] = "EB:642/89%LM:885/95%",
["Quieto"] = "ET:317/83%EB:477/89%EM:762/85%",
["Onilia"] = "LT:593/98%EB:548/79%EM:827/89%",
["Para"] = "UT:134/45%EB:681/92%EM:835/89%",
["Bettchilor"] = "UT:269/34%LB:706/95%LM:905/95%",
["Sluterina"] = "EB:586/83%EM:650/75%",
["Farnsworth"] = "LB:720/96%LM:943/97%",
["Perith"] = "EB:594/81%EM:830/88%",
["Motionless"] = "ET:603/77%LB:633/97%LM:878/98%",
["Ibujin"] = "LT:633/98%EB:513/91%EM:871/93%",
["Junoe"] = "ET:477/94%EB:541/93%LM:916/95%",
["Brotos"] = "ET:287/79%LB:609/96%LM:939/97%",
["Oldbone"] = "ET:675/84%RB:535/74%EM:788/86%",
["Bin"] = "EB:524/76%EM:684/75%",
["Barliance"] = "ET:328/85%EB:584/82%EM:850/90%",
["Moj"] = "UT:355/43%LB:628/97%EM:843/89%",
["Orni"] = "LB:718/96%LM:970/98%",
["Lissllotta"] = "LT:510/95%LB:638/98%LM:889/96%",
["Nez"] = "CT:82/8%RB:467/67%EM:528/85%",
["Juwi"] = "RT:483/66%EB:680/91%CM:145/13%",
["Borakken"] = "RT:382/51%EB:517/93%EM:854/91%",
["Palitesse"] = "CT:69/23%RB:337/72%RM:562/62%",
["Ziataja"] = "ET:361/87%LB:557/95%EM:559/87%",
["Trixois"] = "RT:173/53%RB:494/71%EM:737/84%",
["Poschki"] = "RT:122/61%EB:571/81%EM:386/81%",
["Zini"] = "EB:616/85%LM:912/95%",
["Trickortreat"] = "ET:429/94%LB:762/95%LM:966/97%",
["Kardyan"] = "LT:754/96%LB:779/98%EM:911/93%",
["Vorosch"] = "LT:755/96%LB:765/96%LM:966/97%",
["Puzzle"] = "LT:548/97%EB:521/88%EM:811/84%",
["Thorarise"] = "LT:598/97%EB:724/92%EM:859/89%",
["Streamo"] = "ET:584/78%EB:534/90%EM:828/88%",
["Censored"] = "ET:409/93%EB:464/84%EM:857/89%",
["Vitissa"] = "ET:741/94%EB:734/93%EM:478/80%",
["Zimg"] = "ET:712/92%LB:757/95%LM:966/97%",
["Sanchezxzopq"] = "ET:733/94%EB:709/90%EM:873/91%",
["Genz"] = "LT:625/98%EB:739/93%LM:967/97%",
["Hpbäxxter"] = "ET:693/90%EB:671/85%EM:904/93%",
["Splîff"] = "ET:686/88%LB:707/97%LM:975/98%",
["Ary"] = "RT:493/69%EB:747/94%EM:891/91%",
["Páycùr"] = "ST:758/99%LB:705/98%SM:960/99%",
["Dareconian"] = "ET:694/90%SB:768/99%LM:930/95%",
["Ezio"] = "ET:702/91%LB:583/95%LM:918/97%",
["Whitehame"] = "LT:778/98%LB:784/98%LM:970/98%",
["Fences"] = "ET:738/94%LB:743/96%LM:968/98%",
["Synhra"] = "ET:336/88%EB:665/85%EM:654/89%",
["Ballione"] = "ET:653/86%EB:653/89%EM:633/93%",
["Aphrodi"] = "LT:774/97%LB:783/98%LM:810/96%",
["Aristala"] = "LT:553/97%EB:575/94%EM:697/94%",
["Dopemum"] = "ET:305/87%LB:653/98%LM:988/98%",
["Bôfrôst"] = "ET:619/82%EB:679/88%EM:783/84%",
["Nicozealand"] = "ST:750/99%LB:770/97%LM:880/98%",
["Maxjin"] = "ET:685/89%EB:712/94%LM:898/95%",
["Adrianalima"] = "ET:724/93%LB:712/98%EM:617/89%",
["Jenzen"] = "LT:643/98%SB:790/99%SM:986/99%",
["Tonz"] = "LT:678/98%SB:816/99%SM:988/99%",
["Dimitrî"] = "ET:735/94%SB:780/99%LM:927/95%",
["Varantis"] = "ST:767/99%SB:801/99%LM:935/98%",
["Langen"] = "LT:747/95%SB:756/99%EM:899/92%",
["Mechtiger"] = "ET:697/90%LB:716/95%LM:868/98%",
["Drainqt"] = "ET:694/90%SB:762/99%LM:963/97%",
["Zerò"] = "LT:762/96%EB:745/94%LM:938/95%",
["Yenlow"] = "ET:687/89%LB:795/98%LM:871/98%",
["Shunkor"] = "LT:571/97%EB:669/87%EM:670/94%",
["Dexoras"] = "LT:658/98%LB:779/97%LM:937/95%",
["Urinstein"] = "ET:669/91%LB:741/95%LM:631/95%",
["Buc"] = "ET:610/81%EB:598/83%EM:689/79%",
["Maetzker"] = "ST:675/99%EB:736/93%EM:848/89%",
["Ustaa"] = "ET:657/86%EB:703/90%LM:769/96%",
["Weightwatch"] = "LT:772/97%LB:767/96%LM:983/98%",
["Noemy"] = "LT:762/96%LB:736/98%LM:943/95%",
["Orgnalf"] = "LT:743/95%SB:759/99%LM:968/97%",
["Emafrost"] = "LT:762/96%EB:722/92%LM:963/97%",
["Glossmos"] = "ET:415/94%EB:708/89%EM:825/86%",
["Flair"] = "ET:724/93%EB:723/92%EM:901/92%",
["Rizzo"] = "LT:637/98%LB:767/96%EM:929/94%",
["Akho"] = "LT:650/98%EB:694/93%EM:557/90%",
["Xandralla"] = "ET:434/94%EB:737/94%LM:926/95%",
["Pager"] = "ET:581/79%EB:653/84%EM:462/80%",
["Peter"] = "ET:567/76%EB:642/83%RM:660/70%",
["Shaggadelic"] = "LT:772/97%SB:798/99%EM:915/94%",
["Dembouz"] = "RT:540/71%RB:532/71%CM:84/10%",
["Chyv"] = "LT:773/97%LB:777/97%LM:945/96%",
["Azulon"] = "ET:701/91%LB:765/97%LM:949/96%",
["Andorak"] = "LT:757/98%LB:779/98%SM:977/99%",
["Nashlez"] = "ET:558/75%EB:553/91%LM:852/97%",
["Lamm"] = "LT:753/97%LB:748/97%LM:884/97%",
["Sheo"] = "ET:594/89%EB:696/93%EM:827/91%",
["Liandren"] = "ET:497/81%EB:667/90%EM:792/89%",
["Obileé"] = "LT:662/95%LB:724/96%LM:724/96%",
["Esartar"] = "ET:636/94%EB:634/91%EM:859/94%",
["Pwnela"] = "ET:472/82%EB:510/90%EM:771/87%",
["Kleinemaus"] = "ET:630/91%EB:661/91%EM:844/93%",
["Siou"] = "LT:688/98%LB:686/97%SM:912/99%",
["Cocoon"] = "ET:433/94%EB:671/90%LM:739/95%",
["Bordeaux"] = "ET:661/94%EB:677/93%EM:798/90%",
["Gorr"] = "LT:763/97%LB:773/97%LM:948/97%",
["Astrix"] = "ST:809/99%SB:803/99%SM:976/99%",
["Miara"] = "ET:633/91%EB:595/85%EM:829/91%",
["Tivania"] = "LT:765/97%LB:772/97%LM:944/98%",
["Minghas"] = "ET:596/93%EB:653/93%EM:696/88%",
["Bonda"] = "ET:613/87%EB:561/87%LM:867/95%",
["Tyuralion"] = "LT:719/97%LB:756/97%EM:871/94%",
["Fini"] = "LT:760/96%LB:690/97%LM:942/97%",
["Soqa"] = "ET:327/89%EB:503/78%EM:551/88%",
["Weezy"] = "LT:614/98%LB:678/97%LM:953/97%",
["Broem"] = "LT:768/97%LB:769/97%SM:906/99%",
["Zawut"] = "ST:778/99%SB:762/99%SM:954/99%",
["Yang"] = "LT:616/97%EB:529/91%EM:504/85%",
["Furiorne"] = "ST:787/99%SB:789/99%SM:975/99%",
["Platypus"] = "ET:256/79%EB:575/88%EM:705/88%",
["Bofur"] = "LT:749/96%SB:754/99%LM:924/97%",
["Silberrugge"] = "LT:770/98%SB:749/99%LM:956/98%",
["Quentyn"] = "LT:767/97%LB:781/98%LM:951/96%",
["Kallisto"] = "LT:618/97%SB:762/99%SM:917/99%",
["Azora"] = "LT:702/95%LB:720/95%LM:831/97%",
["Thorian"] = "ET:664/90%EB:701/92%EM:575/93%",
["Xelron"] = "LT:528/96%LB:721/98%EM:896/92%",
["Ehlize"] = "ST:760/99%LB:787/98%SM:985/99%",
["Kortis"] = "LT:755/96%LB:765/97%LM:911/96%",
["Kazza"] = "ET:730/93%LB:759/96%LM:931/95%",
["Arundel"] = "LT:747/98%LB:760/98%LM:942/98%",
["Kittyhawk"] = "ET:727/94%LB:755/96%SM:995/99%",
["Gotama"] = "LT:779/98%LB:728/96%EM:524/89%",
["Plagy"] = "ET:388/92%EB:545/90%EM:817/86%",
["Ellipse"] = "ET:255/79%EB:666/86%EM:822/85%",
["Alish"] = "LT:526/96%EB:679/87%EM:909/92%",
["Bigdickjohn"] = "LT:517/97%LB:708/97%LM:895/98%",
["Zarakor"] = "EB:693/88%EM:712/78%",
["Boidii"] = "LT:776/98%SB:817/99%SM:1012/99%",
["Iambeauty"] = "ET:274/82%LB:785/98%SM:1022/99%",
["Cuero"] = "ET:360/89%SB:799/99%LM:950/96%",
["Kûrdonas"] = "ET:262/80%EB:665/85%EM:794/84%",
["Alusià"] = "ET:285/84%EB:713/90%EM:535/78%",
["Xurt"] = "ET:398/94%EB:694/88%EM:492/82%",
["Justcause"] = "RT:172/59%EB:727/91%EM:835/87%",
["Dojun"] = "RT:536/70%EB:672/86%EM:773/81%",
["Klobber"] = "RT:211/71%EB:665/85%EM:740/87%",
["Lumière"] = "ET:425/94%EB:732/93%LM:818/96%",
["Sìlenc"] = "ET:265/81%EB:474/85%LM:775/95%",
["Mobzilla"] = "LT:493/96%EB:530/89%EM:526/84%",
["Haris"] = "LT:565/98%EB:691/87%EM:848/88%",
["Râpwnzel"] = "ET:613/81%EB:679/86%EM:797/85%",
["Muzlok"] = "ET:234/76%EB:691/88%EM:712/78%",
["Greenbull"] = "RT:160/58%EB:694/88%EM:861/94%",
["Mefi"] = "RT:213/70%LB:679/97%LM:982/98%",
["Jimmyglitshy"] = "ET:734/94%SB:804/99%LM:945/97%",
["Tanksäule"] = "UT:154/32%EB:670/86%EM:797/83%",
["Ansotica"] = "ET:310/87%LB:759/95%EM:886/91%",
["Aihueadi"] = "CT:174/22%EB:648/84%EM:770/82%",
["Astroboi"] = "LT:547/97%EB:650/84%EM:480/81%",
["Louzira"] = "LT:762/96%SB:800/99%SM:997/99%",
["Dannalarth"] = "ET:686/89%LB:777/97%LM:940/97%",
["Loktarogar"] = "RT:522/73%EB:708/90%EM:899/92%",
["Kharadun"] = "ST:758/99%LB:778/98%LM:972/98%",
["Bladerunnér"] = "LT:520/97%LB:763/97%LM:915/95%",
["Zucc"] = "ST:677/99%LB:749/95%LM:919/95%",
["Biodiversity"] = "ST:601/99%LB:766/98%LM:634/95%",
["Gámmler"] = "ET:244/76%EB:682/87%RM:405/72%",
["Stealthbait"] = "LB:762/96%LM:975/98%",
["Zaxndi"] = "RT:222/71%EB:703/89%EM:761/94%",
["Bertholm"] = "ET:262/78%EB:689/88%EM:833/86%",
["Kenafin"] = "LT:569/97%EB:670/86%EM:740/79%",
["Schmierfink"] = "UT:252/32%EB:670/86%EM:782/81%",
["Hulky"] = "RT:170/61%EB:653/84%UM:332/38%",
["Nímrod"] = "RT:187/63%EB:642/83%UM:410/47%",
["Whitouge"] = "ET:646/84%EB:681/87%EM:520/82%",
["Draigh"] = "UT:258/39%EB:655/84%EM:838/87%",
["Medon"] = "ET:276/84%EB:518/89%EM:878/90%",
["Ixplod"] = "ET:265/81%EB:567/91%EM:898/92%",
["Ginabella"] = "ET:368/91%EB:668/86%EM:512/81%",
["Kybe"] = "ET:691/90%LB:775/98%LM:966/97%",
["Betternow"] = "ET:628/83%LB:774/98%EM:868/91%",
["Karrio"] = "ET:706/90%EB:741/93%EM:913/94%",
["Tristanús"] = "ET:336/88%EB:689/87%RM:695/74%",
["Stecherina"] = "ET:351/89%EB:719/91%EM:836/86%",
["Nallisia"] = "LT:641/98%EB:612/94%EM:702/91%",
["Ohsaka"] = "EB:601/83%EM:888/94%",
["Chuonnasuan"] = "RB:409/60%RM:615/68%",
["Khati"] = "RT:209/67%EB:673/91%EM:857/91%",
["Leicester"] = "ET:596/78%RB:510/73%EM:718/81%",
["Turarc"] = "LT:566/97%EB:700/94%EM:733/80%",
["Vincent"] = "ET:227/76%RB:485/71%RM:516/72%",
["Sanitatem"] = "ET:415/91%EB:538/77%RM:537/59%",
["Hotandspicy"] = "RT:446/59%EB:662/90%EM:889/94%",
["Quitschi"] = "EB:632/89%LM:965/98%",
["Obeyforever"] = "CT:198/24%EB:363/78%EM:771/84%",
["Lysyl"] = "EB:544/94%RM:533/59%",
["Mattz"] = "RT:165/55%EB:479/89%EM:818/90%",
["Vierzich"] = "EB:680/91%LM:936/96%",
["Schnétzlèr"] = "ET:269/78%EB:699/93%EM:899/94%",
["Teraldus"] = "UT:128/41%RB:535/74%RM:596/66%",
["Jünther"] = "ET:399/90%RB:512/74%EM:780/85%",
["Nøt"] = "LB:725/96%LM:929/96%",
["Bakka"] = "RT:218/63%EB:547/78%EM:432/78%",
["Proctus"] = "CT:171/19%EB:380/79%RM:373/74%",
["Catsuane"] = "EB:720/94%",
["Beerboy"] = "CT:69/20%RB:463/67%EM:422/78%",
["Ankaa"] = "UT:271/33%EB:650/89%EM:865/92%",
["Depay"] = "UT:371/49%EB:383/81%RM:523/61%",
["Hjardilla"] = "CT:112/11%EB:622/86%LM:897/96%",
["Braker"] = "CT:177/20%EB:646/87%EM:868/91%",
["Shinomane"] = "ET:677/83%EB:671/90%EM:811/86%",
["Jodocus"] = "EB:679/91%RM:456/53%",
["Bestling"] = "RT:474/64%EB:545/78%EM:835/89%",
["Eduardlaser"] = "EB:709/93%EM:693/76%",
["Elfmeter"] = "EB:349/77%RM:633/70%",
["Salbe"] = "EB:623/85%EM:788/85%",
["Serîna"] = "UT:336/46%LB:725/95%EM:886/93%",
["Noodl"] = "LT:660/98%LB:741/96%SM:983/99%",
["Parba"] = "RT:539/67%LB:598/95%EM:655/75%",
["Jim"] = "LT:599/97%LB:570/95%EM:679/93%",
["Voice"] = "LT:533/96%EB:622/86%EM:844/91%",
["Bärchine"] = "ET:279/92%LB:738/96%LM:963/98%",
["Diggy"] = "UT:359/47%EB:541/78%EM:539/86%",
["Sacrament"] = "EB:585/80%EM:793/85%",
["Kangfu"] = "EB:600/86%SM:937/99%",
["Korulas"] = "ET:446/94%EB:434/86%EM:734/80%",
["Amberli"] = "CT:112/12%RB:334/73%EM:705/78%",
["Kavork"] = "ET:404/90%LB:710/95%LM:931/96%",
["Diara"] = "EB:542/75%EM:764/81%",
["Rokkorius"] = "ET:290/76%LB:581/95%LM:817/97%",
["Kulsen"] = "EB:635/87%EM:716/79%",
["Kodiac"] = "CT:175/20%EB:619/87%EM:771/83%",
["Zugs"] = "RT:444/60%EB:527/76%EM:796/86%",
["Lynac"] = "UT:152/48%EB:533/77%EM:660/77%",
["Tutenschamun"] = "RT:158/50%EB:586/83%EM:697/79%",
["Tymhora"] = "LT:682/98%LB:712/95%LM:929/96%",
["Malleability"] = "EB:600/83%LM:960/98%",
["Miamarie"] = "ET:439/92%EB:486/90%EM:704/77%",
["Doht"] = "EB:687/93%LM:730/95%",
["Lottidotti"] = "ET:698/91%SB:803/99%LM:965/97%",
["Asnah"] = "LT:754/95%SB:757/99%LM:943/95%",
["Fryxon"] = "ST:742/99%SB:776/99%SM:974/99%",
["Teseus"] = "ET:670/87%EB:742/94%RM:609/68%",
["Loana"] = "RT:551/74%EB:664/85%EM:829/85%",
["Hymiko"] = "LT:749/95%LB:782/98%EM:905/92%",
["Glühbirne"] = "ET:276/83%EB:560/91%LM:912/95%",
["Raktol"] = "ET:647/85%EB:616/85%EM:879/91%",
["Ginjin"] = "ST:683/99%LB:778/98%LM:933/95%",
["Zweidrüber"] = "ST:792/99%LB:774/98%LM:943/97%",
["Keduh"] = "LT:651/98%SB:773/99%SM:956/99%",
["Zama"] = "LT:770/97%LB:769/97%EM:891/92%",
["Skargo"] = "LT:757/98%LB:722/98%LM:920/97%",
["Butscher"] = "LT:582/98%EB:662/85%EM:834/86%",
["Deetoni"] = "ST:726/99%EB:715/90%EM:868/89%",
["Altrozz"] = "LT:548/98%EB:731/93%EM:895/93%",
["Artkore"] = "LT:758/96%LB:781/98%LM:955/97%",
["Okumba"] = "ET:712/92%LB:654/98%LM:971/98%",
["Ersch"] = "ST:668/99%LB:754/95%LM:965/97%",
["Bigphi"] = "ET:704/92%LB:767/96%LM:947/96%",
["Locksen"] = "ET:713/92%LB:763/96%EM:904/93%",
["Zorock"] = "ET:660/86%EB:740/94%EM:850/89%",
["Yûuki"] = "ET:307/86%LB:619/96%EM:849/92%",
["Sylens"] = "ET:622/82%EB:673/91%EM:669/93%",
["Jaqui"] = "LT:763/96%LB:765/96%LM:935/96%",
["Akalabeth"] = "ST:757/99%LB:777/97%LM:959/97%",
["Hollyshort"] = "LT:459/95%LB:755/95%LM:982/98%",
["Mcjacko"] = "ET:719/93%EB:512/91%EM:729/83%",
["Faro"] = "LT:617/98%EB:594/93%EM:846/88%",
["Aburi"] = "ET:370/91%LB:613/97%LM:934/95%",
["Defros"] = "RT:565/74%EB:735/92%EM:891/91%",
["Darwinia"] = "LT:765/97%LB:777/97%LM:934/96%",
["Lééroy"] = "ET:310/86%LB:773/97%LM:954/97%",
["Hashbringer"] = "RT:512/70%LB:752/95%EM:910/94%",
["Celeste"] = "ET:359/90%LB:726/95%LM:881/95%",
["Titansgrip"] = "LT:756/97%LB:757/96%LM:978/98%",
["Klothildozer"] = "LT:781/98%SB:800/99%SM:1016/99%",
["Klatschkenyo"] = "ET:278/81%EB:633/82%RM:491/55%",
["Andracon"] = "RT:213/69%EB:706/89%EM:902/92%",
["Gipsydânger"] = "ET:714/92%LB:715/98%EM:885/92%",
["Darkmagícían"] = "ST:693/99%EB:551/93%LM:753/96%",
["Recoil"] = "LT:765/96%LB:785/98%EM:930/94%",
["Cirdan"] = "LT:755/96%LB:763/96%LM:947/95%",
["Luschi"] = "ET:370/90%EB:553/91%EM:582/87%",
["Drakahn"] = "ST:736/99%LB:663/96%LM:929/95%",
["Vorcan"] = "ET:688/88%EB:728/92%LM:819/96%",
["Lunzy"] = "LT:652/98%EB:466/87%EM:838/92%",
["Shaak"] = "LT:547/97%EB:653/89%EM:718/83%",
["Kandyland"] = "ST:703/99%EB:691/88%LM:789/95%",
["Amandra"] = "LT:556/97%EB:572/76%EM:867/91%",
["Mathata"] = "ST:784/99%SB:802/99%SM:1019/99%",
["Enhancerson"] = "ST:769/99%EB:644/89%EM:781/89%",
["Jolg"] = "LT:657/98%EB:666/84%EM:879/90%",
["Dêathrow"] = "ET:605/80%LB:730/96%EM:496/84%",
["Nucleus"] = "ET:709/92%LB:781/98%LM:975/98%",
["Tharya"] = "RT:550/73%LB:763/96%LM:922/95%",
["Karkoo"] = "ET:585/78%EB:470/88%EM:807/90%",
["Yapzy"] = "RT:486/65%CM:142/18%",
["Droelf"] = "LT:730/98%SB:741/99%EM:821/92%",
["Isilde"] = "LT:534/97%LB:656/97%LM:724/95%",
["Sarafina"] = "ET:720/94%LB:709/97%EM:909/94%",
["Aequitâs"] = "LT:587/98%LB:762/97%LM:954/98%",
["Sider"] = "ET:378/90%EB:724/92%EM:882/91%",
["Celticcross"] = "LT:535/97%EB:515/91%EM:834/91%",
["Tasilo"] = "ST:733/99%EB:726/92%LM:930/95%",
["Rambi"] = "ET:411/92%LB:685/97%LM:966/97%",
["Healyo"] = "ET:380/91%EB:526/90%EM:451/82%",
["Nyarlo"] = "ET:689/93%LB:773/98%LM:657/95%",
["Kanngarnix"] = "ET:701/93%LB:617/96%EM:867/93%",
["Zomted"] = "LT:621/98%EB:733/94%LM:637/95%",
["Tenehuini"] = "ET:565/82%RB:455/69%EM:749/90%",
["Wiffzack"] = "ET:731/94%LB:751/96%LM:930/96%",
["Seventyone"] = "ET:651/92%EB:677/92%LM:931/97%",
["Yennefér"] = "ET:343/88%EB:745/94%LM:944/96%",
["Whilda"] = "ET:653/90%EB:714/93%LM:911/96%",
["Beerstealer"] = "UT:135/48%EB:631/82%EM:882/92%",
["Crumo"] = "LT:430/95%EB:633/86%EM:829/91%",
["Kopfwunde"] = "CT:134/17%EB:653/84%EM:759/79%",
["Xdeathangel"] = "ET:329/87%EB:528/89%EM:715/92%",
["Kentano"] = "ET:600/80%EB:717/91%EM:901/92%",
["Gearbox"] = "ET:411/93%LB:634/95%EM:890/91%",
["Erseni"] = "LT:750/96%LB:779/98%LM:962/98%",
["Yobaby"] = "LT:530/96%EB:583/92%EM:870/89%",
["Fastlife"] = "ET:340/90%EB:501/87%EM:750/79%",
["Slaik"] = "LT:463/96%EB:645/83%EM:814/85%",
["Padalica"] = "ET:179/84%LB:765/98%LM:936/97%",
["Toxer"] = "EB:678/87%EM:867/89%",
["Fisker"] = "LT:752/95%SB:773/99%EM:870/89%",
["Horschti"] = "LT:612/98%SB:761/99%LM:977/98%",
["Crâck"] = "ET:390/93%EB:482/86%LM:958/97%",
["Mordavian"] = "ET:371/92%EB:730/92%LM:965/97%",
["Snype"] = "LT:747/96%LB:779/98%SM:924/99%",
["Jayrior"] = "EB:598/78%EM:777/82%",
["Leminia"] = "RT:483/63%EB:669/86%EM:629/88%",
["Fasti"] = "RT:142/53%EB:620/85%EM:857/92%",
["Soreanas"] = "RT:554/72%EB:718/91%EM:870/90%",
["Coillá"] = "ET:692/89%EB:690/87%EM:867/90%",
["Bulwajj"] = "ET:674/88%EB:742/93%LM:915/95%",
["Evrlast"] = "LB:775/98%LM:952/97%",
["Latron"] = "RB:552/73%",
["Mafakashred"] = "LB:768/98%EM:607/94%",
["Keló"] = "ST:705/99%LB:767/98%SM:998/99%",
["Amona"] = "ET:392/93%EB:703/88%EM:888/91%",
["Wruko"] = "LT:780/98%LB:726/98%LM:965/97%",
["Loltot"] = "UT:115/41%EB:655/84%EM:900/92%",
["Vanderfizz"] = "RT:530/72%EB:667/85%RM:377/72%",
["Arkanium"] = "RB:491/66%RM:562/60%",
["Eastwoot"] = "RT:520/70%EB:699/89%LM:794/96%",
["Wensh"] = "ET:269/80%EB:729/92%EM:703/91%",
["Grishnakh"] = "ET:298/85%EB:701/89%EM:666/91%",
["Bomel"] = "ET:648/86%LB:769/96%EM:898/92%",
["Penibel"] = "ET:340/88%EB:724/92%LM:812/96%",
["Guccibabo"] = "ET:567/76%EB:597/93%LM:939/96%",
["Cinnabar"] = "ET:716/93%LB:782/98%LM:975/98%",
["Sieda"] = "RT:143/50%EB:670/84%LM:936/95%",
["Claudwig"] = "ET:411/94%EB:625/81%RM:665/72%",
["Sykwar"] = "ET:368/92%EB:621/81%EM:449/78%",
["Ulti"] = "RT:536/70%EB:694/87%EM:868/89%",
["Upset"] = "ET:369/92%EB:634/82%LM:797/96%",
["Yeani"] = "EB:669/86%RM:586/66%",
["Kedd"] = "RB:557/74%EM:766/80%",
["Igneel"] = "RT:415/68%EB:648/84%LM:949/97%",
["Xay"] = "LT:612/98%LB:710/98%LM:843/97%",
["Wobbler"] = "ET:333/89%EB:636/81%EM:755/79%",
["Belm"] = "EB:711/89%LM:961/97%",
["Bommeluf"] = "LT:783/98%SB:799/99%LM:986/98%",
["Raho"] = "CT:18/3%EB:618/87%EM:697/77%",
["Wizzld"] = "ET:409/91%EB:654/88%EM:771/83%",
["Thecheesus"] = "RT:217/66%EB:657/90%EM:768/84%",
["Xoru"] = "ET:278/76%EB:581/82%EM:785/84%",
["Xinee"] = "ET:291/78%EB:390/82%EM:871/91%",
["Klutris"] = "UT:257/31%EB:453/87%RM:577/67%",
["Mocra"] = "ET:296/82%EB:639/89%UM:203/28%",
["Adalbertt"] = "UT:81/26%EB:688/91%EM:543/86%",
["Quend"] = "ET:267/78%EB:612/86%EM:435/79%",
["Gottstein"] = "ST:728/99%EB:699/93%EM:850/90%",
["Johusz"] = "RT:391/52%EB:550/76%EM:763/83%",
["Kajaspirit"] = "ET:413/92%EB:671/91%",
["Asoleda"] = "EB:583/83%EM:770/87%",
["Chillbill"] = "ST:704/99%EB:522/92%EM:841/91%",
["Heyjoe"] = "UT:142/46%EB:645/87%EM:905/94%",
["Bedromance"] = "EB:659/89%LM:932/96%",
["Sekmo"] = "RB:497/72%EM:653/75%",
["Börr"] = "RT:255/74%RB:293/64%EM:732/82%",
["Chrisq"] = "UT:276/35%RB:417/60%RM:563/66%",
["Yeesh"] = "CT:152/17%EB:381/80%RM:638/70%",
["Pöschel"] = "EB:652/90%EM:788/85%",
["Laeta"] = "ET:390/89%EB:548/78%EM:741/84%",
["Nîki"] = "RT:418/57%LB:758/97%LM:956/97%",
["Anaboli"] = "RT:552/70%EB:672/92%EM:866/94%",
["Salley"] = "UT:144/49%RB:504/72%RM:487/55%",
["Baumbartl"] = "RT:419/55%EB:584/82%EM:470/83%",
["Brudivöller"] = "ET:284/77%EB:581/81%EM:845/91%",
["Bistum"] = "EB:646/88%EM:829/89%",
["Lron"] = "RT:200/61%RB:274/64%RM:461/50%",
["Rawrxd"] = "ST:643/99%EB:686/92%LM:912/95%",
["Erzählvonmir"] = "CT:111/12%RB:492/71%EM:489/82%",
["Aiedail"] = "RB:534/74%RM:553/61%",
["Zulimoon"] = "CT:58/7%EB:687/92%EM:902/94%",
["Mortischa"] = "ET:326/81%EB:603/82%EM:814/87%",
["Itsnogoodd"] = "EB:721/94%EM:854/90%",
["Stromhill"] = "ET:404/85%EB:434/85%EM:579/89%",
["Ririane"] = "RT:538/72%EB:551/79%EM:773/82%",
["Fechnaissa"] = "ET:387/90%EB:672/92%EM:838/89%",
["Dubel"] = "RT:571/73%EB:615/86%EM:517/85%",
["Pask"] = "EB:656/90%EM:662/76%",
["Datake"] = "ET:302/81%EB:623/86%EM:888/94%",
["Ekss"] = "RT:472/60%EB:521/75%EM:591/89%",
["Delüxe"] = "ET:352/85%EB:604/85%EM:742/84%",
["Yoa"] = "ET:447/93%EB:508/91%EM:834/89%",
["Valynwyn"] = "RB:301/68%EM:599/90%",
["Mínas"] = "ET:349/86%LB:724/95%EM:901/94%",
["Cicus"] = "EB:450/88%RM:556/65%",
["Malerus"] = "EB:679/90%EM:812/87%",
["Grombaer"] = "CT:37/10%EB:550/76%RM:619/69%",
["Navelda"] = "ET:580/75%EB:640/87%EM:842/90%",
["Crankzya"] = "ET:346/87%EB:660/90%EM:828/89%",
["Hamertje"] = "EB:638/88%EM:874/94%",
["Yggdrasill"] = "LB:726/95%EM:914/94%",
["Ostgote"] = "ET:294/80%EB:612/85%EM:714/78%",
["Teutates"] = "CT:101/10%EB:584/83%EM:649/92%",
["Sgtmumpitz"] = "RB:437/64%RM:576/64%",
["Frotti"] = "LT:586/98%LB:761/97%LM:979/98%",
["Hop"] = "RB:439/64%RM:376/74%",
["Jesaya"] = "ET:624/81%EB:628/87%EM:893/94%",
["Keltyra"] = "UT:299/39%EB:599/83%RM:658/73%",
["Thana"] = "ET:294/80%RB:507/74%EM:782/88%",
["Neonstory"] = "ST:687/99%LB:631/97%EM:678/94%",
["Dranøsh"] = "ET:364/92%EB:626/81%EM:759/80%",
["Huudini"] = "RT:546/73%EB:603/83%EM:814/86%",
["Brigg"] = "ET:603/80%LB:755/95%LM:937/95%",
["Alienware"] = "ET:665/87%LB:791/98%LM:964/97%",
["Schuun"] = "LT:771/98%LB:764/97%LM:930/96%",
["Nefii"] = "LT:555/97%EB:717/94%LM:965/98%",
["Zurang"] = "LT:645/98%EB:587/93%EM:895/92%",
["Zergegold"] = "LT:613/98%EB:721/92%EM:869/91%",
["Lombus"] = "LT:766/97%EB:736/93%LM:869/98%",
["Themethos"] = "ET:638/83%EB:739/93%EM:828/86%",
["Enzø"] = "ET:378/92%EB:671/86%EM:815/85%",
["Lyhnja"] = "ET:693/91%LB:698/97%EM:917/93%",
["Viviana"] = "LT:679/98%LB:727/98%LM:833/97%",
["Amzng"] = "ET:361/91%LB:786/98%LM:940/97%",
["Stunnislaw"] = "LT:454/95%EB:494/86%LM:948/96%",
["Fateless"] = "LT:711/96%LB:768/98%SM:918/99%",
["Mechatok"] = "ET:317/88%EB:512/88%EM:864/89%",
["Vorthun"] = "ET:638/84%EB:485/86%EM:873/92%",
["Rakmor"] = "ET:612/81%LB:684/97%EM:910/93%",
["Xyloph"] = "RT:452/60%EB:556/79%EM:708/77%",
["Atzepäng"] = "LT:769/97%LB:782/98%LM:970/98%",
["Rakie"] = "ET:267/81%EB:673/87%RM:676/74%",
["Ritalin"] = "ET:307/86%LB:738/95%LM:792/97%",
["Hartuul"] = "LT:645/98%EB:588/75%EM:877/90%",
["Lynantia"] = "ET:691/90%LB:762/96%LM:961/97%",
["Elessartwo"] = "ET:685/89%EB:699/89%EM:805/83%",
["Pnemea"] = "LT:675/96%EB:643/92%EM:664/94%",
["Uruz"] = "LT:772/97%LB:779/98%EM:807/85%",
["Redbéard"] = "LT:772/97%LB:742/98%LM:938/96%",
["Marylu"] = "ET:664/87%EB:685/91%EM:783/87%",
["Deadmag"] = "ET:278/83%EB:602/84%RM:610/67%",
["Knghunta"] = "LT:614/98%EB:487/89%LM:844/98%",
["Artiron"] = "LT:702/95%LB:782/98%SM:1007/99%",
["Marvelous"] = "ET:652/89%LB:778/98%LM:943/98%",
["Loomor"] = "LT:771/97%LB:752/95%EM:646/90%",
["Stunislavski"] = "ST:813/99%SB:832/99%SM:889/99%",
["Rawne"] = "ET:640/89%LB:751/96%EM:573/93%",
["Quadde"] = "ET:330/89%EB:693/89%EM:734/79%",
["Rewahnos"] = "LT:718/96%EB:637/89%LM:922/96%",
["Kargath"] = "ET:591/78%EB:611/80%EM:788/82%",
["Ajbaa"] = "ET:601/80%EB:521/89%EM:857/90%",
["Magamí"] = "LT:566/97%EB:595/93%EM:446/78%",
["Skytale"] = "LT:531/97%LB:705/97%LM:908/98%",
["Habi"] = "ET:420/94%LB:644/96%EM:899/92%",
["Darthcain"] = "ET:729/94%EB:706/90%LM:943/96%",
["Shivaru"] = "ET:732/94%LB:749/95%LM:927/96%",
["Shawne"] = "LT:440/95%EB:664/86%EM:768/82%",
["Josopeid"] = "ET:715/91%LB:644/95%LM:938/95%",
["Iove"] = "ST:681/99%EB:707/89%EM:796/83%",
["Kukaku"] = "ET:728/93%LB:743/98%LM:894/98%",
["Kayrae"] = "LT:564/97%LB:766/96%SM:932/99%",
["Digano"] = "ST:745/99%SB:752/99%LM:901/98%",
["Zsadist"] = "ET:310/86%EB:716/94%EM:875/91%",
["Marryhuàná"] = "ET:587/78%EB:624/86%EM:537/89%",
["Zengu"] = "LT:772/97%LB:782/98%SM:923/99%",
["Interrupt"] = "LT:749/95%LB:775/97%LM:983/98%",
["Zwêrgdlx"] = "LT:766/97%LB:753/95%",
["Lombardo"] = "LT:634/98%EB:686/89%EM:865/90%",
["Gürtelghose"] = "LT:494/96%LB:765/96%LM:960/97%",
["Barrow"] = "RT:434/59%EB:709/91%EM:855/90%",
["Mapey"] = "ET:623/82%RB:492/66%RM:571/59%",
["Varthar"] = "ET:600/85%EB:719/93%LM:702/96%",
["Voulentiq"] = "ET:648/86%EB:715/91%LM:929/95%",
["Vandran"] = "LT:770/97%LB:782/98%SM:958/99%",
["Urgelmer"] = "LT:580/98%LB:707/95%EM:862/94%",
["Elandolos"] = "ET:684/93%SB:794/99%SM:984/99%",
["Skarz"] = "LT:741/95%LB:761/97%LM:932/96%",
["Xalendrus"] = "ET:499/76%EB:648/82%EM:560/86%",
["Berger"] = "ET:615/81%LB:651/95%LM:797/96%",
["Cej"] = "LT:631/98%LB:773/98%LM:877/95%",
["Rokuh"] = "ST:784/99%SB:825/99%SM:1084/99%",
["Korosenai"] = "ET:677/88%EB:643/83%EM:787/82%",
["Apollonia"] = "ET:638/90%EB:694/93%LM:922/96%",
["Ceri"] = "ST:832/99%SB:883/99%SM:1105/99%",
["Dornrhödchen"] = "LT:641/98%SB:773/99%SM:972/99%",
["Mokkastecher"] = "ET:398/94%EB:586/77%EM:808/84%",
["Hornek"] = "RT:212/71%RB:565/74%EM:731/77%",
["Draco"] = "LT:731/97%SB:800/99%SM:1039/99%",
["Karlfredo"] = "ET:724/94%EB:633/87%EM:601/78%",
["Cervisiam"] = "ST:769/99%LB:773/98%LM:844/98%",
["Lookie"] = "ST:691/99%LB:783/98%LM:974/98%",
["Tarkov"] = "ET:274/82%EB:629/80%LM:861/97%",
["Gutcrusher"] = "ET:236/76%EB:509/88%EM:857/88%",
["Icylater"] = "ST:688/99%LB:773/98%SM:911/99%",
["Magepekz"] = "ET:593/79%LB:758/97%LM:822/98%",
["Brutalîty"] = "RT:177/67%EB:662/85%EM:767/83%",
["Stunizlav"] = "EB:725/91%EM:920/93%",
["Guldán"] = "ET:577/76%EB:743/94%LM:933/95%",
["Leechy"] = "RT:220/73%EB:645/83%EM:751/82%",
["Pnutbutthair"] = "LT:616/98%LB:651/96%LM:840/96%",
["Hanta"] = "ST:764/99%LB:786/98%SM:993/99%",
["Zahnstecher"] = "UT:327/42%EB:598/79%RM:314/63%",
["Littlefutt"] = "CT:39/10%EB:666/86%EM:484/80%",
["Anvil"] = "ET:303/86%EB:641/83%EM:747/79%",
["Selix"] = "ET:601/78%EB:724/92%LM:826/96%",
["Zacherias"] = "ST:742/99%SB:803/99%SM:998/99%",
["Triggah"] = "LT:642/98%LB:641/95%EM:631/88%",
["Savyna"] = "ET:277/82%EB:683/87%EM:762/81%",
["Vappy"] = "ET:655/86%EB:729/91%LM:943/96%",
["Walkingsteak"] = "ET:666/87%EB:546/90%LM:770/95%",
["Letatis"] = "ET:687/88%EB:718/91%EM:648/89%",
["Schabautz"] = "RT:229/74%EB:670/85%EM:555/85%",
["Octrian"] = "ET:264/81%EB:84/81%EM:549/85%",
["Xorvus"] = "LT:456/95%LB:768/96%LM:935/95%",
["Rdmn"] = "LT:762/96%LB:755/95%LM:942/97%",
["Backstabunny"] = "EB:711/89%EM:882/90%",
["Slazer"] = "RB:548/73%RM:454/53%",
["Apoc"] = "ST:665/99%LB:647/96%LM:946/96%",
["Sugmaa"] = "LT:508/96%EB:716/91%EM:807/85%",
["Hennessy"] = "ET:409/93%EB:677/87%EM:513/81%",
["Smasha"] = "ST:677/99%LB:768/97%SM:983/99%",
["Daronis"] = "ET:643/83%EB:546/90%EM:889/92%",
["Treflip"] = "LT:639/98%EB:655/84%RM:320/64%",
["Aggaali"] = "ET:712/91%SB:807/99%LM:923/95%",
["Konfutzia"] = "LT:555/97%LB:742/96%LM:928/95%",
["Nôt"] = "LB:756/95%LM:957/96%",
["Fluppe"] = "ET:317/87%EB:618/81%EM:815/84%",
["Azax"] = "RT:532/72%EB:668/86%EM:850/87%",
["Deadly"] = "LT:580/97%LB:733/98%LM:875/98%",
["Drizzle"] = "ET:359/90%EB:706/94%LM:925/95%",
["Jakaron"] = "LT:538/97%LB:701/97%LM:826/97%",
["Vril"] = "LT:687/96%LB:760/98%EM:841/94%",
["Athox"] = "ET:253/77%EB:581/92%EM:863/90%",
["Alêo"] = "ET:365/89%LB:766/96%EM:886/91%",
["Aromir"] = "ET:310/86%EB:739/94%LM:972/98%",
["Vraia"] = "LT:430/95%EB:536/89%LM:789/95%",
["Pockenpetra"] = "RT:212/72%EB:726/91%EM:765/80%",
["Davidgetter"] = "LB:740/96%EM:864/90%",
["Ðmg"] = "EB:625/81%EM:452/76%",
["Fußnote"] = "EB:583/76%EM:425/76%",
["Zwingli"] = "LT:578/98%EB:664/84%EM:919/94%",
["Springston"] = "UT:111/40%EB:704/90%EM:571/85%",
["Gawdzilla"] = "EB:667/84%EM:776/81%",
["Iolbaylife"] = "ST:702/99%EB:617/94%EM:878/90%",
["Kardes"] = "RT:534/70%EB:655/84%EM:767/81%",
["Gathero"] = "LB:780/97%LM:984/98%",
["Atreya"] = "ET:341/91%EB:695/87%LM:911/95%",
["Krosa"] = "ET:302/85%LB:728/95%EM:893/93%",
["Thuggo"] = "RT:510/71%EB:682/86%EM:787/82%",
["Gaang"] = "CT:32/7%EB:623/79%RM:493/52%",
["Elfury"] = "ET:643/84%EB:692/88%EM:705/93%",
["Laolana"] = "EB:622/79%LM:941/95%",
["Pazful"] = "UT:325/44%LB:781/98%EM:924/94%",
["Aragax"] = "RB:247/59%",
["Paterbob"] = "EB:366/78%UM:364/38%",
["Lisuthara"] = "ET:279/76%RB:315/70%RM:574/67%",
["Jokerbln"] = "ET:281/78%LB:600/96%EM:477/84%",
["Balidin"] = "RT:167/51%RB:479/69%RM:479/52%",
["Smirkinfrog"] = "ET:373/90%EB:605/83%EM:913/94%",
["Moelkky"] = "LT:527/97%LB:755/97%SM:1015/99%",
["Ocrana"] = "LT:543/96%EB:617/85%EM:798/85%",
["Montêsuma"] = "RT:179/60%EB:663/91%LM:895/95%",
["Sharrys"] = "UT:212/25%RB:279/64%RM:562/62%",
["Tavie"] = "LT:509/95%EB:452/86%RM:471/51%",
["Shoc"] = "UT:124/40%EB:528/76%UM:315/32%",
["Zenmuron"] = "LT:612/98%LB:738/97%EM:844/92%",
["Nimble"] = "ET:395/91%EB:607/86%RM:285/66%",
["Sair"] = "RB:373/54%EM:792/89%",
["Gutschy"] = "ET:415/91%EB:524/75%EM:761/83%",
["Willybrand"] = "EB:361/77%CM:171/19%",
["Heilpups"] = "UT:131/42%EB:538/75%EM:403/76%",
["Mirjani"] = "RT:185/58%EB:377/79%RM:562/62%",
["Awruc"] = "UT:343/42%RB:499/71%RM:386/73%",
["Dalamis"] = "ET:438/94%EB:709/94%EM:842/90%",
["Jagu"] = "RT:449/62%EB:674/91%EM:511/81%",
["Manaschnitte"] = "EB:547/78%RM:629/72%",
["Boldag"] = "LT:580/97%EB:561/94%RM:335/69%",
["Ceterio"] = "UT:326/40%EB:489/90%EM:815/88%",
["Wargnom"] = "EB:626/86%EM:727/80%",
["Jiggaboo"] = "RT:139/50%EB:604/85%EM:556/88%",
["Sâmrych"] = "UT:141/45%RB:314/63%EM:457/80%",
["Meettheleet"] = "UT:106/35%RB:497/72%UM:108/35%",
["Froost"] = "ET:580/75%EB:524/92%EM:692/79%",
["Burti"] = "UT:141/44%EB:576/82%EM:580/76%",
["Luckberto"] = "ET:395/90%LB:740/97%EM:883/93%",
["Ameisenjoe"] = "RT:149/53%EB:251/76%RM:627/70%",
["Kagon"] = "ET:581/78%EB:498/92%EM:871/92%",
["Haicon"] = "EB:599/84%EM:775/86%",
["Psychô"] = "ET:318/81%RB:532/74%EM:781/85%",
["Maltorius"] = "ST:767/99%LB:729/96%LM:893/95%",
["Donttargetme"] = "UT:150/48%EB:713/93%EM:866/91%",
["Edoin"] = "RT:175/55%RB:480/70%RM:429/51%",
["Zerowhite"] = "LT:518/97%EB:716/94%EM:879/92%",
["Larien"] = "ET:309/82%RB:486/71%RM:319/67%",
["Waytoohot"] = "UT:347/48%EB:524/76%RM:263/64%",
["Mýsterý"] = "EB:516/75%RM:588/70%",
["Vilya"] = "ET:360/89%EB:691/92%EM:808/87%",
["Codein"] = "RT:422/55%EB:625/87%RM:600/67%",
["Bolkay"] = "RB:367/52%UM:233/44%",
["Nevira"] = "RT:236/68%EB:470/88%EM:726/80%",
["Isram"] = "ET:453/92%LB:589/95%EM:792/87%",
["Amoapfelring"] = "RB:495/68%RM:648/72%",
["Cironir"] = "LT:619/98%EB:644/89%EM:613/91%",
["Ninjagurke"] = "UT:296/41%EB:671/90%EM:896/94%",
["Zimbriel"] = "EB:538/94%RM:547/65%",
["Calipitter"] = "RT:210/64%EB:622/86%LM:883/96%",
["Kativram"] = "RT:170/57%EB:560/80%RM:356/74%",
["Ancalagorn"] = "CT:75/7%UB:286/39%RM:486/57%",
["Kroackgar"] = "EB:414/85%UM:392/44%",
["Arox"] = "LT:534/96%EB:459/87%EM:794/85%",
["Bloodbane"] = "RB:484/70%EM:685/75%",
["Trunk"] = "ET:386/90%RB:477/69%EM:767/84%",
["Mercî"] = "UB:315/44%RM:554/65%",
["Touch"] = "EB:531/76%EM:729/79%",
["Darkwood"] = "EB:465/88%EM:877/94%",
["Thorgrim"] = "CT:32/4%EB:680/92%EM:871/93%",
["Têâr"] = "LT:487/95%EB:410/83%EM:752/85%",
["Öbelix"] = "UT:24/31%RB:427/61%RM:588/68%",
["Tombilein"] = "RT:159/51%RB:419/57%RM:583/64%",
["Nuzun"] = "ET:383/89%LB:610/97%EM:626/91%",
["Xyffd"] = "RB:382/56%EM:832/91%",
["Dayedahei"] = "RB:486/67%EM:441/79%",
["Undeadpriest"] = "RB:483/67%RM:521/60%",
["Gichtpfote"] = "ET:734/94%LB:795/98%SM:990/99%",
["Rownxec"] = "LT:770/97%EB:745/94%EM:777/83%",
["Derzerleger"] = "RT:143/53%EB:701/93%EM:671/93%",
["Leniya"] = "ET:323/86%EB:476/85%RM:724/71%",
["Nasswiehund"] = "LT:757/96%SB:759/99%EM:930/94%",
["Allradmage"] = "ET:337/89%LB:762/96%SM:1025/99%",
["Siuo"] = "ET:627/84%LB:778/98%LM:982/98%",
["Bananenelch"] = "ET:311/86%LB:758/97%EM:795/88%",
["Giga"] = "RT:211/69%EB:615/80%EM:704/91%",
["Deppo"] = "ET:263/81%EB:668/86%EM:807/85%",
["Cenon"] = "ET:652/85%EB:724/94%LM:868/98%",
["Spi"] = "RT:430/61%EB:583/77%RM:392/74%",
["Kàthrin"] = "RT:546/74%RB:391/55%EM:341/75%",
["Bierle"] = "ET:722/92%EB:621/94%LM:955/96%",
["Butsch"] = "LT:750/96%LB:666/98%EM:821/92%",
["Sagesse"] = "ET:723/93%LB:756/95%LM:968/97%",
["Yumiko"] = "ET:607/80%EB:630/87%EM:555/88%",
["Avéna"] = "ET:376/92%EB:669/85%EM:624/89%",
["Cowaabunga"] = "ET:305/94%LB:762/98%SM:967/99%",
["Carrios"] = "ET:694/90%EB:596/93%EM:866/91%",
["Zwärg"] = "ET:720/92%LB:772/97%LM:950/97%",
["Ciira"] = "LT:757/96%EB:745/94%LM:951/96%",
["Jamjjam"] = "LT:647/98%LB:566/95%LM:875/98%",
["Manfredoo"] = "LT:584/98%LB:760/96%EM:920/93%",
["Alabeth"] = "ET:697/90%RB:462/62%RM:711/74%",
["Enchantréss"] = "ET:729/93%LB:775/97%LM:919/95%",
["Khel"] = "RT:469/62%EB:734/92%EM:886/88%",
["Sorbana"] = "LT:450/95%LB:753/95%LM:952/97%",
["Xaia"] = "LT:734/95%LB:747/96%LM:891/95%",
["Ipphunt"] = "ET:696/90%EB:667/86%LM:959/97%",
["Gym"] = "ET:684/89%SB:730/99%LM:894/96%",
["Hyor"] = "ST:687/99%LB:776/98%SM:967/99%",
["Badur"] = "ET:284/83%LB:783/98%SM:987/99%",
["Slaak"] = "ET:629/82%EB:623/81%EM:456/79%",
["Bolton"] = "ET:254/78%EB:668/90%EM:549/90%",
["Radonia"] = "LT:588/98%SB:750/99%LM:979/98%",
["Rypex"] = "RT:556/74%EB:722/92%LM:774/97%",
["Hexp"] = "ET:368/92%RB:563/72%RM:674/72%",
["Níghtstar"] = "ET:302/84%EB:702/88%EM:930/94%",
["Syrius"] = "ET:416/94%EB:723/92%LM:936/97%",
["Antigonee"] = "LT:564/97%EB:649/85%EM:874/94%",
["Taselol"] = "ST:780/99%SB:835/99%SM:987/99%",
["Cassiopia"] = "LT:605/98%LB:770/97%LM:984/98%",
["Chelios"] = "ET:274/82%LB:668/98%EM:904/93%",
["Garogda"] = "ET:720/92%LB:635/95%LM:939/96%",
["Jermer"] = "LT:541/97%EB:626/94%EM:877/90%",
["Paicon"] = "ET:386/93%EB:713/90%EM:874/90%",
["Bastî"] = "LT:769/97%LB:756/95%LM:773/95%",
["Korrtak"] = "LT:742/95%EB:661/89%EM:863/93%",
["Arboc"] = "ET:592/77%EB:672/86%LM:930/95%",
["Xerinia"] = "LT:752/95%LB:770/97%LM:978/98%",
["Vanquísh"] = "ST:682/99%LB:726/95%EM:492/87%",
["Huntudown"] = "ST:689/99%LB:759/95%LM:932/95%",
["Thuzadum"] = "LT:641/98%EB:605/94%EM:895/93%",
["Parya"] = "ET:585/78%EB:619/94%EM:875/90%",
["Siul"] = "LT:700/98%LB:763/98%LM:970/98%",
["Cogarn"] = "LT:753/96%LB:763/97%SM:1004/99%",
["Grimral"] = "LT:741/95%LB:632/97%EM:883/94%",
["Loriell"] = "ET:698/90%EB:597/93%EM:572/86%",
["Oaxs"] = "ET:611/81%EB:597/93%EM:832/88%",
["Andrun"] = "LT:756/97%SB:681/99%LM:907/97%",
["Deimsch"] = "RT:215/69%RB:464/62%EM:573/85%",
["Leilso"] = "ST:841/99%SB:808/99%SM:980/99%",
["Beatríce"] = "ET:673/88%LB:710/98%LM:935/95%",
["Ulfbert"] = "LT:520/97%LB:744/95%EM:781/89%",
["Aéquitas"] = "ET:382/94%EB:645/92%EM:805/93%",
["Bazina"] = "ET:660/86%LB:781/98%EM:638/90%",
["Zerdon"] = "ET:405/92%EB:601/93%LM:922/95%",
["Ankou"] = "RT:355/73%EB:503/78%EM:726/86%",
["Yaggou"] = "LT:780/98%LB:781/98%LM:959/97%",
["Eldedan"] = "ET:616/87%LB:601/96%EM:857/92%",
["Ondoriud"] = "ST:775/99%LB:770/98%LM:952/98%",
["Shoko"] = "RT:471/62%EB:703/89%EM:608/87%",
["Eightball"] = "ET:265/82%EB:497/88%EM:535/85%",
["Undeadmage"] = "ET:698/90%LB:636/95%LM:932/96%",
["Metaxano"] = "RT:177/60%EB:617/80%EM:614/87%",
["Tempó"] = "LT:583/97%LB:732/98%LM:871/98%",
["Powerjuice"] = "LT:550/98%EB:688/88%EM:797/86%",
["Creepcreeps"] = "ET:315/86%EB:578/76%EM:455/77%",
["Balodil"] = "EB:744/94%EM:891/92%",
["Olscore"] = "LT:452/95%SB:763/99%LM:781/95%",
["Mallinski"] = "ET:347/89%EB:617/80%RM:596/65%",
["Exan"] = "ET:424/94%LB:686/97%EM:624/88%",
["Tâz"] = "EB:731/93%LM:931/95%",
["Willz"] = "ET:398/94%EB:501/88%EM:728/94%",
["Airox"] = "EB:703/88%EM:881/90%",
["Lesca"] = "ET:296/84%EB:688/87%LM:938/95%",
["Shiwarri"] = "EB:607/77%EM:705/75%",
["Leorion"] = "ET:285/84%EB:661/85%EM:740/80%",
["Morlan"] = "LT:625/98%EB:739/94%LM:948/97%",
["Yaxi"] = "ET:355/90%EB:688/87%EM:874/89%",
["Memorial"] = "LB:784/98%SM:1036/99%",
["Shu"] = "EB:603/79%EM:812/84%",
["Notche"] = "RT:380/51%LB:757/95%LM:966/97%",
["Sepora"] = "ET:345/89%EB:708/90%EM:855/88%",
["Vámp"] = "RT:190/64%EB:504/87%EM:631/88%",
["Damsar"] = "ET:384/94%EB:461/85%EM:798/83%",
["Onenightstab"] = "ET:358/90%EB:694/87%LM:832/96%",
["Nosfildeldu"] = "LT:756/96%LB:778/97%LM:971/98%",
["Mentro"] = "LB:767/96%SM:1070/99%",
["Torgonudho"] = "ET:330/88%EB:560/91%EM:778/82%",
["Steroit"] = "RT:385/55%EB:632/80%EM:794/83%",
["Bic"] = "ET:679/94%SB:797/99%SM:976/99%",
["Mongodibongo"] = "RT:363/52%EB:636/82%RM:639/68%",
["Celathiel"] = "ET:660/86%EB:729/92%EM:687/92%",
["Neku"] = "ET:552/81%EB:712/93%LM:921/95%",
["Wall"] = "EB:688/87%EM:902/92%",
["Tetros"] = "UT:301/41%EB:688/87%EM:917/93%",
["Smilbase"] = "ET:414/94%EB:650/83%EM:699/92%",
["Kassar"] = "ST:729/99%LB:785/98%LM:985/98%",
["Bolgar"] = "ST:665/99%SB:794/99%LM:911/95%",
["Fanadin"] = "CT:46/13%EB:591/78%EM:801/83%",
["Kirothu"] = "LT:444/96%EB:681/86%EM:920/94%",
["Vendan"] = "CT:53/20%RB:558/74%EM:400/75%",
["Cleavage"] = "EB:565/75%EM:745/81%",
["Bangjuice"] = "ET:287/83%EB:544/90%EM:706/75%",
["Byali"] = "ET:632/89%SB:815/99%LM:962/98%",
["Boneshaker"] = "ET:247/77%EB:658/83%LM:939/95%",
["Toxique"] = "UT:307/41%EB:562/75%EM:879/90%",
["Yoghart"] = "CT:62/16%EB:551/79%EM:720/79%",
["Böllerbus"] = "UT:128/40%EB:577/79%EM:899/93%",
["Strychnin"] = "RB:216/52%UM:377/40%",
["Critneyqt"] = "CT:46/10%RB:536/74%EM:727/80%",
["Golurk"] = "UT:231/28%RB:413/60%EM:771/84%",
["Baila"] = "LT:694/98%EB:433/85%EM:694/78%",
["Shabba"] = "LT:664/98%EB:646/89%RM:569/63%",
["Shivas"] = "UT:75/25%EB:664/90%EM:844/90%",
["Eteria"] = "UT:142/45%EB:513/78%EM:628/80%",
["Feddichine"] = "EB:637/87%EM:823/88%",
["Myar"] = "RB:413/56%EM:808/85%",
["Weibull"] = "ET:422/92%EB:684/92%UM:366/39%",
["Driandra"] = "LT:544/96%EB:596/86%EM:706/84%",
["Belikk"] = "ET:342/85%EB:601/82%LM:952/97%",
["Wico"] = "LB:756/98%LM:921/95%",
["Imelturface"] = "RT:534/68%EB:565/81%RM:547/64%",
["Shyntastic"] = "ET:346/84%LB:568/95%EM:601/89%",
["Sevcon"] = "UT:263/36%EB:611/86%EM:657/77%",
["Owlcapone"] = "CT:65/24%EB:716/94%EM:861/91%",
["Shuma"] = "ET:281/76%EB:570/79%EM:713/78%",
["Runrick"] = "EB:368/80%EM:849/90%",
["Chrollo"] = "RB:538/74%EM:804/86%",
["Kanister"] = "UT:352/46%EB:588/82%EM:782/85%",
["Sheraja"] = "RB:469/67%EM:701/77%",
["Plínky"] = "UB:348/49%EM:708/75%",
["Chuack"] = "RB:516/72%RM:662/73%",
["Stationär"] = "RT:234/69%EB:359/77%RM:561/66%",
["Tortillia"] = "CT:106/10%EB:533/76%EM:897/94%",
["Ozelot"] = "RT:544/72%EB:701/92%EM:806/86%",
["Thaliarmel"] = "EB:641/88%LM:914/96%",
["Anvas"] = "RB:266/62%UM:152/41%",
["Atad"] = "ET:360/86%EB:469/88%EM:754/82%",
["Meneth"] = "CT:39/2%RB:391/55%RM:664/73%",
["Targaran"] = "ET:742/90%EB:659/89%EM:727/82%",
["Speedballer"] = "RT:236/72%UB:342/45%RM:639/73%",
["Cassus"] = "RT:383/50%RB:478/70%RM:525/69%",
["Raidon"] = "RT:390/51%EB:669/89%EM:855/90%",
["Fjor"] = "UT:308/39%EB:397/83%EM:740/80%",
["Lêana"] = "RB:340/73%EM:489/82%",
["Tatsi"] = "RT:209/61%EB:456/87%EM:704/79%",
["Noralaya"] = "EB:483/89%RM:567/66%",
["Salija"] = "ET:343/86%EB:406/81%EM:792/85%",
["Qúaj"] = "RT:177/55%RB:372/54%EM:697/77%",
["Kaldrin"] = "RT:207/67%EB:645/90%EM:774/90%",
["Gollbar"] = "RB:284/65%RM:626/69%",
["Feranda"] = "ET:313/84%EB:576/82%EM:826/91%",
["Revengé"] = "UT:83/25%RB:403/58%UM:212/30%",
["Bahl"] = "ET:378/88%RB:517/72%UM:343/43%",
["Lorlox"] = "EB:428/85%UM:153/42%",
["Lúpiné"] = "UT:383/47%EB:567/81%CM:8/11%",
["Holycanoli"] = "CT:65/5%EB:524/76%RM:377/74%",
["Sareth"] = "CT:45/11%RB:245/60%EM:817/87%",
["Medyana"] = "EB:524/92%EM:624/77%",
["Syphilissy"] = "CT:66/6%EB:389/80%RM:589/65%",
["Perrix"] = "RB:341/74%EM:734/80%",
["Holyfamalor"] = "UB:323/45%UM:377/40%",
["Nischel"] = "EB:388/82%EM:760/83%",
["Nightray"] = "EB:365/78%RM:665/73%",
["Makko"] = "ET:387/89%EB:543/93%EM:546/88%",
["Redaro"] = "LT:497/95%LB:590/96%LM:781/96%",
["Ûschyy"] = "RT:460/59%EB:613/85%EM:898/94%",
["Ivojay"] = "ET:261/77%LB:627/95%EM:881/92%",
["Acidfuzz"] = "RT:201/69%EB:644/84%LM:746/96%",
["Vyyra"] = "ET:681/89%EB:720/92%EM:857/90%",
["Devasoul"] = "LT:564/97%EB:634/87%LM:702/95%",
["Banjo"] = "ET:723/93%EB:719/91%LM:943/95%",
["Døtt"] = "LT:739/95%LB:777/98%LM:933/96%",
["Alexiz"] = "ET:713/92%LB:701/97%EM:917/93%",
["Traiff"] = "ET:294/84%EB:572/81%EM:820/87%",
["Mordpheus"] = "LT:569/97%EB:495/87%EM:711/75%",
["Keroh"] = "ET:322/85%EB:691/88%EM:764/79%",
["Pink"] = "ET:390/93%EB:680/88%EM:887/92%",
["Kokai"] = "ST:736/99%LB:774/97%LM:974/98%",
["Protte"] = "RT:225/74%RB:567/74%RM:655/73%",
["Blackmaster"] = "ET:643/85%EB:576/76%EM:749/80%",
["Chairwalk"] = "ET:640/84%EB:666/90%LM:807/97%",
["Lendenfeuer"] = "LT:590/97%LB:694/97%EM:710/92%",
["Jamor"] = "ET:709/91%EB:674/86%EM:820/87%",
["Daarknes"] = "ET:380/92%LB:590/96%EM:862/90%",
["Sianna"] = "LT:591/97%LB:774/97%LM:879/98%",
["Thodri"] = "ET:695/91%LB:785/98%SM:1016/99%",
["Áhpexx"] = "ET:602/81%",
["Hornox"] = "ET:362/91%LB:701/97%LM:836/97%",
["Necropha"] = "ET:678/88%EB:595/93%EM:548/85%",
["Zoskia"] = "ET:650/86%",
["Komani"] = "ET:671/88%EB:488/90%EM:706/77%",
["Mightymine"] = "ET:329/88%EB:728/92%LM:765/95%",
["Vindiesel"] = "RT:499/70%UB:374/49%RM:220/60%",
["Schorzli"] = "ET:462/94%EB:608/94%EM:888/91%",
["Maikäfer"] = "RT:176/62%EB:702/90%EM:823/87%",
["Sabbel"] = "ET:648/85%EB:706/94%EM:808/90%",
["Clifton"] = "LT:581/97%LB:759/96%LM:943/95%",
["Nattfoedd"] = "ET:575/76%EB:474/88%EM:760/87%",
["Execution"] = "ET:721/92%SB:754/99%LM:943/95%",
["Werlorok"] = "ET:535/84%LB:713/95%LM:966/98%",
["Dhasel"] = "ET:739/94%LB:725/98%LM:920/95%",
["Wulfgarz"] = "LT:759/97%LB:783/98%LM:969/98%",
["Spätdienst"] = "ET:634/83%RB:422/61%EM:479/86%",
["Darknoy"] = "ET:667/93%LB:754/97%SM:973/99%",
["Rochida"] = "ET:686/89%EB:734/93%EM:826/86%",
["Mardug"] = "ET:659/87%EB:579/93%EM:673/92%",
["Steinsgate"] = "RT:217/72%RB:302/70%EM:727/79%",
["Fron"] = "LT:735/95%EB:725/94%EM:891/94%",
["Copag"] = "LT:748/95%LB:788/98%EM:902/92%",
["Seilenz"] = "LT:517/96%EB:707/90%EM:809/84%",
["Blackory"] = "LT:742/96%LB:739/95%LM:929/96%",
["Malacay"] = "LT:499/95%EB:643/83%EM:819/85%",
["Hydroxid"] = "LT:667/98%EB:704/90%EM:818/85%",
["Miweon"] = "ET:693/90%LB:787/98%SM:942/99%",
["Maverik"] = "ET:533/84%EB:646/90%EM:581/91%",
["Xlu"] = "RT:389/56%EB:614/80%EM:729/80%",
["Texhex"] = "ET:571/77%EB:731/93%EM:823/88%",
["Faeria"] = "LT:434/95%EB:536/80%EM:710/87%",
["Bersadur"] = "ET:695/92%EB:695/92%LM:671/96%",
["Luucyy"] = "RT:216/70%EB:531/89%EM:715/92%",
["Hacksaw"] = "RT:193/65%EB:601/79%RM:609/65%",
["Eyk"] = "ET:311/87%LB:746/96%LM:718/96%",
["Holzherbert"] = "EB:699/88%EM:903/92%",
["Patti"] = "UT:349/47%LB:763/96%LM:965/97%",
["Kreide"] = "LT:478/95%EB:672/86%UM:434/49%",
["Bustler"] = "RT:154/54%EB:573/76%",
["Kiwiîe"] = "ET:652/84%EB:611/80%RM:461/52%",
["Heartkiller"] = "RT:544/71%EB:654/84%EM:817/84%",
["Davedolf"] = "ET:691/89%EB:736/93%EM:841/87%",
["Sylviane"] = "ET:259/78%EB:654/83%EM:865/89%",
["Mullerich"] = "EB:737/92%EM:904/93%",
["Livonya"] = "ET:279/81%EB:612/80%RM:531/57%",
["Antitrust"] = "ET:418/94%LB:758/95%LM:954/97%",
["Vícìøus"] = "ET:417/94%LB:727/95%EM:895/93%",
["Glenberyl"] = "LT:525/97%LB:762/96%LM:955/96%",
["Bloodrunner"] = "ET:383/94%EB:710/89%EM:859/91%",
["Másøchìst"] = "RT:536/73%EB:686/87%EM:649/90%",
["Threat"] = "ET:701/93%EB:722/94%SM:982/99%",
["Höhlengnarf"] = "ET:340/90%EB:625/79%RM:670/74%",
["Belionz"] = "UT:89/35%EB:590/78%EM:613/89%",
["Rioter"] = "ET:284/85%EB:703/88%LM:962/97%",
["Dahasd"] = "ET:308/87%LB:677/96%EM:625/89%",
["Untörtelbar"] = "RT:207/68%EB:416/79%RM:598/64%",
["Plyschi"] = "CT:102/18%EB:673/85%EM:737/94%",
["Lûzy"] = "ET:443/94%EB:750/94%LM:947/97%",
["Lambomurci"] = "ST:750/99%LB:777/98%LM:967/98%",
["Sevenofnine"] = "EB:670/85%EM:870/89%",
["Spleetz"] = "UT:168/26%EB:614/80%EM:408/75%",
["Tortur"] = "LT:545/98%SB:777/99%SM:919/99%",
["Mercur"] = "UT:72/28%EB:720/93%LM:925/96%",
["Dawnreaver"] = "ET:274/80%EB:709/90%EM:866/90%",
["Jìn"] = "ET:301/86%EB:450/84%EM:890/88%",
["Pyjamaheld"] = "ET:357/92%LB:768/98%SM:993/99%",
["Yoneda"] = "ST:688/99%EB:575/92%EM:830/86%",
["Haddøck"] = "ET:723/94%LB:618/96%EM:867/94%",
["Malm"] = "ET:271/82%EB:558/91%LM:944/96%",
["Paycur"] = "ST:793/99%LB:693/97%LM:979/98%",
["Lunà"] = "ET:320/88%EB:635/82%EM:643/81%",
["Edessos"] = "UT:75/29%RB:531/71%RM:628/67%",
["Optiko"] = "RB:535/71%RM:590/63%",
["Irlya"] = "ET:307/87%EB:498/87%LM:834/97%",
["Hulkqt"] = "ST:616/99%EB:506/89%EM:926/94%",
["Hirnmade"] = "RT:427/58%EB:554/92%EM:855/88%",
["Zuciky"] = "ET:277/83%EB:677/85%EM:832/86%",
["Duskmage"] = "RT:167/60%LB:743/96%EM:874/91%",
["Kuhmanchu"] = "RT:481/68%EB:659/83%LM:938/95%",
["Unreál"] = "ET:290/84%EB:570/92%EM:870/91%",
["Uragirimono"] = "LT:635/98%LB:757/95%SM:929/99%",
["Solenya"] = "UT:134/47%RB:544/73%EM:575/86%",
["Sisinia"] = "EB:693/87%EM:867/89%",
["Furion"] = "RT:522/68%EB:673/86%EM:781/82%",
["Tagrinn"] = "CT:28/10%RB:445/67%RM:539/74%",
["Extremo"] = "UT:119/38%EB:520/75%RM:493/54%",
["Jamandra"] = "RT:177/54%UB:273/36%EM:604/90%",
["Yentan"] = "RB:364/52%CM:164/18%",
["Heiliger"] = "UT:146/46%EB:611/86%UM:407/48%",
["Suriel"] = "ET:370/88%RB:314/70%EM:797/86%",
["Vincy"] = "RT:272/74%EB:363/77%EM:633/91%",
["Sacolol"] = "RT:117/50%EB:717/94%LM:929/97%",
["Haalja"] = "RT:394/54%EB:622/85%EM:871/92%",
["Cráestian"] = "RT:148/50%EB:649/88%EM:822/88%",
["Mines"] = "UB:238/31%UM:382/41%",
["Ghosttrain"] = "EB:373/79%RM:508/60%",
["Murmels"] = "RT:581/72%LB:630/97%EM:567/87%",
["Briséis"] = "RT:198/59%EB:600/85%EM:662/77%",
["Neonblack"] = "RB:442/61%RM:635/70%",
["Reinlich"] = "UT:134/43%EB:558/77%EM:822/89%",
["Rhænys"] = "LB:732/95%EM:891/93%",
["Murgh"] = "RT:402/52%EB:627/86%EM:739/80%",
["Mônster"] = "RT:498/66%EB:582/82%LM:894/95%",
["Cappa"] = "EB:533/86%",
["Hagan"] = "UB:346/49%EM:845/90%",
["Snovii"] = "RB:237/56%UM:298/35%",
["Shinyflakes"] = "ET:314/83%EB:596/83%EM:686/76%",
["Tuueja"] = "UT:400/49%RB:218/56%EM:793/90%",
["Barly"] = "RT:254/71%EB:594/84%RM:578/64%",
["Amorous"] = "UB:276/37%UM:296/34%",
["Buzza"] = "ET:362/90%EB:564/80%EM:578/89%",
["Goili"] = "CT:163/18%EB:567/78%RM:204/52%",
["Schlumpfine"] = "RT:242/69%EB:546/78%RM:587/65%",
["Réncor"] = "ET:651/84%LB:720/95%LM:964/98%",
["Eleison"] = "ET:481/94%EB:570/78%RM:588/65%",
["Kreutzstrahl"] = "ET:624/77%RB:319/72%EM:807/88%",
["Askelar"] = "UB:323/44%RM:541/73%",
["Armando"] = "EB:576/79%EM:804/86%",
["Orcbär"] = "RT:165/52%RB:267/64%RM:604/67%",
["Priestcilla"] = "CT:26/0%RB:421/61%EM:702/81%",
["Sinoo"] = "RB:425/63%EM:692/76%",
["Kerox"] = "RT:418/53%UB:263/35%UM:367/39%",
["Malatix"] = "LT:536/96%EB:589/81%EM:698/77%",
["Livva"] = "CT:88/8%UB:287/39%UM:139/39%",
["Katzensiggi"] = "UB:187/48%RM:489/71%",
["Shanya"] = "UT:126/39%EB:428/84%EM:404/75%",
["Bartelbi"] = "RB:283/67%UM:163/46%",
["Prieschnetzl"] = "CT:74/21%EB:413/83%RM:340/69%",
["Tarrow"] = "EB:630/86%EM:893/93%",
["Badhoof"] = "CT:38/2%EB:713/93%LM:930/96%",
["Muggo"] = "CT:72/6%RB:321/71%UM:171/45%",
["Donnergurke"] = "UB:305/40%RM:532/61%",
["Vollpfosten"] = "RT:201/60%EB:610/86%LM:734/95%",
["Kuhdance"] = "RB:386/55%RM:532/59%",
["Aijuna"] = "RT:164/51%EB:414/83%EM:793/86%",
["Nohotz"] = "EB:632/90%EM:665/84%",
["Okara"] = "RB:211/63%EM:372/80%",
["Knoddel"] = "RT:85/53%EB:447/86%EM:515/86%",
["Sunkra"] = "EB:582/80%RM:671/74%",
["Loading"] = "UB:248/33%RM:606/67%",
["Holynix"] = "RT:218/66%RB:494/68%EM:737/81%",
["Grillage"] = "EB:661/89%RM:651/72%",
["Realrhonin"] = "RT:406/52%EB:362/87%EM:274/81%",
["Hanzolo"] = "EB:539/75%EM:773/83%",
["Karah"] = "EB:389/81%UM:146/43%",
["Wumpel"] = "RT:247/70%EB:454/87%RM:592/69%",
["Bloodthunder"] = "RB:399/55%RM:585/65%",
["Blueffcid"] = "UT:305/39%EB:591/82%EM:679/75%",
["Torono"] = "CT:64/19%EB:541/78%RM:496/54%",
["Zérò"] = "CT:67/9%RB:428/63%EM:557/78%",
["Elyja"] = "ET:371/88%RB:516/74%RM:573/67%",
["Ballerbodo"] = "ET:688/89%LB:759/96%LM:847/97%",
["Krobold"] = "LT:648/98%LB:705/97%EM:600/88%",
["Caedis"] = "ET:323/86%LB:713/98%EM:894/92%",
["Holzpalette"] = "LT:701/96%LB:765/97%LM:908/96%",
["Deathcalled"] = "ET:664/86%EB:580/92%EM:828/88%",
["Falwan"] = "ET:711/91%LB:764/96%RM:617/66%",
["Maidox"] = "ET:338/87%EB:750/94%LM:949/96%",
["Juulz"] = "ET:667/87%EB:683/88%EM:911/93%",
["Salîx"] = "ET:668/88%LB:750/95%EM:911/94%",
["Narses"] = "ET:654/85%LB:625/95%EM:924/94%",
["Silberfell"] = "ST:699/99%LB:765/96%EM:701/93%",
["Schrei"] = "RT:480/65%RB:543/70%EM:759/79%",
["Jotaki"] = "LT:778/98%LB:648/96%RM:680/73%",
["Imba"] = "ST:786/99%LB:792/98%LM:959/98%",
["Cadra"] = "ET:740/94%LB:784/98%LM:962/97%",
["Plete"] = "RT:523/71%EB:731/93%EM:753/78%",
["Cornhólio"] = "RT:203/69%UB:294/41%RM:335/70%",
["Zyroc"] = "ET:322/87%EB:610/94%EM:737/94%",
["Kradrox"] = "RT:443/63%RB:454/61%RM:322/54%",
["Eightynine"] = "ET:691/90%EB:681/87%RM:385/73%",
["Muth"] = "ET:304/85%EB:720/92%EM:809/86%",
["Zentaki"] = "LT:528/96%EB:648/84%EM:920/93%",
["Meralyn"] = "RT:140/52%EB:716/92%EM:802/85%",
["Lerchie"] = "ET:285/82%EB:559/91%EM:833/86%",
["Ollitaurus"] = "RT:229/74%EB:701/89%EM:742/94%",
["Allakazum"] = "ET:565/76%EB:694/88%EM:850/88%",
["Ekstase"] = "ET:345/88%EB:731/93%LM:921/95%",
["Fiaskoo"] = "LT:494/97%EB:697/90%LM:708/95%",
["Pengpeng"] = "ET:661/87%EB:558/91%LM:945/96%",
["Mingzi"] = "LT:648/98%EB:670/86%EM:810/84%",
["Anonym"] = "ET:286/82%EB:589/93%EM:887/92%",
["Mytøs"] = "RT:510/69%EB:645/88%LM:869/98%",
["Aleksandra"] = "LT:600/98%EB:732/93%LM:943/96%",
["Hassaro"] = "ET:429/94%EB:740/94%EM:865/89%",
["Dumuduku"] = "ET:711/91%LB:658/96%LM:858/97%",
["Baffalo"] = "LT:644/98%EB:721/91%EM:823/85%",
["Leahmathras"] = "UT:217/28%EB:670/90%EM:654/94%",
["Hensel"] = "LT:553/97%EB:622/82%RM:300/67%",
["Jasjar"] = "ET:680/88%EB:737/93%EM:640/90%",
["Whichhunter"] = "ET:382/92%EB:499/87%RM:363/73%",
["Caphila"] = "LT:680/98%LB:754/95%SM:942/99%",
["Kaaro"] = "ET:293/84%EB:547/91%EM:795/83%",
["Isildúr"] = "ST:685/99%LB:765/96%LM:910/95%",
["Siera"] = "ET:267/81%EB:746/94%LM:937/96%",
["Vitani"] = "ET:396/93%LB:727/98%LM:964/97%",
["Barexx"] = "ET:644/89%LB:757/96%LM:941/97%",
["Coixus"] = "LT:648/98%EB:705/90%EM:679/91%",
["Dulli"] = "LT:551/97%EB:709/90%EM:732/76%",
["Seraltas"] = "ET:393/91%EB:710/90%EM:543/85%",
["Shali"] = "ET:613/81%EB:538/92%EM:904/93%",
["Viserra"] = "ET:703/91%EB:745/94%EM:852/90%",
["Kuda"] = "ET:545/87%LB:721/95%EM:881/94%",
["Roxzz"] = "ST:750/99%SB:790/99%LM:963/98%",
["Drunepa"] = "LT:739/96%LB:751/97%EM:810/92%",
["Sevenoftank"] = "ET:310/87%EB:446/87%EM:682/92%",
["Cooparfield"] = "ET:613/81%EB:603/79%",
["Hornybullet"] = "RT:229/74%EB:393/77%EM:716/78%",
["Ajune"] = "ET:705/93%EB:695/92%EM:905/93%",
["Noelleon"] = "ET:703/93%EB:706/92%LM:746/97%",
["Tarans"] = "ST:740/99%EB:708/93%EM:816/91%",
["Lurbuk"] = "ST:733/99%SB:753/99%SM:901/99%",
["Thefreak"] = "ET:400/94%EB:574/92%EM:533/84%",
["Hampelhannes"] = "ET:275/81%EB:584/83%EM:712/83%",
["Gatto"] = "ET:292/88%EB:661/91%EM:733/90%",
["Stahlsicht"] = "ET:614/86%LB:599/96%LM:782/98%",
["Roffler"] = "ET:275/92%EB:661/91%EM:714/87%",
["Meftas"] = "EB:677/85%EM:861/88%",
["Karaxxar"] = "LT:514/97%EB:511/88%EM:591/87%",
["Matender"] = "RT:493/65%EB:677/87%EM:697/91%",
["Kottie"] = "ET:631/88%EB:626/79%RM:633/68%",
["Wutdieb"] = "LT:461/96%LB:774/98%LM:959/98%",
["Nobeanz"] = "CT:103/18%EB:583/77%RM:560/64%",
["Askir"] = "ET:366/92%EB:586/92%EM:870/90%",
["Lelí"] = "ET:566/75%EB:584/77%EM:842/87%",
["Perri"] = "LT:561/97%LB:738/95%EM:651/92%",
["Kektor"] = "LT:452/96%EB:647/83%EM:814/79%",
["Avellan"] = "CT:132/17%EB:652/84%EM:788/82%",
["Blizarnardo"] = "ET:608/82%SB:802/99%LM:932/95%",
["Skardex"] = "ET:382/94%EB:664/84%EM:881/91%",
["Bagzz"] = "LT:761/96%LB:766/96%LM:954/97%",
["Booyah"] = "RB:516/69%RM:628/67%",
["Fleischhocka"] = "RB:513/69%UM:200/48%",
["Bavolt"] = "LT:730/95%LB:774/98%LM:940/98%",
["Shahdee"] = "RT:161/56%EB:623/79%EM:797/83%",
["Neph"] = "LT:561/97%EB:615/94%EM:819/85%",
["Fubi"] = "LT:473/95%LB:655/96%EM:825/86%",
["Rasil"] = "ET:723/92%EB:742/94%EM:727/77%",
["Lanaria"] = "ET:656/87%LB:751/95%EM:885/91%",
["Overkiller"] = "RT:190/67%LB:779/97%LM:971/98%",
["Raque"] = "LT:717/97%LB:675/98%SM:967/99%",
["Knuellerich"] = "ET:345/89%EB:714/91%EM:711/92%",
["Karaputt"] = "ET:282/82%EB:598/93%EM:917/93%",
["Steamroll"] = "EB:659/83%EM:835/87%",
["Rog"] = "CT:122/15%EB:568/75%EM:772/81%",
["Jepeto"] = "UT:345/46%RB:539/72%RM:528/56%",
["Cerk"] = "LT:649/98%LB:770/97%EM:900/93%",
["Ráubert"] = "LT:509/96%LB:736/96%LM:895/96%",
["Athas"] = "ET:338/88%EB:611/94%EM:823/86%",
["Gadri"] = "LT:746/95%SB:832/99%LM:917/96%",
["Bimli"] = "RB:534/71%RM:569/65%",
["Mugster"] = "ET:293/86%EB:561/92%EM:850/92%",
["Longus"] = "ET:304/83%EB:740/94%EM:834/86%",
["Simsim"] = "RT:175/63%EB:750/94%EM:927/94%",
["Chokka"] = "ET:645/85%EB:477/86%RM:618/69%",
["Holzschädl"] = "EB:665/84%EM:805/83%",
["Babahaft"] = "ET:670/87%EB:741/93%LM:952/96%",
["Braincake"] = "ET:423/94%EB:702/89%EM:688/92%",
["Sios"] = "ET:245/75%LB:640/95%EM:874/89%",
["Noraia"] = "EB:629/80%RM:658/70%",
["Rhani"] = "ET:319/89%EB:703/92%EM:803/91%",
["Burta"] = "LT:595/98%EB:645/83%EM:729/79%",
["Molschine"] = "UT:115/36%RB:417/60%RM:530/58%",
["Meldekontakt"] = "ET:279/78%EB:689/92%EM:895/94%",
["Tokîo"] = "ET:389/89%EB:468/88%EM:862/91%",
["Junic"] = "CT:77/22%UB:365/49%RM:580/68%",
["Ubiwez"] = "RT:179/54%EB:436/85%RM:436/66%",
["Wnb"] = "RB:406/59%UM:149/41%",
["Jensch"] = "RB:217/52%RM:549/60%",
["Dremmos"] = "ET:267/75%RB:441/64%RM:662/73%",
["Scartist"] = "UT:111/35%UB:247/32%CM:242/24%",
["Azune"] = "UT:220/29%EB:555/79%RM:636/74%",
["Riina"] = "ET:597/76%EB:393/81%RM:311/70%",
["Ampore"] = "RB:483/67%EM:757/82%",
["Curefocancer"] = "CT:73/21%RB:436/60%RM:605/67%",
["Moosalah"] = "LT:327/95%LB:759/97%SM:888/99%",
["Kardais"] = "UB:342/48%RM:595/66%",
["Keyti"] = "RB:239/57%RM:521/57%",
["Martullo"] = "ET:259/77%RB:488/70%EM:665/76%",
["Raito"] = "UB:266/35%",
["Boonreturns"] = "ET:615/77%EB:477/89%LM:926/97%",
["Taubsi"] = "ET:726/88%EB:646/88%RM:668/74%",
["Cappadin"] = "UB:265/35%EM:466/82%",
["Lyreya"] = "RB:221/53%RM:673/74%",
["Knispelfispe"] = "UB:225/29%RM:499/55%",
["Dodoo"] = "UT:73/27%RB:536/74%EM:716/75%",
["Layna"] = "UT:310/37%EB:601/84%EM:722/81%",
["Luniya"] = "RB:276/69%RM:430/51%",
["Keldon"] = "CT:66/5%RB:404/58%EM:416/78%",
["Katjastrophe"] = "CT:62/5%RB:504/73%UM:286/30%",
["Zaralea"] = "UT:138/43%RB:517/74%RM:464/50%",
["Mtbottle"] = "UT:121/38%RB:415/56%EM:520/85%",
["Beaivi"] = "UT:282/34%EB:394/81%RM:316/66%",
["Aquilee"] = "RT:265/73%EB:649/90%EM:620/90%",
["Doren"] = "UB:235/29%RM:631/72%",
["Naica"] = "EB:335/75%EM:388/77%",
["Morgoth"] = "RT:347/70%EB:629/85%EM:859/90%",
["Lenâ"] = "EB:632/87%EM:884/94%",
["Schattentreu"] = "RB:507/70%RM:641/71%",
["Oboyle"] = "ET:304/80%UB:254/34%UM:162/46%",
["Orroc"] = "RB:464/64%RM:661/73%",
["Bubux"] = "CT:138/15%EB:656/88%LM:930/96%",
["Gonzales"] = "UT:133/47%EB:624/85%EM:825/88%",
["Bloodseeker"] = "UB:202/49%RM:641/71%",
["Tkk"] = "EB:615/84%LM:915/95%",
["Bautista"] = "UB:315/42%UM:418/45%",
["Padawan"] = "CT:45/13%EB:575/79%EM:831/89%",
["Klassikklaus"] = "UB:181/44%RM:590/65%",
["Hesekaja"] = "RT:195/64%RB:456/67%RM:599/71%",
["Izryced"] = "RB:266/62%CM:208/20%",
["Zimra"] = "RB:237/58%UM:425/49%",
["Nymphoria"] = "UB:127/31%UM:396/42%",
["Grimbeorn"] = "ET:400/90%EB:476/89%LM:727/95%",
["Wesar"] = "ET:588/75%RB:487/70%EM:667/76%",
["Antiquark"] = "RB:435/61%EM:759/82%",
["Greenawild"] = "UB:315/44%",
["Valanie"] = "RB:385/55%RM:214/53%",
["Deadway"] = "RB:391/53%RM:251/59%",
["Tripzyo"] = "ET:446/79%EB:583/84%EM:841/92%",
["Moojoo"] = "UT:210/28%RB:464/67%RM:239/61%",
["Extc"] = "UT:85/26%UB:298/40%UM:123/34%",
["Fyona"] = "ET:635/82%EB:545/75%RM:599/66%",
["Halgal"] = "RT:256/71%EB:543/93%EM:578/88%",
["Bagheerá"] = "LB:735/96%EM:857/91%",
["Reragon"] = "UB:235/30%",
["Kathii"] = "RB:469/68%EM:577/80%",
["Kusoyarou"] = "UB:272/37%RM:554/71%",
["Torrero"] = "ET:276/77%EB:454/87%EM:445/81%",
["Dalamarix"] = "RB:531/74%EM:419/77%",
["Necus"] = "RB:215/51%RM:503/59%",
["Ingreed"] = "CT:65/18%EB:537/77%RM:455/54%",
["Deltalas"] = "CT:139/15%UB:291/41%UM:76/27%",
["Sahades"] = "CT:64/24%RB:493/72%RM:216/57%",
["Thýráz"] = "UB:238/30%RM:372/73%",
["Flínt"] = "UB:310/42%UM:232/27%",
["Wombutt"] = "RB:419/57%EM:752/82%",
["Arethusa"] = "ET:282/76%RB:323/71%EM:730/83%",
["Afrit"] = "RB:494/68%EM:682/75%",
["Grape"] = "ST:748/99%EB:722/92%LM:908/98%",
["Isymfs"] = "ST:696/99%EB:578/92%EM:632/88%",
["Muriel"] = "RT:440/58%EB:413/84%EM:755/85%",
["Acidwars"] = "RT:446/61%EB:377/76%RM:699/74%",
["Ronjaa"] = "ET:579/78%EB:614/78%EM:723/77%",
["Budnaked"] = "RT:190/66%LB:724/95%EM:913/94%",
["Eagle"] = "LT:632/98%EB:679/87%EM:836/86%",
["Tahl"] = "ET:711/91%EB:621/94%EM:903/93%",
["Ara"] = "RT:409/53%EB:676/85%EM:863/88%",
["Icebite"] = "ET:688/89%EB:675/90%EM:773/83%",
["Salvus"] = "ET:429/94%EB:604/80%EM:857/90%",
["Svan"] = "ET:349/90%RB:455/62%UM:147/39%",
["Zhadár"] = "ET:737/94%EB:721/92%LM:890/98%",
["Shaenx"] = "UT:347/47%LB:759/95%SM:1006/99%",
["Strykee"] = "CT:170/22%RB:414/54%EM:794/85%",
["Inipal"] = "ET:473/80%EB:529/93%LM:905/96%",
["Orthmar"] = "ET:339/90%EB:579/93%EM:665/92%",
["Blooddiamond"] = "ET:704/91%SB:800/99%EM:926/94%",
["Icantmove"] = "ET:291/86%EB:568/75%EM:817/87%",
["Goldhand"] = "ET:701/90%LB:750/95%LM:873/98%",
["Golthar"] = "LT:556/97%EB:606/93%EM:625/89%",
["Totenfrost"] = "LT:585/97%EB:658/85%EM:510/82%",
["Jericha"] = "LT:528/97%EB:564/94%LM:802/97%",
["Huntards"] = "LT:482/96%EB:732/93%EM:817/86%",
["Lunanna"] = "ET:690/90%EB:692/89%EM:821/87%",
["Reryok"] = "ST:706/99%EB:747/94%EM:868/89%",
["Bithero"] = "RT:546/74%EB:707/90%LM:924/95%",
["Feysia"] = "ET:251/77%EB:457/83%EM:813/84%",
["Kroshakh"] = "RT:191/67%RB:287/64%",
["Opsi"] = "ET:618/83%LB:630/95%EM:829/86%",
["Bana"] = "ST:741/99%SB:718/99%LM:924/96%",
["Growtesk"] = "ET:314/86%EB:541/94%EM:565/90%",
["Devilwitch"] = "LT:579/97%EB:742/94%EM:540/89%",
["Zulrakathar"] = "LT:648/98%LB:749/97%LM:944/98%",
["Prapor"] = "ET:305/87%LB:650/96%EM:904/92%",
["Zentallus"] = "ET:704/91%EB:730/92%EM:866/89%",
["Chegwin"] = "ET:433/94%EB:737/94%EM:906/93%",
["Darthbaine"] = "LT:760/97%LB:767/97%LM:945/98%",
["Creative"] = "ET:663/93%LB:781/98%SM:1002/99%",
["Eloente"] = "ET:233/76%RB:450/64%EM:645/93%",
["Thuala"] = "RT:156/57%RB:301/70%EM:480/86%",
["Trismegistos"] = "RT:511/68%RB:436/57%RM:637/70%",
["Dramanui"] = "UT:359/48%RB:497/67%RM:732/70%",
["Gemetzeli"] = "RT:231/74%EB:432/82%EM:858/88%",
["Daedron"] = "LT:743/96%LB:744/95%LM:924/97%",
["Maecksy"] = "ST:817/99%SB:809/99%SM:1001/99%",
["Yodafone"] = "ET:307/87%EB:633/80%EM:901/92%",
["Tharilzun"] = "ET:372/92%LB:629/96%EM:895/94%",
["Mutilos"] = "ET:721/92%LB:781/98%EM:909/93%",
["Sentaria"] = "ET:266/79%EB:471/84%EM:734/93%",
["Xarog"] = "LT:619/98%LB:776/98%LM:970/98%",
["Xshay"] = "ET:710/91%EB:730/92%EM:883/90%",
["Citris"] = "LT:532/97%EB:651/91%LM:856/95%",
["Schadur"] = "ET:276/82%EB:569/92%EM:820/85%",
["Naratya"] = "LT:733/95%LB:739/95%LM:798/98%",
["Siluna"] = "ET:611/81%EB:744/94%EM:913/94%",
["Æmmber"] = "ET:267/80%RB:545/70%EM:761/80%",
["Anuktius"] = "LT:609/98%LB:690/97%EM:743/94%",
["Baradûr"] = "ET:676/91%EB:725/94%EM:784/90%",
["Cazi"] = "ET:586/84%EB:673/90%EM:899/94%",
["Underrated"] = "ET:689/94%LB:727/97%SM:994/99%",
["Endu"] = "LT:744/96%LB:636/97%EM:833/92%",
["Kuckx"] = "ET:585/78%RB:544/73%RM:345/69%",
["Overlord"] = "LT:597/98%LB:755/96%LM:880/95%",
["Iskar"] = "ET:393/91%EB:601/93%LM:824/97%",
["Yolopolo"] = "ET:609/91%EB:695/93%LM:755/95%",
["Uwe"] = "LT:495/97%EB:395/87%LM:725/98%",
["Guugechef"] = "RT:237/73%EB:489/86%LM:764/95%",
["Samuh"] = "LT:701/95%SB:907/99%SM:1151/99%",
["Sinope"] = "LT:732/96%EB:675/94%EM:805/93%",
["Covvard"] = "LT:665/98%LB:783/98%LM:955/98%",
["Margæry"] = "LT:661/95%LB:684/98%LM:897/95%",
["Makka"] = "ET:627/87%EB:618/86%EM:521/91%",
["Wolfwar"] = "ET:307/87%EB:680/87%EM:715/78%",
["Bibbam"] = "RT:508/71%EB:422/82%EM:856/88%",
["Rogueyaya"] = "EB:651/82%EM:870/89%",
["Desy"] = "ET:367/92%LB:666/96%EM:524/84%",
["Stealthgun"] = "ET:269/81%EB:573/76%RM:657/70%",
["Akir"] = "ET:335/90%EB:611/86%EM:716/85%",
["Schwerdtey"] = "ET:349/91%EB:715/93%LM:711/97%",
["Deadpauli"] = "ET:281/81%EB:633/82%EM:807/84%",
["Andhim"] = "EB:711/89%EM:844/87%",
["Thraneris"] = "LT:646/98%LB:766/96%LM:852/97%",
["Landsoul"] = "ST:681/99%LB:756/96%SM:861/99%",
["Luticia"] = "RB:513/69%EM:802/84%",
["Credic"] = "UT:309/45%EB:659/83%EM:830/86%",
["Shorâ"] = "ET:307/87%EB:666/85%EM:528/84%",
["Redefined"] = "ET:572/78%EB:607/79%EM:740/81%",
["Zikx"] = "ET:649/86%LB:658/96%EM:911/93%",
["Grayz"] = "LT:615/98%LB:644/97%LM:664/96%",
["Gornova"] = "LT:533/97%EB:546/90%EM:806/84%",
["Retry"] = "EB:740/94%EM:905/92%",
["Kloud"] = "LT:474/95%LB:790/98%LM:968/98%",
["Kadenz"] = "LT:688/98%EB:747/94%LM:765/95%",
["Dragohn"] = "ET:600/78%EB:673/86%EM:733/78%",
["Rasierklinge"] = "ET:397/93%EB:429/81%RM:650/72%",
["Skrouk"] = "EB:656/84%RM:515/57%",
["Dilero"] = "EB:621/79%EM:879/90%",
["Schwaeki"] = "ET:742/94%LB:779/98%LM:976/98%",
["Chaosfactor"] = "ET:312/87%EB:591/77%RM:519/55%",
["Kurthas"] = "UT:257/38%EB:666/84%EM:788/83%",
["Stachelbeere"] = "RT:184/62%RB:508/68%RM:658/71%",
["Sasuria"] = "ET:254/78%RB:547/73%EM:700/75%",
["Doon"] = "LB:785/98%LM:968/97%",
["Satanist"] = "LT:597/98%EB:462/85%RM:671/74%",
["Scar"] = "ET:346/89%RB:531/71%EM:846/88%",
["Kaidô"] = "RT:174/60%EB:420/80%EM:592/86%",
["Hinden"] = "ET:352/89%LB:677/96%LM:936/96%",
["Ganyata"] = "ET:561/75%EB:680/87%EM:752/94%",
["Rjinswand"] = "ST:676/99%EB:555/91%EM:865/89%",
["Wia"] = "EB:657/83%EM:771/80%",
["Brunin"] = "ET:702/93%LB:758/97%LM:947/98%",
["Rubbeldikatz"] = "ET:694/90%LB:782/98%LM:968/97%",
["Mjaki"] = "ET:359/93%LB:738/97%LM:906/96%",
["Zulomo"] = "ET:336/88%EB:583/77%EM:741/78%",
["Yénnifer"] = "LT:570/97%EB:714/91%EM:864/89%",
["Fløkí"] = "RB:439/60%RM:501/56%",
["Leksar"] = "ET:240/76%EB:612/79%EM:712/93%",
["Invictûs"] = "CT:83/10%RB:512/66%RM:612/65%",
["Tedy"] = "ST:813/99%LB:765/97%EM:919/94%",
["Ékys"] = "RB:526/70%",
["Darkrouge"] = "ET:399/93%EB:490/86%EM:922/94%",
["Toshina"] = "ET:683/88%EB:711/90%EM:855/88%",
["Aggroismine"] = "RB:460/62%EM:763/83%",
["Philz"] = "LT:511/97%LB:774/98%EM:880/93%",
["Malain"] = "ET:328/92%LB:760/97%LM:903/95%",
["Alphafighter"] = "RT:221/72%RB:581/74%EM:830/85%",
["Feddich"] = "UT:104/37%LB:751/97%EM:872/92%",
["Nórdwand"] = "EB:659/90%EM:841/92%",
["Ezioo"] = "RT:206/65%EB:649/88%EM:756/82%",
["Moonchild"] = "EB:524/82%EM:793/91%",
["Inoxio"] = "CT:77/24%UB:164/42%UM:428/46%",
["Dardariel"] = "RB:502/69%EM:687/75%",
["Rapurnzel"] = "UB:263/35%RM:489/56%",
["Molyholy"] = "RB:392/53%RM:666/73%",
["Rescues"] = "EB:659/88%EM:848/89%",
["Anjelica"] = "CT:35/8%RB:491/68%EM:709/78%",
["Treesus"] = "RB:458/63%EM:793/86%",
["Bravery"] = "UT:106/38%EB:393/81%RM:171/51%",
["Vorgor"] = "UT:90/28%EB:521/92%EM:624/91%",
["Irene"] = "EB:536/75%EM:716/79%",
["Aerka"] = "CT:41/8%EB:569/81%EM:713/82%",
["Laplace"] = "CB:199/24%UM:171/45%",
["Tehalon"] = "RT:477/63%LB:718/95%",
["Peaky"] = "RT:204/59%EB:490/77%RM:517/72%",
["Thris"] = "ET:348/86%EB:547/76%EM:839/89%",
["Deekáy"] = "RT:263/72%EB:397/82%EM:456/80%",
["Borgas"] = "CB:127/13%UM:346/40%",
["Juleana"] = "RT:438/55%RB:502/69%EM:794/86%",
["Redstorm"] = "ET:360/76%RB:427/72%UM:420/45%",
["Testojutsu"] = "UT:103/34%UB:155/40%RM:345/70%",
["Tschunk"] = "RB:272/64%RM:639/73%",
["Doppio"] = "RB:359/52%RM:301/68%",
["Xoont"] = "ET:430/93%EB:656/91%EM:843/93%",
["Orukai"] = "RB:530/73%RM:625/69%",
["Pusycat"] = "CB:144/15%RM:652/69%",
["Carlisle"] = "UT:143/46%UB:274/37%EM:518/85%",
["Ryoo"] = "RB:242/60%",
["Paraccetamol"] = "ET:290/81%EB:525/76%RM:604/67%",
["Schnief"] = "ET:469/81%EB:330/75%EM:500/85%",
["Gunther"] = "CB:135/14%CM:157/14%",
["Ipmandrei"] = "RB:425/59%EM:676/75%",
["Vanessâ"] = "CT:91/9%EB:566/81%EM:660/92%",
["Kiota"] = "UT:91/28%RB:420/60%EM:750/83%",
["Radergast"] = "EB:570/79%EM:825/88%",
["Antharias"] = "RB:241/56%UM:437/47%",
["Treebluff"] = "RT:180/61%RB:369/53%EM:751/82%",
["Lezorida"] = "CT:47/11%RB:311/70%RM:317/67%",
["Qasq"] = "RB:201/51%CM:53/20%",
["Isirion"] = "RB:317/71%UM:386/41%",
["Garmur"] = "UB:252/33%RM:453/72%",
["Brotan"] = "RB:411/59%EM:427/79%",
["Restrict"] = "UB:337/45%RM:473/51%",
["Wizenbeer"] = "ET:706/87%EB:630/86%EM:894/93%",
["Jooseph"] = "UB:334/44%RM:504/55%",
["Zorkzar"] = "RB:485/67%EM:841/89%",
["Mythica"] = "CT:56/17%RB:366/52%RM:365/73%",
["Lokilo"] = "EB:593/82%EM:825/89%",
["Cemendur"] = "RT:306/69%RB:316/70%RM:365/62%",
["Treesn"] = "CT:111/15%UB:292/40%CM:44/19%",
["Schizophreno"] = "RB:362/72%EM:503/75%",
["Tontz"] = "CT:50/3%RB:317/69%EM:698/76%",
["Pagenotfound"] = "UT:137/44%EB:438/87%RM:469/50%",
["Badborsti"] = "ET:304/80%RB:375/53%UM:414/49%",
["Endorphina"] = "CT:37/6%CB:102/24%RM:234/54%",
["Jindu"] = "RB:374/54%RM:589/66%",
["Papa"] = "RB:401/55%EM:863/90%",
["Dartheron"] = "CB:182/22%RM:573/64%",
["Himmelsfee"] = "CT:68/6%EB:438/85%LM:755/96%",
["Letah"] = "UB:194/47%UM:158/43%",
["Thulu"] = "RB:435/62%EM:797/89%",
["Eiswind"] = "CB:190/23%CM:86/6%",
["Salatgurke"] = "CT:77/7%UB:294/40%UM:438/47%",
["Encephalog"] = "CB:160/18%EM:607/82%",
["Woodworm"] = "CT:70/21%RB:385/56%RM:373/73%",
["Bennkenobi"] = "RB:226/53%CM:28/0%",
["Lardina"] = "CT:62/17%UB:213/26%UM:401/47%",
["Blessed"] = "UT:92/29%EB:582/81%RM:624/69%",
["Xathas"] = "RT:192/59%UB:171/42%RM:272/61%",
["Schamgefühl"] = "UT:264/31%RB:520/74%EM:811/88%",
["Taleilama"] = "CT:75/22%UB:222/28%RM:216/53%",
["Brondy"] = "RB:227/53%CM:175/16%",
["Gallos"] = "RT:189/58%RB:505/70%RM:667/74%",
["Nariseal"] = "CB:160/18%RM:599/66%",
["Mephysto"] = "UT:116/37%RB:506/70%EM:724/79%",
["Rakmuur"] = "CB:141/15%EM:677/77%",
["Nivez"] = "RT:175/60%EB:750/94%EM:879/90%",
["Maxímal"] = "ET:323/86%LB:750/95%EM:880/92%",
["Philp"] = "ET:328/89%EB:432/81%EM:775/81%",
["Arwen"] = "ET:733/94%SB:758/99%LM:906/98%",
["Tongah"] = "LT:621/98%EB:719/94%EM:888/92%",
["Mokna"] = "ET:549/76%RB:534/73%",
["Vino"] = "ET:325/88%EB:552/94%EM:836/88%",
["Pørøhikø"] = "ET:516/83%LB:687/98%LM:905/96%",
["Nyssul"] = "LT:608/98%LB:611/96%LM:794/98%",
["Dadox"] = "RT:447/62%EB:596/78%RM:692/74%",
["Smog"] = "ET:278/82%RB:461/67%UM:419/49%",
["Campex"] = "ET:265/80%EB:682/88%EM:849/87%",
["Defterdar"] = "ET:709/91%LB:752/95%EM:877/91%",
["Bimon"] = "ET:529/79%EB:558/82%EM:665/91%",
["Pikowatt"] = "ET:692/90%EB:733/93%EM:744/94%",
["Revelon"] = "ET:670/88%LB:626/95%EM:704/93%",
["Greymor"] = "ET:657/90%EB:644/88%LM:743/96%",
["Washme"] = "ET:664/87%RB:517/74%RM:597/72%",
["Pît"] = "ET:564/76%EB:677/87%EM:589/88%",
["Yambalaya"] = "ET:700/91%LB:758/95%RM:635/68%",
["Pae"] = "UT:247/32%RB:389/56%EM:374/79%",
["Burschikos"] = "LT:585/97%SB:827/99%LM:961/98%",
["Zartek"] = "ET:589/78%EB:645/84%RM:665/69%",
["Gromtal"] = "RT:181/61%RB:560/72%EM:474/78%",
["Lacatrina"] = "LT:490/96%EB:586/77%RM:691/74%",
["Marghul"] = "LT:566/97%EB:548/90%LM:781/95%",
["Webber"] = "ET:370/92%EB:480/85%EM:681/91%",
["Wasserlasser"] = "ET:388/92%RB:441/64%RM:600/72%",
["Superstrong"] = "RT:202/69%EB:565/75%EM:607/92%",
["Hárdý"] = "LT:625/98%LB:718/98%LM:765/95%",
["Cluekid"] = "ET:342/89%EB:671/87%EM:810/86%",
["Mervi"] = "ET:250/78%RB:512/73%EM:707/82%",
["Ogtamar"] = "ET:687/94%EB:618/88%EM:815/92%",
["Snøøze"] = "LT:660/98%LB:766/96%LM:975/98%",
["Ichthys"] = "ET:660/93%LB:727/95%LM:893/95%",
["Vonwegentank"] = "ET:729/94%EB:730/94%EM:826/91%",
["Sallia"] = "RT:493/67%RB:400/59%",
["Rambina"] = "ET:385/92%EB:718/91%EM:911/93%",
["Kuldras"] = "ET:568/75%EB:697/89%EM:580/87%",
["Elelock"] = "ET:307/84%EB:483/85%LM:812/96%",
["Andaryn"] = "ET:514/84%LB:714/98%EM:821/91%",
["Isumi"] = "ET:327/87%EB:733/92%EM:815/84%",
["Vaako"] = "LT:634/98%EB:638/83%EM:827/86%",
["Wêdma"] = "ET:312/84%EB:698/89%EM:699/92%",
["Schtring"] = "RT:196/65%EB:653/84%EM:715/93%",
["Sinthraz"] = "RT:184/64%UB:247/33%EM:416/78%",
["Amishot"] = "LT:495/97%EB:537/93%EM:805/90%",
["Kido"] = "ET:693/92%LB:766/97%LM:933/96%",
["Kaifl"] = "ET:598/85%EB:586/82%EM:629/80%",
["Arutika"] = "ET:539/85%EB:605/86%LM:785/96%",
["Methan"] = "ET:633/88%EB:537/93%LM:693/96%",
["Katô"] = "LT:572/97%EB:573/92%EM:837/87%",
["Nefredite"] = "RT:463/62%RB:558/73%EM:502/82%",
["Ugrok"] = "ET:253/76%EB:649/84%LM:788/95%",
["Mcwizzard"] = "RT:187/72%UB:133/36%UM:405/47%",
["Nèmesìs"] = "ET:377/90%EB:720/91%EM:887/91%",
["Sempiternal"] = "ET:486/83%EB:608/87%EM:871/94%",
["Hitboy"] = "RT:443/58%EB:396/77%EM:552/83%",
["Alkopowl"] = "RT:507/67%EB:691/88%EM:861/89%",
["Hygge"] = "ET:341/90%EB:610/79%RM:402/74%",
["Benegesserit"] = "ET:294/83%EB:729/92%EM:728/94%",
["Nekronils"] = "ET:361/89%EB:729/92%LM:783/95%",
["Zeeldri"] = "RT:470/64%RB:540/72%RM:549/61%",
["Scuzzlebud"] = "LB:774/97%LM:955/97%",
["Violity"] = "UT:364/47%EB:580/76%EM:522/81%",
["Sodome"] = "ET:327/89%EB:473/85%RM:701/74%",
["Johnwayne"] = "ET:388/91%EB:736/93%EM:846/89%",
["Mechtige"] = "ET:578/76%EB:602/79%EM:697/91%",
["Haucow"] = "LT:435/95%EB:535/90%EM:771/83%",
["Drossel"] = "RB:474/64%EM:497/81%",
["Aßbarrt"] = "RT:457/64%EB:606/79%UM:183/49%",
["Sincap"] = "ET:461/94%EB:733/93%EM:631/89%",
["Joecoffee"] = "ET:317/86%EB:684/87%EM:799/83%",
["Stabfather"] = "EB:505/88%EM:489/80%",
["Lemmingwing"] = "ET:711/91%EB:632/82%EM:745/87%",
["Ittas"] = "ET:598/85%EB:697/92%LM:956/97%",
["Vertigox"] = "ET:310/91%EB:700/93%RM:642/70%",
["Mylu"] = "EB:715/91%RM:638/66%",
["Dsching"] = "UT:301/44%EB:585/77%RM:387/74%",
["Unfassbar"] = "ET:384/93%EB:693/88%EM:727/87%",
["Xkryptonite"] = "ET:726/93%EB:719/92%LM:782/96%",
["Sniggy"] = "RB:424/57%EM:831/86%",
["Míh"] = "EB:611/78%EM:838/86%",
["Roybtier"] = "UT:231/31%RB:430/59%UM:179/45%",
["Tastem"] = "LT:743/96%LB:771/97%LM:957/98%",
["Syonidas"] = "ET:635/83%EB:732/93%EM:739/94%",
["Maut"] = "UT:82/29%EB:521/89%EM:863/88%",
["Protan"] = "ET:387/93%EB:651/84%EM:773/81%",
["Kerubin"] = "ET:686/89%EB:694/89%EM:630/89%",
["Schmurke"] = "ET:727/93%EB:676/87%EM:557/84%",
["Bumbangbum"] = "RT:181/65%LB:777/97%LM:954/96%",
["Skilleskutt"] = "EB:738/93%EM:725/93%",
["Dearmon"] = "ET:390/93%EB:611/84%EM:742/84%",
["Glendara"] = "ET:490/89%LB:713/95%LM:897/96%",
["Umfister"] = "ET:345/89%RB:560/74%EM:800/83%",
["Elorya"] = "LT:724/95%LB:733/95%LM:786/97%",
["Comrade"] = "ET:379/92%RB:283/62%EM:732/78%",
["Suppengombo"] = "LT:547/97%EB:554/91%EM:461/79%",
["Magnifico"] = "LT:587/97%EB:694/89%EM:821/87%",
["Yúukí"] = "ET:465/94%LB:771/97%LM:947/96%",
["Sydathe"] = "ET:393/92%EB:605/94%EM:686/91%",
["Gloinsen"] = "RT:210/70%RB:365/74%RM:493/52%",
["Faile"] = "LB:762/96%EM:903/93%",
["Baddi"] = "RT:364/50%EB:430/81%LM:790/96%",
["Rayka"] = "ET:373/91%EB:442/82%EM:853/89%",
["Geilkor"] = "LB:743/96%EM:868/91%",
["Fruchtgummi"] = "ET:552/87%LB:777/98%LM:902/96%",
["Nork"] = "EB:634/82%EM:741/78%",
["Turbotobi"] = "EB:639/83%EM:760/80%",
["Kurtkuhbaîn"] = "RT:173/62%RB:566/72%EM:861/89%",
["Finne"] = "LB:773/97%LM:963/97%",
["Mywarrior"] = "ET:286/85%RB:509/68%RM:573/61%",
["Nawatar"] = "RT:159/55%EB:690/87%EM:816/84%",
["Crimsonix"] = "ET:387/94%EB:473/86%EM:708/93%",
["Thalou"] = "LT:463/96%EB:752/94%EM:905/92%",
["Tøxic"] = "RT:503/66%EB:562/91%EM:807/85%",
["Nailow"] = "EB:627/89%EM:704/87%",
["Mei"] = "RB:235/58%UM:372/40%",
["Nâlâ"] = "RB:449/62%EM:765/83%",
["Tyannenyjni"] = "RB:373/51%EM:747/81%",
["Leyala"] = "UB:280/37%RM:588/64%",
["Mørgrim"] = "CB:93/8%UM:76/27%",
["Thys"] = "RT:233/67%RB:423/60%RM:310/65%",
["Oxcidia"] = "ET:448/79%EB:604/86%EM:750/87%",
["Wowspieler"] = "RT:165/54%RB:303/59%EM:729/86%",
["Tooth"] = "UT:86/26%UB:243/31%RM:313/67%",
["Zentalline"] = "CT:71/6%RB:374/52%EM:674/78%",
["Iamdruid"] = "RB:405/58%RM:620/69%",
["Sivary"] = "ET:408/92%LB:613/97%EM:442/80%",
["Droné"] = "RB:268/56%EM:606/78%",
["Zabowe"] = "RB:502/69%RM:667/73%",
["Keingrüßen"] = "UT:366/46%UB:127/30%RM:596/70%",
["Amphibolo"] = "RT:479/66%EB:688/92%LM:917/95%",
["Badmoon"] = "EB:337/76%RM:183/52%",
["Mesomane"] = "ET:658/82%EB:533/76%EM:713/80%",
["Sickofitall"] = "CB:175/20%UM:385/45%",
["Rikaya"] = "CT:62/21%RB:227/56%RM:324/71%",
["Svaya"] = "ET:281/77%RB:508/70%EM:869/92%",
["Navros"] = "RT:163/67%UB:309/40%RM:522/69%",
["Vupi"] = "CB:173/20%EM:750/80%",
["Benkenòbi"] = "CB:38/2%RM:202/51%",
["Raiyah"] = "LT:508/95%EB:477/89%EM:728/83%",
["Nebola"] = "CT:59/15%UB:240/31%RM:247/58%",
["Operator"] = "UB:172/40%RM:521/57%",
["Vailor"] = "EB:674/91%RM:702/74%",
["Gichtkralle"] = "RB:386/54%EM:712/78%",
["Mineraloel"] = "UB:151/39%CM:27/1%",
["Yepyep"] = "UB:294/40%EM:669/77%",
["Xellusan"] = "UB:328/43%RM:675/71%",
["Helaa"] = "RB:284/65%CM:37/2%",
["Oxyik"] = "UT:125/41%UB:171/44%UM:350/38%",
["Kuhtrapali"] = "RT:60/55%EB:416/90%EM:671/86%",
["Blot"] = "RT:547/69%EB:537/77%EM:664/77%",
["Critti"] = "RT:173/73%EB:370/76%EM:767/91%",
["Bàlrock"] = "CT:44/3%CB:84/19%RM:278/62%",
["Galira"] = "UT:362/48%CB:14/17%RM:577/73%",
["Missidudu"] = "CT:62/21%RB:476/68%EM:410/79%",
["Relexa"] = "CT:26/4%RB:405/70%EM:395/78%",
["Felleria"] = "RB:202/50%RM:327/68%",
["Mikiri"] = "ET:434/92%EB:354/75%RM:565/66%",
["Waldwacht"] = "UT:74/26%EB:576/86%EM:812/92%",
["Zerea"] = "UT:95/31%RB:469/65%UM:399/42%",
["Danod"] = "RB:383/52%EM:403/76%",
["Lionleo"] = "ET:271/81%EB:466/87%EM:529/86%",
["Yingshen"] = "ET:335/83%UB:101/42%RM:538/63%",
["Unfriendme"] = "CB:63/13%EM:679/75%",
["Mimm"] = "CB:102/10%EM:394/75%",
["Fulovely"] = "UT:111/40%EB:335/75%UM:285/36%",
["Lebertran"] = "EB:641/91%EM:828/94%",
["Highlighth"] = "UT:114/35%RB:477/68%RM:472/56%",
["Schamai"] = "RB:326/74%RM:315/51%",
["Agravian"] = "UT:103/37%EB:442/86%EM:667/77%",
["Lâzuri"] = "CB:157/17%RM:652/72%",
["Untildawn"] = "RT:201/60%CB:64/5%RM:514/60%",
["Keyanu"] = "UT:129/40%EB:556/79%EM:507/83%",
["Thamalia"] = "UT:117/37%RB:376/67%EM:507/85%",
["Various"] = "UB:225/28%UM:90/47%",
["Wartezimmer"] = "CB:116/11%RM:519/61%",
["Azurel"] = "UT:342/47%EB:499/84%EM:586/80%",
["Voodooskillz"] = "UT:99/31%EB:467/88%EM:509/84%",
["Zoloo"] = "CB:87/7%UM:427/48%",
["Dontdie"] = "UB:148/38%RM:622/69%",
["Sarma"] = "CB:94/8%UM:74/25%",
["Unfunny"] = "UT:136/49%CB:189/23%UM:256/29%",
["Drschnaggels"] = "RB:460/66%RM:666/74%",
["Borenor"] = "UB:327/43%UM:364/39%",
["Untörtelbra"] = "CT:68/24%RB:440/63%RM:220/59%",
["Zergling"] = "CB:68/16%UM:138/41%",
["Clova"] = "CT:140/19%RB:257/61%RM:190/54%",
["Weizencarry"] = "UB:305/42%RM:489/55%",
["Unbelievable"] = "RT:416/55%RB:452/65%RM:608/71%",
["Vetrox"] = "CT:83/8%CB:96/9%CM:18/7%",
["Maltav"] = "RB:364/66%RM:391/63%",
["Hooptine"] = "UB:166/43%RM:533/59%",
["Castiel"] = "EB:446/92%EM:847/94%",
["Elsheriff"] = "CT:67/5%UB:87/47%RM:251/57%",
["Quisira"] = "RT:251/73%RB:339/74%EM:714/81%",
["Nasenbeutler"] = "ET:590/89%EB:539/92%EM:863/93%",
["Meanmachine"] = "RB:192/50%RM:252/57%",
["Pestilential"] = "CT:41/8%RB:283/65%UM:270/27%",
["Waggl"] = "ET:235/75%EB:605/84%RM:638/74%",
["Lokhra"] = "ET:242/78%EB:704/90%EM:830/86%",
["Areon"] = "ET:294/83%RB:477/65%UM:416/46%",
["Stronzo"] = "RT:151/55%EB:665/86%EM:778/83%",
["Teech"] = "RT:149/55%RB:443/59%RM:392/74%",
["Nøøtnøøt"] = "ET:605/80%EB:587/92%EM:780/81%",
["Grombrok"] = "ET:613/82%EB:687/88%EM:821/86%",
["Gymkhana"] = "LT:711/96%EB:708/94%EM:721/94%",
["Inqui"] = "ET:236/75%LB:567/95%EM:481/86%",
["Etga"] = "LT:696/95%LB:756/97%SM:937/99%",
["Mindie"] = "UT:74/25%UB:265/32%UM:401/42%",
["Jgdiffxd"] = "ET:640/84%EB:592/83%RM:273/63%",
["Chinu"] = "ET:679/88%EB:731/93%EM:886/92%",
["Zalton"] = "ST:697/99%EB:722/92%EM:855/90%",
["Corowna"] = "ET:360/91%EB:567/76%RM:692/73%",
["Zornagi"] = "UT:260/35%RB:531/71%RM:550/59%",
["Biohazárd"] = "ET:337/89%EB:751/94%EM:649/90%",
["Ratamahatta"] = "LT:652/98%LB:760/95%LM:927/95%",
["Brandsatz"] = "CT:171/22%RB:457/65%UM:73/29%",
["Tenroky"] = "ET:590/93%LB:576/96%LM:679/96%",
["Zxáys"] = "ST:749/99%LB:760/96%LM:934/96%",
["Dodgecharger"] = "ET:389/91%EB:520/88%RM:654/68%",
["Kosajalol"] = "ST:681/99%RB:271/60%UM:180/49%",
["Capitantwix"] = "UT:330/48%RB:563/72%EM:683/92%",
["Dubistich"] = "UT:336/45%RB:315/67%RM:575/63%",
["Volkerputman"] = "RT:379/51%RB:293/65%EM:708/76%",
["Skadi"] = "LT:489/96%EB:616/94%EM:751/94%",
["Metaponto"] = "ET:720/94%EB:730/94%LM:650/95%",
["Zärg"] = "LT:406/96%EB:705/94%EM:841/93%",
["Lullich"] = "ET:560/77%EB:722/91%EM:884/90%",
["Tschantalle"] = "RT:153/56%EB:683/88%EM:818/86%",
["Incubus"] = "RT:488/66%EB:704/89%RM:674/70%",
["Grahler"] = "ET:280/83%EB:715/91%RM:364/73%",
["Azeriot"] = "ET:379/91%LB:634/95%EM:855/90%",
["Discovery"] = "LT:564/98%LB:580/95%LM:770/97%",
["Clydefrog"] = "RT:206/69%EB:577/81%EM:657/78%",
["Zharkul"] = "ET:592/79%EB:663/85%EM:521/84%",
["Baldôran"] = "ET:318/86%EB:622/81%EM:639/90%",
["Zalu"] = "UT:121/45%RB:203/51%EM:436/80%",
["Aendru"] = "ET:583/80%EB:720/92%EM:722/94%",
["Derwendler"] = "LT:772/98%EB:570/94%SM:967/99%",
["Maxfury"] = "RT:210/70%EB:627/86%EM:679/80%",
["Wurschtbur"] = "ET:731/93%LB:756/95%LM:920/95%",
["Dónvitó"] = "LT:438/95%EB:741/93%LM:933/95%",
["Mólschi"] = "LT:621/98%EB:695/89%EM:801/83%",
["Blunter"] = "ET:303/85%EB:697/89%EM:667/91%",
["Pretzl"] = "ET:707/91%EB:683/87%RM:668/69%",
["Castnix"] = "RT:446/66%RB:398/52%EM:884/90%",
["Crônôs"] = "RT:556/74%EB:432/84%RM:481/52%",
["Kerilia"] = "ET:214/76%EB:555/84%EM:708/87%",
["Semkiy"] = "LT:456/96%EB:669/90%EM:839/92%",
["Polarus"] = "ST:681/99%LB:756/96%LM:928/96%",
["Nazgral"] = "LT:784/98%EB:683/94%LM:657/96%",
["Meluwor"] = "RT:206/74%EB:586/82%EM:384/85%",
["Roktar"] = "ET:723/94%LB:734/95%LM:673/96%",
["Maugenra"] = "ET:313/86%EB:447/84%EM:522/83%",
["Hinterlistig"] = "RT:512/67%EB:497/87%LM:787/95%",
["Adastra"] = "ET:306/86%RB:540/72%EM:830/85%",
["Sethin"] = "ET:301/90%LB:580/95%EM:803/85%",
["Tighti"] = "ET:306/85%EB:570/92%RM:573/61%",
["Meatwagen"] = "ET:368/92%EB:531/89%EM:534/84%",
["Brotmacher"] = "LT:468/95%EB:726/92%LM:794/96%",
["Arualus"] = "ET:707/92%LB:764/96%LM:947/96%",
["Sparkles"] = "CT:52/19%LB:745/96%EM:567/91%",
["Ormog"] = "ET:353/90%EB:495/86%EM:840/86%",
["Kandor"] = "RT:515/70%LB:640/98%LM:920/96%",
["Lúpin"] = "ET:354/89%EB:736/93%LM:946/96%",
["Emih"] = "ET:388/94%RB:552/73%EM:768/81%",
["Razilein"] = "ET:677/92%LB:757/97%LM:947/98%",
["Ghosttrader"] = "RT:498/65%EB:626/81%EM:452/76%",
["Arrethor"] = "RB:544/72%LM:965/96%",
["Boneheat"] = "LT:770/97%LB:694/97%LM:978/98%",
["Blader"] = "LT:511/96%EB:729/92%EM:883/90%",
["Nuka"] = "RT:209/69%RB:486/66%RM:372/70%",
["Dryde"] = "RB:296/65%RM:644/70%",
["Beulchen"] = "LB:758/96%LM:932/96%",
["Janko"] = "LT:627/98%EB:507/87%EM:762/80%",
["Courynn"] = "ET:240/77%LB:619/97%EM:566/91%",
["Hirnchirogue"] = "RB:487/65%RM:649/70%",
["Detectus"] = "ET:689/90%EB:694/93%LM:796/97%",
["Aubanan"] = "ET:244/78%EB:729/93%EM:912/94%",
["Jodie"] = "EB:741/93%EM:874/90%",
["Dracarys"] = "EB:701/93%EM:898/93%",
["Moshok"] = "ET:273/82%EB:582/92%EM:758/94%",
["Jalah"] = "ET:325/89%EB:743/93%",
["Ziev"] = "ET:247/77%RB:468/63%RM:597/64%",
["Glitchy"] = "UT:269/40%EB:631/80%LM:935/96%",
["Nyz"] = "LT:762/96%LB:777/97%LM:938/96%",
["Soelchen"] = "RT:181/64%RB:548/70%RM:553/59%",
["Braut"] = "LB:755/95%LM:980/98%",
["Splintar"] = "ET:366/94%LB:736/95%EM:777/83%",
["Hatsu"] = "RT:423/57%LB:650/96%EM:728/93%",
["Tallana"] = "RB:419/57%RM:507/57%",
["Jugobetrugo"] = "LB:774/97%SM:1027/99%",
["Goldam"] = "LT:592/97%RB:342/70%RM:515/57%",
["Steek"] = "UT:255/34%RB:532/71%EM:529/83%",
["Fordham"] = "ET:281/83%RB:578/74%EM:801/83%",
["Lysandra"] = "ST:744/99%LB:750/95%LM:954/96%",
["Slackosh"] = "RT:146/51%EB:598/78%RM:682/72%",
["Clayton"] = "LT:479/96%EB:437/82%EM:532/84%",
["Zamboni"] = "UT:99/36%EB:603/79%EM:755/79%",
["Biobär"] = "ET:511/90%LB:625/98%EM:851/94%",
["Haraldt"] = "ET:693/91%LB:771/97%LM:941/95%",
["Marikus"] = "RT:163/57%UB:309/43%CM:106/13%",
["Prottalotta"] = "CT:40/11%CB:178/20%",
["Bambusel"] = "UT:149/47%RB:328/65%RM:239/56%",
["Suimumbles"] = "CB:133/15%UM:385/41%",
["Herrblau"] = "CB:151/16%UM:140/40%",
["Thjorgar"] = "RT:206/67%RB:470/69%UM:387/46%",
["Khalmor"] = "RB:381/64%RM:594/74%",
["Simpleheal"] = "RB:362/51%RM:617/68%",
["Zintu"] = "EB:710/94%EM:825/88%",
["Foks"] = "CT:0/3%EB:448/86%RM:483/65%",
["Britta"] = "RT:339/72%EB:566/83%EM:639/80%",
["Fêly"] = "CB:123/13%RM:632/67%",
["Plantschkuh"] = "RT:184/61%EB:642/87%EM:882/93%",
["Malfura"] = "UB:152/40%EM:449/82%",
["Shikazy"] = "RB:320/71%RM:581/68%",
["Drulux"] = "UB:290/37%RM:456/73%",
["Slayér"] = "CB:28/0%UM:63/38%",
["Palamir"] = "UT:118/41%CB:82/18%",
["Fräuleinlu"] = "UB:354/49%UM:378/45%",
["Vince"] = "CT:43/5%CB:78/21%UM:395/43%",
["Phurba"] = "UT:43/41%CB:76/7%CM:194/22%",
["Kirao"] = "CB:40/2%",
["Doozy"] = "CB:51/3%UM:90/28%",
["Arvyn"] = "RB:258/61%EM:365/75%",
["Xzenya"] = "CB:44/2%CM:47/14%",
["Miraculee"] = "RT:553/72%EB:430/85%RM:237/61%",
["Keliandra"] = "CT:31/3%RB:524/73%EM:457/81%",
["Temarie"] = "UB:62/46%RM:301/66%",
["Farsighted"] = "CT:123/13%RM:259/60%",
["Vogel"] = "ET:337/77%EB:626/90%EM:694/85%",
["Jayc"] = "RB:454/62%RM:500/55%",
["Blyssy"] = "EB:517/79%EM:679/81%",
["Denarius"] = "ET:390/94%EB:676/92%EM:821/92%",
["Thrun"] = "ET:486/85%EB:530/82%EM:542/87%",
["Yinxy"] = "EB:656/90%EM:771/88%",
["Besker"] = "RB:331/70%RM:440/72%",
["Wegdabinarzt"] = "RB:359/66%RM:306/58%",
["Kuharantäne"] = "UB:304/41%RM:598/66%",
["Zirula"] = "RM:216/53%",
["Merlia"] = "CB:79/20%CM:29/1%",
["Unglaublich"] = "RB:388/69%RM:538/74%",
["Koely"] = "RT:364/73%EB:530/81%EM:654/92%",
["Ellee"] = "ET:544/88%EB:670/92%LM:755/96%",
["Mizuiro"] = "CB:128/14%",
["Alizée"] = "UT:61/47%EB:376/80%EM:604/90%",
["Neoxtreem"] = "CT:39/10%CB:43/2%EM:717/76%",
["Magnificent"] = "ET:234/89%LB:553/95%EM:550/92%",
["Sumpfregen"] = "ET:334/89%RB:321/61%",
["Morticana"] = "RT:116/50%EB:336/76%RM:456/68%",
["Erdoras"] = "RM:446/53%",
["Drumcode"] = "ET:523/84%LB:608/95%LM:887/95%",
["Metasploît"] = "LT:549/98%EB:722/94%LM:952/97%",
["Flamuur"] = "ET:245/78%EB:515/79%EM:556/88%",
["Culsu"] = "LT:568/97%EB:693/93%LM:770/96%",
["Xardis"] = "RT:379/72%EB:635/89%EM:868/94%",
["Rincewald"] = "UT:143/45%CB:167/19%UM:385/45%",
["Broxxa"] = "LT:469/96%EB:465/84%EM:683/92%",
["Ieyasu"] = "RT:207/70%EB:656/84%EM:767/81%",
["Hearne"] = "RT:171/62%LB:775/97%EM:897/92%",
["Morien"] = "ET:330/86%EB:633/82%RM:537/55%",
["Chihira"] = "ET:272/79%EB:594/93%EM:924/94%",
["Errorclone"] = "ET:238/76%EB:492/87%EM:546/85%",
["Grenzwertig"] = "LT:448/95%EB:592/93%LM:919/95%",
["Vegrah"] = "CT:143/23%RB:233/54%RM:292/65%",
["Vaanni"] = "ET:350/90%EB:683/91%EM:884/94%",
["Tabberjoe"] = "ET:364/91%EB:461/84%RM:629/69%",
["Polyamor"] = "LT:687/95%EB:707/94%LM:941/98%",
["Nexiun"] = "RT:198/66%RB:558/74%RM:563/58%",
["Thesa"] = "ET:661/87%LB:697/97%EM:861/88%",
["Nevele"] = "UT:208/28%EB:398/79%UM:200/49%",
["Lincon"] = "ET:640/84%EB:621/85%EM:676/80%",
["Tubby"] = "ET:339/90%RB:475/66%EM:439/79%",
["Xenethor"] = "LT:570/97%EB:610/79%EM:861/89%",
["Kamil"] = "UT:117/45%EB:614/80%EM:758/82%",
["Herrinsonja"] = "ET:602/79%EB:639/83%EM:571/86%",
["Miyon"] = "RT:246/74%EB:611/79%EM:754/78%",
["Äggi"] = "RT:405/53%RB:351/72%EM:454/79%",
["Feuerdämon"] = "RT:454/64%EB:716/92%EM:889/92%",
["Kræck"] = "ET:257/80%EB:475/85%EM:703/77%",
["Bobbybolivia"] = "ET:465/82%EB:562/93%LM:920/96%",
["Davis"] = "ET:626/83%EB:699/89%EM:714/93%",
["Odisea"] = "RT:189/66%RB:387/53%EM:357/77%",
["Mccane"] = "LT:642/95%LB:584/96%LM:897/96%",
["Frontor"] = "CT:108/13%EB:623/82%EM:864/90%",
["Winchest"] = "RT:223/70%EB:428/80%EM:481/81%",
["Koti"] = "LT:731/95%LB:611/96%LM:905/95%",
["Nenastje"] = "CT:149/24%CB:35/3%UM:89/34%",
["Arano"] = "ET:476/81%EB:706/93%LM:900/95%",
["Zirro"] = "RT:464/61%EB:672/86%EM:732/76%",
["Caelum"] = "ST:645/99%LB:719/95%LM:921/98%",
["Solpert"] = "UT:239/32%EB:596/78%EM:830/87%",
["Formypeople"] = "LT:436/95%EB:376/75%RM:402/74%",
["Wildbill"] = "ET:383/91%EB:690/88%EM:653/90%",
["Arengesus"] = "UT:237/32%RB:399/55%UM:334/38%",
["Hrodberht"] = "ET:705/93%EB:677/91%LM:750/97%",
["Rumo"] = "ET:618/88%SB:733/99%LM:897/96%",
["Sowl"] = "CT:96/12%CB:80/10%UM:113/36%",
["Tharamor"] = "ET:344/93%LB:714/96%EM:566/94%",
["Prìsma"] = "ET:382/94%EB:654/92%EM:569/79%",
["Garathor"] = "ET:634/92%EB:700/94%LM:874/98%",
["Nuculdru"] = "LT:575/98%SB:778/99%LM:708/95%",
["Ayamiko"] = "ET:304/93%EB:670/93%LM:901/96%",
["Dreijhoof"] = "ET:694/92%LB:733/95%EM:506/91%",
["Noremi"] = "ET:268/84%EB:688/91%EM:852/92%",
["Impyviduell"] = "ET:610/86%EB:692/92%EM:858/92%",
["Sisto"] = "RT:461/61%EB:701/90%LM:783/97%",
["Dyane"] = "CT:66/24%EB:720/91%LM:921/95%",
["Totgêlabert"] = "RT:216/71%EB:691/87%EM:868/89%",
["Okeeke"] = "ET:253/77%EB:717/90%EM:872/90%",
["Asjira"] = "ET:307/88%EB:636/86%EM:850/92%",
["Kaien"] = "RT:232/74%RB:445/60%RM:654/71%",
["Zerror"] = "LT:452/95%EB:534/89%EM:554/85%",
["Alditalk"] = "LT:529/97%EB:493/86%RM:666/72%",
["Skoj"] = "EB:634/80%EM:858/88%",
["Meatboypizza"] = "LT:783/98%LB:772/97%LM:947/97%",
["Fated"] = "EB:615/85%EM:632/76%",
["Ironstier"] = "ET:270/83%RB:508/68%EM:780/84%",
["Pinz"] = "RT:473/64%EB:619/79%EM:888/91%",
["Multipass"] = "RT:182/68%LB:584/95%EM:377/84%",
["Baldar"] = "ET:625/84%LB:780/97%EM:867/91%",
["Unvorhanden"] = "ET:363/94%LB:765/97%LM:888/95%",
["Sereny"] = "ET:652/84%EB:613/80%EM:615/87%",
["Swâts"] = "ET:347/91%RB:533/71%RM:454/53%",
["Honeybal"] = "RB:486/64%RM:525/60%",
["Delaix"] = "ET:665/87%EB:705/94%LM:970/98%",
["Wugli"] = "RT:147/55%RB:351/73%EM:736/78%",
["Dorocan"] = "LT:622/98%LB:787/98%SM:948/99%",
["Ellén"] = "ET:538/80%EB:630/81%EM:397/85%",
["Nöggeltje"] = "EB:619/79%EM:837/86%",
["Silras"] = "RB:447/61%UM:394/41%",
["Idiamir"] = "EB:653/82%EM:850/88%",
["Kalmi"] = "ET:321/88%EB:745/94%EM:914/93%",
["Drtrollwut"] = "EB:690/89%LM:973/98%",
["Zkul"] = "LT:438/96%RB:524/70%EM:695/93%",
["Lovecraft"] = "ST:725/99%EB:590/93%EM:800/84%",
["Noshorty"] = "ET:661/91%LB:725/96%EM:820/92%",
["Fareli"] = "ET:404/92%EB:746/94%LM:958/97%",
["Apéxs"] = "LT:493/97%LB:757/96%EM:815/84%",
["Antiboom"] = "CT:32/2%RB:432/59%EM:758/79%",
["Amcbru"] = "EB:705/89%EM:888/91%",
["Noballz"] = "RB:534/68%EM:896/92%",
["Farmergirl"] = "EB:637/88%EM:628/76%",
["Dyyce"] = "ET:650/85%LB:640/95%EM:905/94%",
["Hexanol"] = "UT:311/42%EB:648/84%RM:389/73%",
["Missesburns"] = "ET:227/81%LB:576/95%EM:651/81%",
["Slavusp"] = "EB:609/86%EM:808/90%",
["Nêvêr"] = "RB:391/69%RM:500/67%",
["Moranta"] = "ET:620/87%LB:703/95%LM:906/97%",
["Skanzura"] = "ET:285/81%EB:401/77%EM:567/86%",
["Kuchenfee"] = "CT:10/0%CM:26/7%",
["Mucosi"] = "LT:454/96%EB:439/88%EM:664/93%",
["Psychedelicx"] = "RT:325/70%EB:647/90%LM:886/95%",
["Thyira"] = "RB:442/74%EM:745/88%",
["Kabus"] = "ET:342/89%RB:327/74%EM:709/84%",
["Røth"] = "RT:387/72%EB:635/89%EM:665/82%",
["Negated"] = "ST:697/99%LB:591/95%EM:885/94%",
["Djelemental"] = "RB:319/73%EM:855/87%",
["Hafensänger"] = "ET:565/75%EB:579/76%RM:600/62%",
["Killerfrost"] = "EB:541/76%EM:413/82%",
["Bartlbart"] = "RB:235/62%RM:541/74%",
["Alderan"] = "ET:394/92%EB:582/92%RM:711/74%",
["Shadowprayer"] = "ET:304/85%EB:673/91%EM:780/89%",
["Niale"] = "ET:259/79%RB:304/69%UM:409/44%",
["Brutalböse"] = "RB:448/61%RM:628/67%",
["Affi"] = "ET:384/92%EB:631/83%EM:745/80%",
["Landrajaan"] = "UB:205/26%CM:52/3%",
["Aresvesta"] = "ET:601/90%EB:672/92%EM:829/90%",
["Detoran"] = "RT:223/73%EB:567/91%EM:567/86%",
["Talya"] = "UT:333/46%EB:488/86%EM:751/81%",
["Hiro"] = "LT:469/97%LB:742/95%EM:883/94%",
["Olavache"] = "ET:494/75%RB:416/64%EM:414/86%",
["Cowrea"] = "ET:311/90%EB:602/87%EM:870/94%",
["Colleggta"] = "RT:156/57%LB:758/95%EM:844/87%",
["Lyath"] = "ET:667/90%LB:697/98%EM:862/93%",
["Fredy"] = "ET:477/83%EB:556/82%EM:759/86%",
["Suhljin"] = "ET:650/89%LB:768/97%LM:932/96%",
["Schmid"] = "LT:572/98%SB:797/99%SM:905/99%",
["Shiray"] = "ET:404/93%EB:699/89%EM:880/90%",
["Damagereturn"] = "RT:149/55%EB:629/81%EM:605/88%",
["Eltore"] = "LT:721/97%LB:730/96%LM:951/98%",
["Rornak"] = "RT:402/54%EB:642/84%EM:589/88%",
["Knochenbongo"] = "CT:38/6%RB:476/63%RM:630/69%",
["Merkelwave"] = "LT:528/97%EB:603/87%EM:544/90%",
["Pothy"] = "ET:658/90%EB:590/84%EM:887/94%",
["Troublemaker"] = "RT:366/50%EB:418/80%RM:655/73%",
["Ándu"] = "UT:260/35%RB:515/71%RM:607/67%",
["Elkasozius"] = "CT:107/13%RB:258/58%RM:496/56%",
["Kupus"] = "RT:457/62%EB:691/87%EM:908/94%",
["Starsinhell"] = "RT:178/61%EB:584/77%EM:492/79%",
["Aviolae"] = "ET:309/87%EB:579/76%EM:467/80%",
["Naze"] = "UT:85/31%UB:238/31%RM:329/65%",
["Moruga"] = "ET:434/78%EB:416/86%EM:479/86%",
["Garitt"] = "ET:542/86%RB:436/73%EM:605/78%",
["Bummbum"] = "ET:346/88%RB:486/74%EM:807/90%",
["Greglug"] = "RT:449/61%EB:622/82%EM:596/88%",
["Kryptlord"] = "ET:392/91%EB:686/88%EM:437/77%",
["Fraank"] = "LT:443/95%EB:548/93%EM:850/92%",
["Vierblatt"] = "ET:658/86%EB:746/94%LM:943/95%",
["Ppilihp"] = "CT:28/4%UM:207/26%",
["Ribok"] = "RT:165/59%EB:568/75%EM:448/78%",
["Xydia"] = "ST:623/99%LB:761/98%LM:919/97%",
["Stoiker"] = "ST:736/99%EB:713/93%EM:840/92%",
["Maritzebill"] = "ET:502/85%EB:562/93%LM:886/95%",
["Hundsviech"] = "ST:691/99%SB:775/99%SM:983/99%",
["Dunjin"] = "ET:275/84%EB:677/91%EM:779/90%",
["Jinrock"] = "ET:618/91%LB:744/97%LM:750/95%",
["Nemmessiss"] = "RT:206/67%EB:621/81%RM:464/51%",
["Blackvíper"] = "ET:473/94%EB:421/83%EM:704/82%",
["Pankratz"] = "ET:298/87%EB:649/82%EM:838/87%",
["Draken"] = "LT:448/95%EB:709/93%EM:830/92%",
["Thalajar"] = "RT:174/62%EB:440/82%EM:737/78%",
["Curâre"] = "ET:483/89%EB:597/87%EM:791/92%",
["Bimo"] = "RT:243/66%EB:614/87%EM:777/87%",
["Azzitay"] = "RT:295/72%RB:268/67%RM:547/71%",
["Peyra"] = "ET:275/84%EB:705/92%LM:908/95%",
["Mod"] = "ET:492/77%EB:659/88%EM:668/86%",
["Rüm"] = "RT:163/59%RB:539/72%RM:501/58%",
["Gus"] = "ET:287/83%EB:730/92%LM:943/96%",
["Eluthien"] = "LB:754/97%SM:1000/99%",
["Ralais"] = "RT:213/72%SB:713/99%EM:626/76%",
["Uradima"] = "ET:334/87%EB:667/85%EM:803/83%",
["Lodvar"] = "RT:440/60%EB:718/94%EM:819/90%",
["Schliz"] = "RB:417/57%RM:687/74%",
["Xeroz"] = "RB:504/65%EM:846/87%",
["Sparkwhizzle"] = "EB:671/90%RM:687/71%",
["Hansvader"] = "RT:170/61%EB:715/90%EM:738/78%",
["Xelrog"] = "LT:758/96%LB:774/97%LM:803/96%",
["Suxdixlol"] = "RB:455/61%LM:928/95%",
["Fryxonhd"] = "CT:11/3%RB:500/67%RM:217/51%",
["Klondike"] = "RB:520/70%EM:702/78%",
["Deadboy"] = "LT:671/98%EB:480/85%RM:371/69%",
["Hrle"] = "EB:737/94%LM:957/97%",
["Knacker"] = "UT:299/39%RB:560/72%EM:711/75%",
["Mittelstrahl"] = "RT:540/73%EB:706/89%EM:595/88%",
["Axyneu"] = "RT:181/62%EB:630/82%RM:401/72%",
["Xidul"] = "RT:387/52%LB:757/95%LM:926/95%",
["Honeymage"] = "CT:0/1%SB:795/99%SM:925/99%",
["Fenrith"] = "EB:437/82%RM:630/67%",
["Noél"] = "ET:251/77%EB:694/88%EM:588/86%",
["Herrkoettel"] = "UT:234/31%RB:543/72%UM:437/49%",
["Sneaked"] = "RT:226/73%RB:482/65%UM:144/39%",
["Aggroplautze"] = "LT:582/98%EB:497/87%EM:722/79%",
["Atomix"] = "RB:497/64%EM:494/80%",
["Stinkschlìtz"] = "RB:534/68%EM:643/89%",
["Stumpf"] = "ET:243/77%EB:674/85%EM:843/87%",
["Celebi"] = "ET:677/89%LB:772/97%LM:951/96%",
["Aetgwyn"] = "RT:517/70%EB:727/92%EM:880/90%",
["Aurley"] = "RT:217/70%EB:549/90%LM:961/97%",
["Skelettkopf"] = "UT:100/36%EB:429/82%UM:417/47%",
["Eliot"] = "ET:599/81%EB:722/92%LM:950/96%",
["Nabenja"] = "RB:547/73%RM:646/69%",
["Skazi"] = "CT:45/5%EB:659/85%EM:824/86%",
["Nhey"] = "ET:343/89%EB:444/82%LM:889/98%",
["Førrest"] = "ET:398/94%EB:528/89%EM:711/93%",
["Brenner"] = "ST:681/99%LB:752/95%LM:952/96%",
["Anconjo"] = "ET:360/91%EB:510/88%RM:641/68%",
["Lundegaard"] = "RB:477/64%RM:332/69%",
["Stabz"] = "UB:304/41%RM:658/70%",
["Greisl"] = "UT:271/35%EB:672/86%UM:408/47%",
["Prooved"] = "LB:728/95%",
["Akína"] = "ET:342/89%EB:670/90%EM:911/94%",
["Fetzen"] = "ET:243/77%EB:475/85%LM:872/98%",
["Êêman"] = "UT:105/38%EB:599/79%EM:807/84%",
["Covidia"] = "UT:350/47%RB:401/54%EM:796/84%",
["Breadt"] = "RB:488/62%RM:543/58%",
["Furymcslam"] = "RB:435/58%CM:160/17%",
["Rumpex"] = "LT:537/97%LB:772/97%LM:712/95%",
["Arloc"] = "LT:518/97%EB:493/87%RM:667/74%",
["Zaubermaûs"] = "LT:623/98%EB:546/93%SM:915/99%",
["Kobebeef"] = "LB:778/98%SM:990/99%",
["Zornstein"] = "UT:103/40%RB:514/69%EM:418/77%",
["Schnuffl"] = "ET:644/86%RB:525/74%EM:765/82%",
["Noreal"] = "ET:358/89%EB:705/90%RM:685/73%",
["Ansa"] = "RT:414/56%EB:715/91%EM:908/93%",
["Svengali"] = "LT:583/98%EB:703/94%LM:832/98%",
["Totinnendrin"] = "ET:609/80%EB:658/85%RM:712/74%",
["Maite"] = "UT:171/27%RB:272/66%EM:768/82%",
["Ashôk"] = "UT:337/44%EB:453/83%RM:310/66%",
["Bündchen"] = "RB:292/60%EM:495/85%",
["Derpaul"] = "RT:522/69%LB:746/96%LM:850/98%",
["Superpartydj"] = "CT:0/0%RB:403/57%EM:403/81%",
["Mezumiira"] = "ET:327/88%EB:384/81%EM:795/85%",
["Evey"] = "ET:347/89%EB:676/91%EM:564/90%",
["Ghaunvyll"] = "RB:354/65%RM:498/71%",
["Sambaolek"] = "ET:394/93%EB:425/85%RM:284/69%",
["Faktastik"] = "RT:513/70%LB:732/95%LM:766/97%",
["Nehtam"] = "RB:423/59%RM:615/72%",
["Zwackel"] = "LT:450/95%LB:628/96%LM:971/98%",
["Narani"] = "RT:189/63%EB:570/76%EM:742/77%",
["Xbackshift"] = "ET:392/93%EB:746/94%EM:921/94%",
["Heexy"] = "ET:624/83%EB:596/83%EM:714/81%",
["Rattamahata"] = "LT:562/98%EB:652/88%EM:830/91%",
["Pacificò"] = "RT:309/55%EB:584/84%EM:797/90%",
["Grmpfli"] = "LT:533/97%EB:700/92%EM:575/93%",
["Cromal"] = "ET:313/88%EB:681/90%EM:737/87%",
["Sînaya"] = "ET:419/94%EB:701/94%EM:798/89%",
["Epiccruise"] = "ET:332/90%EB:668/90%EM:816/91%",
["Kharagan"] = "ET:593/86%EB:655/89%EM:729/86%",
["Bôgumil"] = "ET:395/78%EB:450/76%EM:468/83%",
["Sneakeye"] = "ET:410/94%EB:605/84%EM:544/79%",
["Dalandi"] = "LT:601/98%LB:752/96%EM:825/92%",
["Tonitrus"] = "ET:340/90%EB:568/94%EM:809/90%",
["Palmeria"] = "ET:354/92%EB:703/94%EM:808/92%",
["Laberlachs"] = "ET:684/93%LB:754/98%LM:877/96%",
["Bofen"] = "ET:394/93%EB:533/93%EM:795/90%",
["Günieul"] = "ET:605/86%EB:668/89%EM:770/88%",
["Schnaps"] = "LT:590/98%EB:474/89%EM:723/86%",
["Luthzien"] = "ET:304/85%EB:394/81%RM:338/71%",
["Malysa"] = "ET:495/75%EB:441/86%RM:392/68%",
["Eisbär"] = "ET:610/86%LB:750/96%EM:820/91%",
["Hauerhorst"] = "ET:318/89%EB:597/85%EM:621/80%",
["Bleifuß"] = "ET:646/90%EB:376/76%LM:854/96%",
["Molschi"] = "ET:299/89%EB:688/94%EM:608/82%",
["Panza"] = "ET:283/85%EB:509/91%EM:743/87%",
["Idinahuy"] = "ET:308/88%EB:568/83%EM:501/90%",
["Tbone"] = "ET:394/94%EB:488/76%EM:713/85%",
["Jaques"] = "ET:561/81%EB:603/89%EM:744/88%",
["Rekmarina"] = "ET:666/90%EB:709/92%LM:678/96%",
["Eofain"] = "LT:432/95%EB:584/82%EM:758/88%",
["Rawrity"] = "LT:451/96%LB:689/95%RM:441/68%",
["Kaldar"] = "ET:659/90%EB:555/94%EM:875/93%",
["Wambo"] = "ET:285/87%EB:645/92%EM:650/85%",
["Tronar"] = "ET:251/81%EB:604/84%EM:737/87%",
["Tanc"] = "RT:356/59%EB:367/80%RM:488/70%",
["Annette"] = "ET:247/75%EB:644/84%RM:705/73%",
["Akhorn"] = "RT:307/71%EB:446/75%EM:463/82%",
["Bruetus"] = "UT:306/41%EB:726/92%LM:948/96%",
["Alkipone"] = "LT:546/97%EB:526/89%EM:835/87%",
["Sinnestra"] = "RB:272/61%RM:478/54%",
["Sandreas"] = "ET:416/93%LB:765/97%LM:939/96%",
["Wara"] = "ET:414/94%LB:760/96%EM:901/93%",
["Relaigh"] = "ET:620/81%EB:724/92%LM:827/97%",
["Thaklor"] = "EB:658/89%EM:887/92%",
["Skaði"] = "LT:522/96%LB:780/98%LM:965/97%",
["Síck"] = "ET:332/87%EB:654/84%EM:848/87%",
["Zorander"] = "RB:567/72%EM:764/80%",
["Snips"] = "UT:232/34%EB:565/75%RM:665/71%",
["Blueffcecil"] = "EB:636/81%RM:617/66%",
["Kairu"] = "RB:485/62%RM:337/67%",
["Zukh"] = "LT:439/95%LB:747/96%EM:864/94%",
["Gromý"] = "UT:154/25%RB:470/59%EM:792/83%",
["Bjorndal"] = "ET:335/89%EB:504/87%EM:608/88%",
["Tankina"] = "ET:724/94%EB:728/94%LM:935/96%",
["Xmile"] = "UT:88/35%EB:639/81%EM:470/81%",
["Toazamy"] = "ET:581/92%EB:491/93%EM:858/94%",
["Trionistwo"] = "UT:119/43%EB:579/76%EM:773/82%",
["Tenehuînî"] = "EB:739/93%EM:856/88%",
["Insgsîcht"] = "ET:316/86%EB:545/90%EM:770/94%",
["Tyralio"] = "ET:636/84%LB:666/96%EM:667/91%",
["Atomork"] = "EB:518/89%RM:635/68%",
["Vielzudicht"] = "UT:95/34%EB:696/89%RM:393/74%",
["Insphektor"] = "CT:179/23%EB:685/87%EM:871/89%",
["Blackstep"] = "UT:299/40%EB:666/84%EM:659/90%",
["Schweigix"] = "ET:600/85%LB:755/96%LM:768/97%",
["Vela"] = "ET:356/91%RB:512/66%EM:713/76%",
["Nafatha"] = "RB:554/71%EM:798/83%",
["Norgzer"] = "LB:753/95%EM:896/93%",
["Xardash"] = "UT:339/45%EB:434/81%UM:208/49%",
["Barbon"] = "EB:595/76%EM:858/88%",
["Tarte"] = "RB:402/53%UM:333/39%",
["Maladyy"] = "EB:698/92%EM:715/78%",
["Lakone"] = "RB:538/69%EM:865/89%",
["Knowme"] = "LT:572/97%EB:426/80%RM:623/67%",
["Dirodan"] = "EB:701/92%LM:911/95%",
["Xisin"] = "CT:32/7%RB:522/67%EM:473/78%",
["Váryx"] = "CT:79/9%UB:334/45%UM:429/49%",
["Arterion"] = "RB:537/72%RM:530/59%",
["Leelóo"] = "RT:153/61%RB:510/68%RM:429/65%",
["Aquid"] = "EB:651/84%EM:742/80%",
["Davebrown"] = "ET:295/85%EB:715/94%EM:811/86%",
["Yarakobama"] = "LB:772/97%LM:952/97%",
["Iineah"] = "EB:618/81%EM:394/80%",
["Sully"] = "ET:355/91%LB:773/97%EM:895/93%",
["Vahnhehe"] = "LT:517/97%LB:616/96%LM:897/96%",
["Alforno"] = "ET:260/81%RB:497/67%RM:276/63%",
["Pocketrocket"] = "EB:628/82%UM:367/42%",
["Kastenkopf"] = "UT:91/36%RB:215/51%EM:712/78%",
["Kyerix"] = "LT:628/98%EB:502/87%EM:754/81%",
["Frostiny"] = "UT:75/28%EB:718/92%EM:886/92%",
["Wrathjunky"] = "CT:41/9%RB:366/63%EM:458/80%",
["Alodi"] = "CT:79/14%EB:546/77%EM:432/83%",
["Cupymage"] = "RT:199/68%EB:608/84%EM:405/81%",
["Fayna"] = "EB:597/79%RM:260/66%",
["Finali"] = "CB:152/20%UM:145/48%",
["Fâcemeltor"] = "RB:316/62%RM:299/58%",
["Sdoggydog"] = "UT:125/44%RB:455/59%EM:767/80%",
["Voodon"] = "CT:63/23%EB:394/81%EM:529/86%",
["Yaely"] = "EB:719/94%EM:766/88%",
["Rogjin"] = "UT:231/33%RB:555/71%RM:642/69%",
["Doomhead"] = "LT:459/95%EB:390/76%EM:767/81%",
["Sue"] = "LT:639/98%LB:635/95%LM:955/97%",
["Siare"] = "EB:666/84%EM:811/84%",
["Hackk"] = "ET:281/83%EB:611/94%SM:923/99%",
["Popoblanko"] = "RB:561/74%RM:590/66%",
["Sumii"] = "ET:686/89%EB:702/89%EM:785/81%",
["Bullero"] = "ET:250/80%RB:509/68%EM:448/79%",
["Skyler"] = "ET:714/92%EB:742/94%EM:900/92%",
["Skylink"] = "ET:354/91%RB:534/71%RM:539/58%",
["Broell"] = "ET:350/88%EB:705/90%EM:766/80%",
["Oopsie"] = "ET:247/78%LB:758/95%EM:904/92%",
["Hauer"] = "UT:333/43%RB:288/63%RM:702/74%",
["Absolons"] = "LT:515/97%EB:621/79%EM:798/83%",
["Lakasuka"] = "EB:398/79%EM:801/83%",
["Xandose"] = "RT:225/71%EB:506/87%EM:859/89%",
["Alphatier"] = "RT:187/66%RB:71/67%RM:541/58%",
["Fourhaut"] = "LT:602/98%EB:590/78%EM:727/77%",
["Mufudi"] = "UT:192/29%EB:708/89%EM:875/90%",
["Marischka"] = "RT:156/54%EB:463/84%EM:698/91%",
["Mindlor"] = "LB:755/95%EM:892/91%",
["Muhrmel"] = "RT:494/67%EB:465/84%EM:817/85%",
["Yogi"] = "ET:267/81%RB:466/63%RM:580/62%",
["Xeraya"] = "CT:116/20%LB:607/96%EM:826/87%",
["Asril"] = "RT:146/51%RB:513/66%RM:411/74%",
["Ontaria"] = "ST:632/99%LB:611/97%EM:773/83%",
["Itschy"] = "EB:624/79%EM:733/77%",
["Drotor"] = "RB:453/61%RM:624/67%",
["Cheap"] = "RT:552/72%LB:709/97%EM:800/83%",
["Grisuu"] = "RT:180/64%RB:551/70%RM:256/59%",
["Xeng"] = "ET:373/92%EB:680/87%EM:724/79%",
["Bady"] = "SB:794/99%SM:1001/99%",
["Mahan"] = "RT:528/70%EB:739/94%EM:845/92%",
["Keji"] = "EB:719/94%LM:956/97%",
["Tinjo"] = "RT:149/55%EB:518/92%EM:780/87%",
["Soru"] = "ET:716/92%EB:736/93%EM:834/86%",
["Gnomaxi"] = "RT:503/74%EB:657/89%EM:827/87%",
["Rastafury"] = "LT:538/97%LB:753/95%LM:936/95%",
["Yufi"] = "ET:361/91%EB:647/88%EM:777/83%",
["Grizella"] = "ET:655/86%EB:704/90%EM:681/92%",
["Nesky"] = "ET:730/93%EB:745/94%EM:903/93%",
["Melonamin"] = "RT:191/66%EB:648/83%EM:628/89%",
["Cêlsiûs"] = "UT:73/27%RB:472/63%RM:651/71%",
["Genzora"] = "EB:516/79%EM:631/80%",
["Drudivöller"] = "ET:259/84%LB:691/95%EM:744/90%",
["Mattsn"] = "ET:281/80%RB:281/62%EM:528/84%",
["Taurinho"] = "ET:553/75%EB:660/86%EM:809/84%",
["Jokar"] = "ET:409/93%EB:745/94%EM:897/92%",
["Severan"] = "ET:706/93%EB:731/94%LM:965/98%",
["Mithnar"] = "UT:91/35%RB:451/64%UM:413/44%",
["Gehrlein"] = "RT:210/57%RB:308/72%EM:628/91%",
["Docius"] = "ET:733/94%LB:765/97%LM:888/95%",
["Hylasia"] = "RT:149/52%EB:641/83%EM:805/83%",
["Nosfeardotu"] = "EB:597/79%RM:680/71%",
["Vôllpfosten"] = "RB:215/55%RM:356/72%",
["Sannek"] = "ET:371/92%EB:710/93%LM:638/95%",
["Kyuu"] = "UB:267/37%RM:192/56%",
["Accuracy"] = "ET:720/92%LB:750/95%EM:863/90%",
["Dennio"] = "EB:580/76%RM:552/61%",
["Knochenotto"] = "UT:64/25%RB:486/65%EM:433/78%",
["Fornax"] = "RT:140/69%EB:678/92%LM:909/96%",
["Xandria"] = "EB:749/94%EM:929/94%",
["Gschmariah"] = "ET:430/94%LB:749/95%LM:844/97%",
["Tryxie"] = "ET:567/82%EB:512/92%EM:792/84%",
["Henfried"] = "EB:439/83%EM:738/79%",
["Soyboy"] = "RB:501/64%EM:473/79%",
["Mangelware"] = "RT:536/72%EB:731/92%EM:819/87%",
["Werac"] = "UB:310/42%EM:799/83%",
["Lihn"] = "CT:114/14%EB:572/76%RM:484/51%",
["Khork"] = "LT:555/97%EB:596/93%LM:811/96%",
["Kazhar"] = "RT:514/70%LB:669/96%EM:636/90%",
["Fexxw"] = "UT:71/28%EB:444/83%RM:626/70%",
["Nympedora"] = "RB:545/73%RM:471/53%",
["Nowai"] = "ET:637/83%EB:701/89%EM:923/94%",
["Treach"] = "RT:180/64%LB:750/95%LM:973/98%",
["Piskos"] = "RT:508/69%EB:726/92%LM:932/95%",
["Knoko"] = "RT:188/66%RB:542/72%EM:677/75%",
["Cicillia"] = "LT:526/96%EB:729/92%LM:759/95%",
["Armstr"] = "CT:33/7%UB:338/46%CM:171/21%",
["Deriah"] = "UT:72/27%EB:731/93%EM:679/92%",
["Snêak"] = "ET:292/83%EB:557/91%EM:736/93%",
["Legas"] = "RT:154/57%EB:572/76%RM:569/65%",
["Wkek"] = "RB:354/73%EM:496/80%",
["Shandu"] = "LT:452/95%EB:689/92%EM:841/89%",
["Cleanix"] = "CT:49/15%RB:472/64%EM:742/79%",
["Druggler"] = "LB:772/97%LM:938/95%",
["Bersigil"] = "UT:134/48%RB:289/64%EM:790/82%",
["Hodenmieder"] = "EB:497/87%RM:390/71%",
["Reboon"] = "EB:669/84%EM:911/93%",
["Owon"] = "ET:334/88%EB:527/89%EM:662/90%",
["Wesleysnîpes"] = "ET:634/85%LB:789/98%LM:974/98%",
["Züran"] = "ET:610/81%EB:678/86%EM:896/93%",
["Garruu"] = "ET:236/76%RB:503/67%EM:825/86%",
["Rizin"] = "LT:607/98%EB:676/86%LM:844/97%",
["Sherok"] = "UT:198/26%RB:261/59%RM:578/64%",
["Bâstî"] = "CT:136/17%EB:706/89%EM:794/82%",
["Mvbaam"] = "ET:705/91%EB:579/92%EM:873/92%",
["Surprisex"] = "RB:493/67%RM:703/74%",
["Dolchinosch"] = "ET:397/93%RB:530/71%RM:679/73%",
["Sindaviel"] = "ET:353/90%EB:731/93%EM:706/93%",
["Haqu"] = "RB:370/50%RM:600/64%",
["Sahiqua"] = "RT:209/71%EB:456/85%RM:582/66%",
["Nerzu"] = "ET:372/92%EB:574/92%LM:841/97%",
["Shîori"] = "RB:457/65%EM:441/84%",
["Laxig"] = "ET:448/94%EB:456/83%EM:644/90%",
["Anela"] = "ET:292/84%EB:623/86%EM:845/89%",
["Hazelhoff"] = "ET:485/82%LB:739/96%LM:935/97%",
["Phynoxia"] = "RT:178/63%EB:531/76%EM:475/83%",
["Athacore"] = "UB:280/38%EM:754/81%",
["Bombship"] = "RB:358/51%EM:410/82%",
["Nobunaga"] = "CT:0/2%RB:391/55%EM:751/81%",
["Zulyafi"] = "ET:303/86%RB:329/69%EM:526/84%",
["Sinnix"] = "ET:291/86%EB:552/82%EM:713/85%",
["Moiniom"] = "RT:299/67%EB:494/78%EM:533/75%",
["Zotty"] = "UT:312/40%EB:527/93%EM:644/93%",
["Kysa"] = "RB:296/59%RM:506/71%",
["Suppendose"] = "UB:209/28%UM:322/33%",
["Stoffreste"] = "UT:95/44%EB:435/86%RM:171/52%",
["Mürrisch"] = "UT:112/40%EB:431/82%EM:859/89%",
["Lixa"] = "CT:29/2%EB:555/79%EM:594/78%",
["Korvain"] = "UT:124/47%RB:485/65%EM:576/88%",
["Lorthel"] = "ET:555/77%LB:763/96%EM:804/84%",
["Chubchub"] = "EB:688/92%EM:827/91%",
["Ethna"] = "RT:424/60%EB:686/88%LM:948/96%",
["Otti"] = "ET:228/78%LB:750/96%LM:928/96%",
["Viersieben"] = "ST:734/99%EB:685/88%EM:845/87%",
["Vollschaden"] = "RB:490/66%EM:600/89%",
["Pp"] = "ET:263/83%EB:678/90%LM:961/98%",
["Envy"] = "EB:531/93%LM:806/97%",
["Furukama"] = "ET:368/92%EB:546/78%EM:274/77%",
["Zinthos"] = "EB:692/87%LM:933/95%",
["Shotsfired"] = "EB:690/89%EM:810/86%",
["Ðeluxe"] = "RT:217/72%RB:444/67%RM:386/73%",
["Mahagonidude"] = "CT:104/18%RB:429/58%EM:427/78%",
["Duschvorhâng"] = "ET:373/94%LB:723/97%EM:809/93%",
["Takuma"] = "RB:511/66%EM:836/86%",
["Xaverl"] = "LT:554/97%LB:743/98%EM:911/93%",
["Isicheesy"] = "ET:649/85%LB:754/95%EM:881/90%",
["Hagalo"] = "EB:360/75%RM:612/69%",
["Jaymi"] = "RT:558/74%EB:706/93%LM:713/95%",
["Goldsgym"] = "EB:612/80%RM:543/62%",
["Anthunalehm"] = "EB:681/86%EM:872/90%",
["Kayaa"] = "CT:179/24%EB:724/91%EM:895/91%",
["Ropold"] = "ET:351/94%LB:753/96%EM:840/88%",
["Absurde"] = "RT:136/51%EB:647/84%EM:845/89%",
["Bulworc"] = "RT:386/50%EB:583/77%EM:480/78%",
["Chtonian"] = "RT:200/73%RB:299/55%EM:822/91%",
["Scotsman"] = "RT:216/72%LB:775/98%LM:957/97%",
["Ayriz"] = "UT:119/43%UB:285/38%UM:416/47%",
["Zipi"] = "ET:393/93%RB:360/74%RM:698/74%",
["Arxôn"] = "CT:114/14%RB:501/64%RM:590/63%",
["Slisi"] = "ET:358/90%LB:570/95%SM:978/99%",
["Kâtelynn"] = "UT:245/32%LB:759/96%EM:866/90%",
["Hoopster"] = "UT:261/36%EB:678/87%EM:846/87%",
["Zokis"] = "RT:394/57%RB:319/69%UM:341/40%",
["Todvonunten"] = "EB:614/78%EM:742/78%",
["Xselsior"] = "RT:393/52%EB:688/92%EM:375/79%",
["Urkajin"] = "LT:747/95%LB:758/96%SM:945/99%",
["Punko"] = "LT:456/95%LB:686/97%LM:762/95%",
["Bloodstain"] = "ET:397/93%EB:471/85%EM:716/93%",
["Arakly"] = "EB:733/92%LM:934/95%",
["Agilarius"] = "UT:316/44%LB:754/95%EM:905/92%",
["Crazykrass"] = "CT:137/22%RB:421/56%RM:383/74%",
["Totter"] = "LT:508/96%EB:405/78%RM:654/70%",
["Frucht"] = "RB:537/68%EM:875/92%",
["Antharos"] = "EB:659/93%EM:512/77%",
["Warnke"] = "RB:538/69%EM:751/79%",
["Sheepbomb"] = "ET:305/85%LB:748/95%EM:784/84%",
["Lorex"] = "RT:210/71%RB:491/73%EM:873/93%",
["Solvex"] = "ET:241/77%EB:605/94%LM:748/95%",
["Gwynewere"] = "LT:533/97%LB:766/96%LM:971/98%",
["Sewira"] = "UB:148/38%UM:117/37%",
["Junglio"] = "LT:469/96%LB:699/95%",
["Crosos"] = "LT:467/95%LB:766/96%LM:945/96%",
["Entwine"] = "EB:579/77%EM:536/89%",
["Hellcrit"] = "UB:192/26%UM:270/27%",
["Roone"] = "LT:511/97%EB:653/88%EM:847/92%",
["Jûn"] = "CT:6/7%RB:452/64%CM:176/17%",
["Bcuba"] = "LT:442/95%LB:704/98%LM:948/97%",
["Remuf"] = "ET:347/89%EB:501/88%EM:754/78%",
["Donnygg"] = "ET:319/86%EB:512/89%LM:931/95%",
["Stubeh"] = "ET:430/94%LB:757/95%EM:855/88%",
["Totemchamun"] = "RT:265/65%RB:393/66%UM:298/49%",
["Xyrack"] = "RB:281/57%EM:614/79%",
["Opfergnom"] = "LT:740/95%LB:760/96%LM:940/96%",
["Xirigo"] = "RT:192/67%EB:578/76%EM:837/88%",
["Mamamia"] = "LT:488/96%LB:655/97%SM:872/99%",
["Uruoth"] = "EB:341/76%EM:642/75%",
["Frozenlich"] = "UB:114/32%UM:136/46%",
["Ilave"] = "RB:506/72%RM:619/73%",
["Fuhu"] = "EB:638/83%EM:448/78%",
["Mijke"] = "ET:327/88%EB:424/84%EM:676/79%",
["Jôsh"] = "LT:738/95%LB:639/97%EM:883/94%",
["Boyle"] = "UT:95/35%UB:353/44%RM:642/70%",
["Huguz"] = "CT:31/13%EB:634/83%EM:682/79%",
["Serhji"] = "ET:394/93%RB:216/51%RM:639/68%",
["Kazmir"] = "RT:160/58%EB:618/85%EM:786/84%",
["Lioba"] = "LB:771/97%EM:923/93%",
["Holysatan"] = "EB:729/92%EM:883/90%",
["Delayar"] = "ET:355/89%EB:648/83%EM:893/92%",
["Derulo"] = "ET:634/83%LB:757/95%EM:661/91%",
["Tantolus"] = "ET:601/90%LB:767/98%EM:848/93%",
["Suruat"] = "ST:787/99%SB:807/99%LM:915/97%",
["Äsnödt"] = "LT:650/98%EB:661/90%EM:844/89%",
["Cúthalion"] = "EB:720/91%EM:908/92%",
["Sopey"] = "ET:706/91%EB:739/94%LM:964/97%",
["Indawood"] = "UB:358/49%UM:244/29%",
["Angús"] = "UT:349/45%EB:591/78%EM:440/75%",
["Hoedur"] = "RT:178/61%RB:497/67%EM:555/84%",
["Ugol"] = "ET:396/93%EB:715/94%EM:834/88%",
["Trudoom"] = "RT:135/51%EB:568/75%RM:242/57%",
["Spultes"] = "EB:678/87%EM:539/85%",
["Hinterhulk"] = "ET:568/78%EB:733/92%EM:822/85%",
["Obîlee"] = "EB:710/90%EM:882/90%",
["Azorka"] = "LT:745/96%LB:758/97%LM:778/98%",
["Zodn"] = "ET:239/76%EB:720/91%EM:901/92%",
["Mimuntus"] = "CT:70/24%UB:253/33%RM:216/50%",
["Archíe"] = "ET:598/80%EB:702/90%EM:814/86%",
["Ähmwouldyou"] = "EB:637/82%EM:725/77%",
["Tandris"] = "ST:698/99%EB:584/92%EM:914/94%",
["Donutmaker"] = "ET:348/91%LB:765/96%EM:888/92%",
["Vreymor"] = "RB:566/72%UM:454/48%",
["Bulwaj"] = "RT:493/65%EB:710/90%EM:875/90%",
["Arrowy"] = "LT:614/98%EB:743/94%EM:707/93%",
["Somberlain"] = "LT:510/96%EB:492/86%RM:648/69%",
["Swazzy"] = "UB:353/46%RM:732/68%",
["Machtigall"] = "ET:649/85%EB:709/90%EM:804/83%",
["Nargossa"] = "ET:312/87%UB:364/49%RM:570/61%",
["Jaile"] = "LT:614/98%EB:551/93%LM:772/97%",
["Tdask"] = "EB:624/81%RM:559/60%",
["Restless"] = "EB:599/76%RM:692/73%",
["Doomtrooper"] = "LT:539/96%EB:693/88%RM:636/66%",
["Heftiger"] = "RT:460/64%EB:585/77%",
["Burníe"] = "EB:551/78%RM:624/69%",
["Drahnoel"] = "ET:308/94%EB:702/94%EM:788/91%",
["Dipilor"] = "RT:289/53%EB:739/93%EM:891/91%",
["Eispixel"] = "ET:289/84%LB:740/95%LM:689/95%",
["Azuk"] = "EB:617/80%EM:603/86%",
["Weindoch"] = "RT:174/60%RB:276/61%RM:365/69%",
["Snake"] = "ET:337/89%LB:754/95%LM:940/96%",
["Dralmuh"] = "RB:313/67%UM:272/32%",
["Pradox"] = "ST:736/99%LB:695/97%EM:721/93%",
["Croq"] = "ET:358/89%EB:630/81%EM:913/93%",
["Madmäx"] = "EB:640/81%EM:838/86%",
["Hilux"] = "RB:443/59%UM:449/49%",
["Trâfalgar"] = "EB:538/82%EM:754/88%",
["Deathlinê"] = "EB:565/75%EM:808/86%",
["Brotspende"] = "EB:568/80%EM:735/84%",
["Grulli"] = "ET:251/75%RB:480/63%RM:600/59%",
["Dogblood"] = "ET:387/92%RB:494/67%UM:423/47%",
["Slarok"] = "LT:578/98%EB:508/92%EM:803/90%",
["Zoos"] = "LT:743/96%EB:698/92%LM:743/97%",
["Aidoneos"] = "RB:356/50%UM:351/37%",
["Cheos"] = "RT:138/51%RB:307/72%RM:607/67%",
["Dingyo"] = "UB:305/42%RM:201/58%",
["Âlp"] = "LT:502/95%EB:691/88%EM:784/81%",
["Masha"] = "EB:570/75%EM:402/81%",
["Myristica"] = "ET:344/90%LB:572/95%LM:900/95%",
["Lavin"] = "UT:134/49%EB:642/87%EM:815/86%",
["Moobit"] = "ET:372/94%LB:584/95%LM:923/97%",
["Marchiata"] = "RT:159/55%UB:177/44%RM:281/62%",
["Sarevock"] = "ET:268/83%EB:643/89%EM:626/90%",
["Reàper"] = "ET:320/86%EB:620/81%RM:656/70%",
["Silverluxus"] = "UB:246/30%UM:345/41%",
["Evìan"] = "CT:52/23%EB:621/81%RM:509/56%",
["Strackle"] = "RT:389/53%EB:714/91%RM:390/73%",
["Xerberos"] = "ET:272/83%EB:412/84%RM:582/64%",
["Andras"] = "ET:461/94%EB:513/88%EM:532/84%",
["Dragir"] = "RT:167/58%RB:313/66%EM:441/75%",
["Nyawen"] = "EB:705/90%EM:723/78%",
["Naivety"] = "LT:481/96%EB:556/91%EM:695/84%",
["Ilorian"] = "UB:212/28%CM:113/14%",
["Jöl"] = "ET:728/93%LB:789/98%LM:986/98%",
["Sodani"] = "ET:239/80%EB:650/89%LM:903/95%",
["Jagonator"] = "EB:695/89%RM:571/63%",
["Xerophos"] = "UT:89/35%RB:505/64%RM:256/60%",
["Zarokh"] = "RB:455/61%RM:341/65%",
["Kiksuya"] = "ET:236/77%EB:590/75%EM:808/84%",
["Âra"] = "LT:572/97%EB:720/93%EM:854/92%",
["Mograjn"] = "EB:671/92%EM:691/88%",
["Wonka"] = "ET:324/89%EB:491/86%EM:797/83%",
["Boldro"] = "RB:246/56%CM:118/15%",
["Cânyôûsêêmê"] = "CT:131/16%RB:547/70%RM:212/50%",
["Brangh"] = "EB:378/77%RM:368/72%",
["Jumple"] = "EB:703/93%LM:961/98%",
["Mooze"] = "ET:268/80%EB:705/90%EM:860/89%",
["Kenafina"] = "RB:266/59%RM:346/67%",
["Rooster"] = "ET:415/94%EB:701/92%EM:797/90%",
["Creeptix"] = "RB:440/64%RM:283/69%",
["Thex"] = "UB:270/36%UM:452/48%",
["Mcintyre"] = "ET:542/86%LB:735/96%LM:915/96%",
["Killerfrog"] = "RT:238/74%EB:572/76%RM:690/72%",
["Foxel"] = "RT:189/64%EB:439/81%EM:491/79%",
["Trubel"] = "UB:234/28%RM:514/55%",
["Rottenbeef"] = "RT:173/62%EB:409/79%EM:630/89%",
["Shizad"] = "ET:420/93%EB:748/94%LM:950/96%",
["Ziaschii"] = "ET:398/93%LB:661/97%EM:793/85%",
["Flötensolo"] = "CT:43/13%RB:374/50%RM:213/50%",
["Bodkavull"] = "RB:478/60%EM:851/88%",
["Corak"] = "ET:286/83%EB:698/89%EM:830/87%",
["Grennqt"] = "ET:302/86%EB:676/86%EM:769/83%",
["Baji"] = "EB:691/87%EM:903/92%",
["Rky"] = "RB:410/52%RM:469/50%",
["Osak"] = "EB:649/84%EM:682/91%",
["Rourke"] = "EB:744/94%LM:928/95%",
["Karuk"] = "LT:464/95%EB:542/90%RM:607/66%",
["Merion"] = "ET:587/79%EB:613/80%EM:560/86%",
["Krayziebone"] = "UT:248/33%EB:694/89%EM:882/92%",
["Perga"] = "LT:516/96%EB:702/93%EM:912/94%",
["Neshø"] = "EB:743/93%EM:890/91%",
["Antillus"] = "LT:492/98%LB:653/98%EM:844/92%",
["Flötzi"] = "LT:458/95%EB:716/91%EM:593/88%",
["Allyz"] = "RT:456/64%LB:767/96%LM:961/97%",
["Zeldriz"] = "ET:333/90%EB:662/90%EM:906/93%",
["Veganmeat"] = "RT:463/61%RB:430/57%EM:732/77%",
["Kugar"] = "UB:367/47%UM:397/46%",
["Pukky"] = "EB:633/80%EM:756/80%",
["Donnidon"] = "ET:275/79%EB:400/77%RM:540/58%",
["Basu"] = "LT:426/95%EB:711/91%EM:856/90%",
["Abouhans"] = "UT:135/48%RB:302/66%RM:538/57%",
["Gimbar"] = "RB:461/63%EM:757/79%",
["Rext"] = "EB:686/88%EM:519/84%",
["Rekiya"] = "RB:499/63%RM:592/63%",
["Nîmue"] = "ET:307/86%EB:626/86%EM:401/77%",
["Tharelia"] = "ET:258/77%EB:589/78%EM:509/82%",
["Slaxx"] = "ET:348/88%EB:621/81%EM:713/76%",
["Pleeky"] = "ET:237/76%EB:642/87%RM:588/65%",
["Vollpfostén"] = "ET:596/85%LB:586/95%EM:705/85%",
["Bärchen"] = "RB:462/66%RM:540/59%",
["Ikealol"] = "UT:76/27%EB:697/89%EM:791/82%",
["Letsshock"] = "RB:239/59%UM:302/32%",
["Babaruschka"] = "ET:200/75%EB:652/88%RM:531/58%",
["Dopez"] = "LT:649/95%LB:729/96%LM:888/96%",
["Portwiesel"] = "ET:271/79%EB:698/89%RM:548/59%",
["Minimalius"] = "LT:433/95%LB:603/96%EM:799/90%",
["Arborr"] = "ET:269/81%EB:576/81%EM:711/77%",
["Satyriasis"] = "UB:172/43%CM:151/15%",
["Ktwentya"] = "LT:502/97%EB:720/94%EM:826/91%",
["Bit"] = "ET:556/86%EB:595/85%LM:864/98%",
["Ppzi"] = "RT:453/71%EB:643/88%LM:709/96%",
["Sickclass"] = "EB:556/78%",
["Acongodsent"] = "RT:396/55%RB:523/69%EM:634/80%",
["Rîmbarî"] = "UT:67/26%EB:719/90%EM:865/89%",
["Harrispilton"] = "RB:240/55%EM:713/75%",
["Lanayaa"] = "CT:49/16%EB:646/88%EM:736/80%",
["Morakiz"] = "EB:624/79%EM:738/78%",
["Grizly"] = "RB:420/56%RM:297/65%",
["Lmoseinopa"] = "EB:713/91%EM:881/90%",
["Melmek"] = "ST:744/99%EB:514/88%EM:854/88%",
["Bukefalos"] = "ET:294/84%EB:694/89%EM:774/81%",
["Kamos"] = "ET:345/90%EB:522/89%EM:799/83%",
["Smaxy"] = "RT:167/58%EB:678/87%RM:454/51%",
["Vorrador"] = "EB:446/84%EM:748/79%",
["Pazfulz"] = "EB:687/88%EM:787/82%",
["Permastoned"] = "ET:690/89%EB:635/82%EM:627/89%",
["Mercu"] = "ET:269/80%RB:318/67%EM:518/81%",
["Memeday"] = "EB:639/87%EM:720/82%",
["Stylar"] = "RB:480/68%RM:433/51%",
["Peka"] = "ET:413/93%RB:306/65%CM:188/23%",
["Klexx"] = "ET:599/80%EB:530/92%EM:886/93%",
["Simsalabumm"] = "LT:565/97%EB:556/93%LM:813/97%",
["Snailgrabby"] = "UB:262/32%RM:501/53%",
["Yuppie"] = "LT:470/96%EB:714/90%EM:878/90%",
["Ðöner"] = "EB:738/93%EM:925/94%",
["Hypers"] = "RT:190/65%RB:220/51%RM:549/61%",
["Huntersolo"] = "ET:625/83%LB:754/95%EM:863/90%",
["Seeky"] = "EB:666/86%EM:733/78%",
["Cerdwyn"] = "ET:524/90%LB:622/97%EM:761/89%",
["Brucewayner"] = "EB:628/83%EM:764/81%",
["Fabeer"] = "ET:665/87%EB:642/83%EM:733/94%",
["Lau"] = "ET:271/82%EB:702/89%EM:898/92%",
["Zorgrim"] = "ET:367/92%LB:724/95%LM:768/96%",
["Ennoxx"] = "UT:139/49%RB:326/69%RM:622/68%",
["Onixus"] = "ET:359/90%RB:359/73%EM:748/78%",
["Mexo"] = "RT:231/73%RB:540/69%EM:741/78%",
["Trekto"] = "EB:697/88%EM:780/82%",
["Venarya"] = "EB:652/85%RM:691/73%",
["Naivy"] = "ET:680/89%LB:758/96%EM:846/87%",
["Grimchaser"] = "ET:363/91%EB:489/86%RM:529/60%",
["Trylith"] = "CT:27/1%RB:580/74%",
["Westwind"] = "ET:414/92%EB:629/82%EM:757/81%",
["Santacruz"] = "EB:708/90%EM:714/77%",
["Yaelfirin"] = "LT:450/95%LB:741/95%LM:903/95%",
["Nearenheap"] = "UB:351/46%RM:587/63%",
["Nødabba"] = "LT:678/98%EB:601/93%EM:723/93%",
["Maulklau"] = "RT:204/69%EB:609/79%RM:625/70%",
["Lyrianea"] = "CB:139/18%RM:460/55%",
["Trokin"] = "ET:705/94%LB:741/97%EM:475/89%",
["Silenceqt"] = "CB:141/17%UM:387/41%",
["Sethrá"] = "RB:463/65%RM:463/58%",
["Loryna"] = "LT:655/98%LB:678/98%EM:847/89%",
["Trave"] = "ET:286/83%RB:463/67%EM:624/91%",
["Tûrbz"] = "UB:136/35%UM:340/43%",
["Rüppel"] = "UB:131/32%UM:379/44%",
["Rilgor"] = "CT:41/14%UB:177/45%UM:101/38%",
["Snurts"] = "LT:378/95%EB:649/85%EM:469/85%",
["Ragnon"] = "CB:53/9%UM:242/44%",
["Yakiku"] = "EB:683/88%EM:833/88%",
["Hakkuni"] = "RB:483/70%RM:269/62%",
["Govan"] = "ET:349/88%EB:586/77%EM:711/93%",
["Farmautomat"] = "ET:558/75%EB:550/77%EM:697/80%",
["Suny"] = "EB:615/81%RM:567/62%",
["Shaneary"] = "RT:143/50%UB:202/47%RM:552/59%",
["Futtertuk"] = "EB:545/91%RM:669/73%",
["Skyliner"] = "ET:319/91%EB:583/77%RM:596/66%",
["Gusayqt"] = "LT:449/95%LB:627/96%EM:818/91%",
["Fjsham"] = "LT:742/97%LB:766/98%SM:978/99%",
["Jyzo"] = "UT:76/28%UB:228/31%EM:493/87%",
["Wayfe"] = "RT:210/68%RB:348/71%EM:768/80%",
["Undisputed"] = "EB:578/76%RM:658/71%",
["Hárdcore"] = "EB:606/80%EM:806/86%",
["Gwynbleîdd"] = "ET:279/83%EB:615/78%EM:866/89%",
["Çruxx"] = "UT:99/39%RB:482/61%EM:783/82%",
["Tanø"] = "RB:266/59%EM:738/79%",
["Moihra"] = "RT:218/71%EB:397/78%RM:665/72%",
["Elfii"] = "EB:672/86%LM:760/95%",
["Woodyfudy"] = "ET:561/75%EB:713/90%EM:876/90%",
["Thebomber"] = "EB:387/77%RM:661/70%",
["Tanktop"] = "ET:357/91%EB:452/87%EM:657/84%",
["Teddi"] = "EB:598/79%EM:493/87%",
["Shadowmuffin"] = "UT:84/33%EB:596/76%RM:639/68%",
["Korkenzieher"] = "RT:228/73%RB:409/56%RM:579/64%",
["Jaluana"] = "LT:535/97%EB:713/90%LM:825/97%",
["At"] = "UB:257/34%",
["Zuky"] = "EB:718/91%EM:922/94%",
["Rakes"] = "RT:397/54%EB:748/94%EM:829/86%",
["Wulfes"] = "ET:557/88%EB:656/90%EM:877/94%",
["Skeers"] = "RB:483/64%RM:374/72%",
["Frontal"] = "UB:344/45%RM:482/56%",
["Metallklops"] = "RB:384/51%RM:614/69%",
["Oakrin"] = "ET:294/86%EB:690/89%EM:860/88%",
["Ventator"] = "RT:401/56%EB:635/83%EM:682/92%",
["Ktmaha"] = "UB:298/40%RM:222/51%",
["Nebokatnezor"] = "LT:481/95%RB:348/71%UM:205/49%",
["Kodooss"] = "ET:661/87%EB:581/92%LM:962/97%",
["Vâg"] = "LT:509/97%EB:430/82%RM:578/66%",
["Bibop"] = "UB:307/37%RM:561/60%",
["Moanaom"] = "ET:334/90%RB:425/52%RM:643/69%",
["Uranov"] = "ET:423/94%EB:668/90%EM:918/94%",
["Sisyphos"] = "EB:600/83%EM:860/93%",
["Highmoon"] = "ET:244/75%EB:588/78%EM:635/90%",
["Klickz"] = "ET:264/81%RB:510/65%EM:707/77%",
["Taroks"] = "UB:221/28%UM:404/46%",
["Daimona"] = "RT:414/56%EB:641/83%RM:548/56%",
["Undeadkazama"] = "RB:397/53%RM:532/61%",
["Ossmaster"] = "EB:712/90%EM:812/84%",
["Myrina"] = "EB:370/76%RM:537/62%",
["Valatar"] = "RT:535/71%EB:631/82%EM:829/88%",
["Ðemolition"] = "EB:509/88%RM:626/70%",
["Vaelorian"] = "UB:234/31%UM:119/34%",
["Restincleave"] = "UT:75/29%RB:253/58%RM:292/65%",
["Zackizack"] = "RB:389/53%RM:517/55%",
["Critjamin"] = "RT:159/58%EB:388/81%RM:581/64%",
["Kîwî"] = "UB:236/32%RM:184/50%",
["Zabomb"] = "CT:155/19%EB:534/75%EM:675/78%",
["Rewamage"] = "RB:408/57%RM:332/74%",
["Julzu"] = "UT:375/49%EB:557/79%CM:40/5%",
["Grillzange"] = "RB:465/72%EM:615/76%",
["Stolzfried"] = "UT:281/38%EB:668/86%EM:447/78%",
["Greakz"] = "ET:688/89%EB:559/78%RM:275/68%",
["Mortuk"] = "ET:308/86%EB:611/80%EM:869/91%",
["Jamakaido"] = "LT:431/96%EB:560/93%EM:851/94%",
["Koutaru"] = "CT:31/7%RB:316/68%CM:126/17%",
["Dingyu"] = "UB:253/35%CM:229/23%",
["Ragthol"] = "LT:632/98%EB:445/82%EM:838/87%",
["Thrók"] = "UB:206/27%RM:233/53%",
["Overkillär"] = "RB:483/69%RM:629/73%",
["Amongeth"] = "RT:208/70%EB:474/85%EM:529/84%",
["Verslaafd"] = "ET:265/81%EB:502/87%EM:708/75%",
["Rikudou"] = "ET:424/93%RB:390/65%EM:637/79%",
["Rígs"] = "ET:647/85%EB:593/83%EM:432/79%",
["Rakaz"] = "RT:469/64%EB:594/83%EM:765/82%",
["Vanec"] = "LT:522/96%RB:326/68%RM:671/71%",
["Jaghiro"] = "RT:199/67%RB:386/53%RM:584/64%",
["Lfg"] = "ET:404/94%EB:751/94%LM:957/97%",
["Sadmango"] = "ET:524/78%EB:637/87%EM:774/90%",
["Bysraj"] = "ET:592/78%EB:667/85%CM:44/4%",
["Thekk"] = "RT:169/61%EB:588/75%RM:354/71%",
["Piggidoom"] = "RB:212/50%EM:818/80%",
["Unclelui"] = "ET:378/93%EB:683/88%EM:750/80%",
["Bimki"] = "ET:277/88%EB:656/89%RM:659/72%",
["Nyho"] = "CT:53/5%UB:287/38%RM:384/71%",
["Ingwerer"] = "ET:265/86%EB:655/89%EM:662/77%",
["Tonic"] = "ET:240/77%EB:462/84%EM:761/88%",
["Chrosed"] = "LT:451/95%EB:566/94%LM:891/95%",
["Grimtar"] = "EB:565/75%RM:653/73%",
["Gössermärzen"] = "LT:596/97%EB:650/85%EM:842/89%",
["Devilwomen"] = "RB:473/63%RM:497/56%",
["Tzeeñtch"] = "ET:325/88%EB:681/87%EM:877/90%",
["Ranzel"] = "LT:554/98%EB:521/90%EM:869/91%",
["Katakurí"] = "UT:199/25%UB:208/49%EM:774/82%",
["Sayari"] = "ET:516/78%EB:600/85%EM:613/79%",
["Magguu"] = "RT:165/57%RB:279/61%EM:505/80%",
["Trebors"] = "ET:419/94%EB:706/92%LM:685/96%",
["Titanex"] = "UT:110/40%EB:385/76%EM:488/79%",
["Kiritho"] = "LT:556/98%EB:678/87%EM:831/87%",
["Razzma"] = "LT:615/98%EB:534/90%EM:892/91%",
["Muherte"] = "CT:51/19%RB:323/69%EM:873/90%",
["Haufaddl"] = "ET:321/89%RB:308/67%RM:600/64%",
["Zorgad"] = "RT:224/74%UB:261/45%RM:549/58%",
["Jarvin"] = "LT:605/98%EB:664/89%EM:776/89%",
["Dulzhar"] = "ET:260/78%EB:631/82%RM:291/63%",
["Frostbamtot"] = "UB:318/44%EM:691/75%",
["Espadara"] = "UT:298/42%RB:547/70%EM:782/82%",
["Klefty"] = "LT:365/96%EB:651/92%LM:784/97%",
["Lookmypet"] = "LT:497/96%EB:545/90%EM:891/92%",
["Yartasha"] = "ET:313/91%EB:621/85%EM:398/81%",
["Ditaloni"] = "EB:714/91%EM:851/89%",
["Swarlie"] = "UT:88/34%EB:749/94%EM:931/94%",
["Gorgeous"] = "RT:372/51%RB:455/72%EM:516/83%",
["Tríxxí"] = "EB:677/86%EM:863/89%",
["Meppi"] = "RT:210/71%EB:677/87%EM:860/88%",
["Sandôr"] = "ET:417/94%EB:539/94%LM:752/96%",
["Vikonia"] = "UT:221/30%EB:639/82%EM:718/77%",
["Pipedream"] = "EB:628/83%EM:726/77%",
["Radgnar"] = "ET:616/81%EB:509/87%EM:684/92%",
["Bingle"] = "RT:215/72%EB:689/89%EM:879/91%",
["Nekò"] = "CT:63/21%UB:213/28%CM:41/11%",
["Ogeisbär"] = "UT:74/27%EB:735/93%EM:859/90%",
["Slavux"] = "CT:54/22%RB:273/60%RM:595/67%",
["Oma"] = "UT:63/25%EB:551/79%LM:918/95%",
["Klapperkiste"] = "EB:440/87%LM:716/95%",
["Seodestiny"] = "RT:485/66%LB:756/95%EM:828/88%",
["Zerballerer"] = "LT:579/97%EB:544/90%EM:861/91%",
["Malleficent"] = "UB:212/28%RM:514/55%",
["Behíndyou"] = "EB:406/78%RM:670/71%",
["Dhrakan"] = "EB:577/83%",
["Zerôrn"] = "RB:420/56%EM:507/83%",
["Manolo"] = "ET:272/86%RB:477/63%EM:560/88%",
["Feardotlol"] = "UB:265/36%UM:215/27%",
["Colluctatio"] = "CB:163/21%UM:100/30%",
["Jiro"] = "EB:675/86%EM:863/89%",
["Xsia"] = "RT:172/72%EB:550/84%EM:826/92%",
["Jovale"] = "RB:542/73%RM:510/52%",
["Carey"] = "UB:127/31%UM:445/46%",
["Mephira"] = "EB:590/77%RM:558/57%",
["Frostboltkid"] = "UT:104/48%EB:545/77%RM:549/60%",
["Rafafa"] = "UB:226/30%UM:97/29%",
["Ceralex"] = "LT:444/95%LB:658/97%LM:939/98%",
["Fosbury"] = "LT:461/95%EB:530/92%EM:768/82%",
["Paraxifos"] = "EB:548/92%EM:727/86%",
["Borntodie"] = "EB:686/91%LM:737/96%",
["Shady"] = "ET:329/90%EB:652/88%EM:776/89%",
["Lavendia"] = "RB:349/61%RM:358/72%",
["Oneesan"] = "ET:615/87%EB:446/87%EM:822/91%",
["Cleff"] = "ET:250/78%RB:298/65%RM:680/72%",
["Stockings"] = "RB:497/71%EM:708/81%",
["Adkima"] = "EB:347/76%RM:300/71%",
["Yatsume"] = "RT:196/65%EB:593/77%RM:664/69%",
["Dunkelheyt"] = "EB:591/78%UM:386/40%",
["Scaryot"] = "ET:385/91%EB:672/86%LM:780/95%",
["Kathax"] = "RB:231/54%RM:531/59%",
["Bashos"] = "RT:488/68%LB:758/95%EM:918/93%",
["Vaserana"] = "RT:184/65%RB:502/66%EM:796/90%",
["Evilious"] = "RT:482/74%EB:632/86%EM:752/87%",
["Moepyourlife"] = "RT:189/63%RB:283/62%EM:695/75%",
["Ogie"] = "LT:482/95%EB:521/88%EM:847/87%",
["Aladros"] = "RB:496/63%RM:365/71%",
["Karr"] = "EB:598/76%EM:714/76%",
["Artuss"] = "ET:425/94%LB:756/95%EM:900/93%",
["Eloawen"] = "ET:658/86%EB:707/90%EM:802/85%",
["Thoramk"] = "ET:277/85%EB:735/94%LM:934/96%",
["Trolldemort"] = "EB:438/87%EM:857/90%",
["Alikahn"] = "RT:150/55%EB:594/94%EM:886/91%",
["Kørgøth"] = "RT:144/53%RB:299/66%EM:426/78%",
["Dragón"] = "RT:493/67%EB:612/79%RM:402/74%",
["Malfurollo"] = "ET:296/93%EB:600/90%EM:648/84%",
["Landru"] = "EB:749/94%EM:908/92%",
["Letzzfetzz"] = "EB:643/81%EM:900/92%",
["Theoric"] = "ET:247/75%EB:688/88%EM:869/90%",
["Hellga"] = "UT:122/43%UB:251/33%EM:422/75%",
["Snowchob"] = "LB:761/96%LM:935/95%",
["Ratata"] = "ET:335/89%LB:651/95%LM:922/95%",
["Rogor"] = "CT:59/19%RB:416/56%UM:258/26%",
["Steinton"] = "UB:260/35%RM:329/66%",
["Coldwater"] = "ET:336/89%EB:583/77%EM:727/79%",
["Ottchen"] = "ET:331/92%EB:457/88%EM:612/92%",
["Dalanar"] = "EB:622/82%EM:778/83%",
["Coldcall"] = "EB:448/87%EM:810/89%",
["Trollakles"] = "EB:710/90%EM:904/92%",
["Wlex"] = "LT:527/97%RB:473/62%RM:549/58%",
["Sleisa"] = "RT:216/70%EB:725/92%EM:788/82%",
["Blinklappen"] = "ET:578/78%EB:626/82%UM:307/32%",
["Whites"] = "EB:631/83%EM:881/90%",
["Soulflex"] = "LT:553/97%EB:653/85%EM:598/88%",
["Aokiji"] = "LT:598/98%EB:553/91%EM:742/78%",
["Ÿàðæßëæßðæðð"] = "EB:629/82%EM:903/93%",
["Ticker"] = "EB:613/85%EM:894/93%",
["Police"] = "EB:703/89%EM:929/94%",
["Phîlius"] = "RB:547/73%RM:690/72%",
["Ketar"] = "RB:552/74%EM:806/85%",
["Shirkun"] = "RB:372/50%RM:256/56%",
["Nookychelios"] = "RB:318/69%RM:684/73%",
["Ixd"] = "ET:350/89%EB:744/94%LM:838/96%",
["Cati"] = "ET:366/89%EB:672/86%EM:658/90%",
["Chromodol"] = "EB:506/88%EM:580/87%",
["Deadnote"] = "EB:647/83%EM:479/80%",
["Naide"] = "EB:649/91%EM:817/92%",
["Gachigirl"] = "RT:150/55%EB:502/92%EM:859/93%",
["Nivea"] = "CT:72/24%RB:451/57%EM:746/78%",
["Badkeleck"] = "RT:174/63%RB:286/64%RM:225/56%",
["Lockdog"] = "RB:305/71%RM:524/62%",
["Hordemage"] = "CT:184/24%RB:431/61%RM:540/59%",
["Jorgonson"] = "ET:210/75%EB:681/91%EM:766/83%",
["Jukkie"] = "EB:658/86%EM:792/88%",
["Jörk"] = "CB:35/7%CM:137/12%",
["Mopsoron"] = "RT:136/51%UB:318/45%EM:385/80%",
["Samrych"] = "LT:715/97%LB:755/98%EM:683/85%",
["Corentin"] = "RT:173/60%RB:292/70%EM:442/81%",
["Raistlan"] = "EB:655/85%EM:758/85%",
["Crolic"] = "CB:38/3%UM:140/38%",
["Powercow"] = "ET:402/94%EB:502/77%EM:727/86%",
["Warvis"] = "CB:115/12%UM:418/43%",
["Serasin"] = "EB:707/90%EM:871/89%",
["Maunades"] = "EB:522/93%EM:674/78%",
["Bozze"] = "UT:123/46%RB:507/73%UM:407/44%",
["Vaadwaur"] = "LT:561/97%EB:551/90%EM:688/92%",
["Shimada"] = "UB:385/48%EM:751/79%",
["Bustlerkill"] = "UB:184/44%UM:421/44%",
["Seronix"] = "ET:565/82%EB:505/77%RM:694/74%",
["Necroll"] = "RT:218/70%EB:590/78%EM:734/94%",
["Needall"] = "EB:682/87%EM:919/93%",
["Paranormal"] = "RB:481/61%RM:667/71%",
["Bloodsoul"] = "CT:81/10%EB:382/77%RM:552/59%",
["Darkshot"] = "RT:515/70%EB:571/92%EM:853/89%",
["Tiey"] = "ET:576/77%EB:747/94%EM:536/85%",
["Summi"] = "UT:122/43%EB:703/89%EM:855/88%",
["Luxane"] = "EB:626/82%EM:737/80%",
["Hámálám"] = "RB:529/71%RM:643/67%",
["Gilfi"] = "LT:479/95%EB:544/90%EM:731/76%",
["Bookashade"] = "UT:91/33%UB:246/30%RM:644/69%",
["Amdar"] = "RT:156/57%EB:644/84%EM:776/83%",
["Negreth"] = "ET:415/94%EB:737/93%EM:930/94%",
["Hizuru"] = "ET:230/75%EB:649/84%EM:474/82%",
["Nvg"] = "RT:553/74%EB:689/88%EM:818/85%",
["Eldarinchen"] = "EB:674/87%EM:720/78%",
["Tba"] = "CB:121/15%UM:91/28%",
["Luiss"] = "UT:326/42%RB:441/59%RM:372/69%",
["Brownbär"] = "LT:619/98%EB:532/89%LM:767/95%",
["Gibx"] = "EB:620/82%EM:758/81%",
["Profiboxer"] = "CT:48/5%CB:4/0%CM:66/20%",
["Tocsick"] = "UB:131/33%RM:318/64%",
["Xebull"] = "UT:88/36%RB:405/67%RM:510/71%",
["Vestrivan"] = "UB:271/29%UM:307/31%",
["Bämbusel"] = "ET:320/87%RB:329/69%RM:554/61%",
["Izeh"] = "LT:536/97%LB:756/95%EM:898/90%",
["Evilchen"] = "EB:624/82%EM:765/82%",
["Felguard"] = "ST:668/99%LB:701/98%LM:926/96%",
["Miggim"] = "ET:124/76%LB:588/97%LM:946/98%",
["Zianji"] = "ET:352/90%EB:673/86%EM:880/90%",
["Saboj"] = "ET:421/94%EB:410/80%EM:718/75%",
["Gorlash"] = "RB:347/73%RM:236/57%",
["Luminox"] = "ET:629/83%EB:611/80%EM:599/88%",
["Xlui"] = "RB:272/61%RM:495/57%",
["Nuli"] = "EB:701/90%EM:904/93%",
["Crowax"] = "RT:217/69%EB:467/84%RM:669/72%",
["Ghostsharky"] = "ET:288/83%RB:571/73%EM:795/82%",
["Thunderbyanu"] = "RB:502/64%UM:109/35%",
["Oarschkreula"] = "EB:671/85%EM:860/88%",
["Mayor"] = "LT:445/95%LB:739/95%EM:853/92%",
["Bionic"] = "RT:498/70%EB:747/94%EM:892/91%",
["Massero"] = "LT:531/96%EB:619/94%LM:791/96%",
["Urdead"] = "UT:82/29%RB:332/69%UM:129/36%",
["Ariella"] = "RT:183/71%EB:718/94%LM:723/96%",
["Doddi"] = "RB:417/56%EM:435/77%",
["Aircondition"] = "CB:76/21%UM:94/36%",
["Achillezz"] = "ET:599/79%EB:668/90%RM:248/60%",
["Deathanxiety"] = "UT:350/46%EB:523/89%EM:432/77%",
["Gungnir"] = "UT:93/41%RB:342/72%RM:682/73%",
["Razhun"] = "RT:221/72%EB:558/79%EM:635/93%",
["Stevenseagl"] = "CB:184/21%UM:113/33%",
["Zentuka"] = "UT:238/31%EB:373/80%EM:892/92%",
["Shâpe"] = "ET:226/80%EB:496/84%EM:485/76%",
["Phreaky"] = "EB:714/94%LM:946/96%",
["Fanor"] = "ET:248/75%EB:588/78%EM:588/87%",
["Askulap"] = "CB:76/20%UM:79/28%",
["Zoowärter"] = "UT:113/44%EB:523/89%EM:789/83%",
["Akada"] = "LT:456/95%EB:686/92%EM:843/93%",
["Reznîk"] = "CB:91/12%CM:58/8%",
["Nichtorgoth"] = "CB:58/6%CM:173/22%",
["Jimpanze"] = "EB:713/91%EM:913/94%",
["Xtcc"] = "CT:84/10%EB:688/89%EM:778/83%",
["Xyrak"] = "RT:154/53%EB:627/81%RM:715/74%",
["Terrell"] = "RT:215/72%EB:715/91%EM:905/92%",
["Jingerale"] = "EB:641/84%EM:708/76%",
["Rota"] = "LT:514/97%LB:636/95%LM:795/96%",
["Chrone"] = "ET:342/90%EB:487/86%EM:687/92%",
["Premutheus"] = "EB:727/92%EM:837/86%",
["Odenberg"] = "ET:686/89%EB:704/90%EM:887/92%",
["Kewanth"] = "RT:361/51%RB:476/66%EM:775/81%",
["Meskal"] = "EB:627/81%EM:781/81%",
["Blex"] = "UB:242/29%RM:508/59%",
["Giyuu"] = "RT:180/62%UB:153/37%RM:455/51%",
["Yaelfara"] = "RT:416/56%EB:719/91%EM:877/90%",
["Loomi"] = "EB:618/82%EM:712/75%",
["Maruka"] = "RT:396/56%EB:653/85%EM:762/80%",
["Lavarost"] = "LT:464/95%EB:565/80%RM:444/56%",
["Anondil"] = "ET:248/78%EB:701/90%EM:909/94%",
["Kaitokun"] = "EB:745/94%EM:628/89%",
["Pirmin"] = "LT:510/96%EB:642/84%EM:884/92%",
["Rahvin"] = "LT:507/96%EB:507/87%EM:603/88%",
["Bärenpelz"] = "EB:699/94%LM:880/95%",
["Tämelcoe"] = "UT:79/30%EB:584/78%EM:549/86%",
["Raubert"] = "RB:510/70%RM:510/54%",
["Whizzlebang"] = "RB:551/72%EM:558/86%",
["Pöng"] = "ET:362/92%EB:667/86%RM:219/57%",
["Gambles"] = "UB:362/48%RM:320/64%",
["Daisho"] = "RB:539/69%EM:736/78%",
["Korî"] = "EB:528/75%EM:727/79%",
["Seston"] = "RT:531/74%EB:714/90%EM:858/88%",
["Bollok"] = "ET:391/91%EB:713/90%EM:881/91%",
["Crisscross"] = "EB:744/94%EM:923/94%",
["Garano"] = "ET:432/94%EB:583/77%EM:728/76%",
["Nyaryma"] = "EB:556/92%EM:478/82%",
["Azab"] = "ET:405/92%EB:576/92%EM:723/93%",
["Flickred"] = "ET:424/94%EB:704/90%EM:856/90%",
["Munus"] = "UB:259/32%UM:235/29%",
["Elodira"] = "LT:480/96%EB:418/85%LM:818/98%",
["Sunaria"] = "ET:567/75%EB:621/81%EM:730/76%",
["Loonx"] = "LT:488/96%RB:430/59%UM:415/42%",
["Dendarg"] = "RT:540/71%EB:655/85%EM:806/86%",
["Lilbandit"] = "CT:152/20%UB:210/49%RM:523/58%",
["Tillibi"] = "UT:290/39%RB:566/74%EM:759/79%",
["Leckmuschel"] = "UT:211/32%UB:325/42%RM:228/72%",
["Cmdmumpitz"] = "ET:566/75%LB:750/95%EM:800/85%",
["Badbadbeast"] = "EB:621/79%EM:781/89%",
["Nazgârel"] = "RB:444/57%UM:217/27%",
["Roxxsor"] = "RT:313/68%EB:662/91%EM:586/91%",
["Mjammjam"] = "RT:143/53%EB:713/91%LM:931/95%",
["Surturarise"] = "EB:687/87%EM:574/87%",
["Fatefull"] = "ET:671/87%LB:773/97%EM:906/94%",
["Curselock"] = "CB:171/23%UM:366/41%",
["Longpaper"] = "CB:103/13%CM:109/15%",
["Mageschnetzl"] = "LT:550/97%LB:736/95%LM:867/98%",
["Mirolex"] = "RT:154/54%RB:388/52%RM:293/64%",
["Coory"] = "UB:315/44%EM:587/91%",
["Limdûl"] = "ET:395/93%EB:626/82%RM:677/74%",
["Voya"] = "ET:399/92%EB:454/83%RM:616/64%",
["Bibble"] = "ET:335/87%RB:485/63%RM:489/50%",
["Painless"] = "ET:305/89%EB:591/85%EM:829/93%",
["Shiaka"] = "ET:400/93%EB:632/83%EM:816/85%",
["Cavalon"] = "LT:573/98%EB:485/87%EM:804/84%",
["Piwo"] = "ET:581/84%EB:682/91%EM:913/93%",
["Trixx"] = "RB:478/65%",
["Syence"] = "LT:578/97%EB:507/88%EM:851/89%",
["Diobowek"] = "CT:65/7%EB:744/94%EM:706/75%",
["Steibock"] = "UT:63/25%UB:257/29%RM:104/52%",
["Trolf"] = "EB:691/91%EM:889/94%",
["Ziratius"] = "ET:303/85%EB:632/83%EM:830/88%",
["Azumbuze"] = "EB:666/90%LM:922/97%",
["Mortecai"] = "CT:29/11%RB:446/68%EM:758/88%",
["Shaden"] = "LT:516/96%EB:553/93%EM:776/83%",
["Atomrogue"] = "CT:182/23%EB:413/79%RM:516/55%",
["Fibulae"] = "ET:584/77%LB:760/96%EM:915/94%",
["Dämonia"] = "ET:201/76%EB:660/90%RM:193/56%",
["Veikko"] = "RT:166/67%EB:602/83%RM:637/70%",
["Alte"] = "CT:95/16%EB:654/89%EM:727/79%",
["Boatank"] = "ET:403/94%EB:731/94%EM:845/92%",
["Alefred"] = "ET:375/92%EB:591/83%EM:752/81%",
["Orim"] = "LT:510/95%EB:697/93%LM:733/95%",
["Twistedfeed"] = "ET:364/92%EB:561/76%EM:716/76%",
["Zulton"] = "ET:251/80%RB:382/51%RM:590/67%",
["Rawvez"] = "RT:183/69%EB:581/84%RM:334/63%",
["Arow"] = "EB:380/78%CM:157/18%",
["Xenor"] = "ET:624/82%EB:440/81%EM:717/75%",
["Holabier"] = "ET:312/86%RB:423/61%CM:32/1%",
["Breitstyler"] = "EB:646/84%RM:533/52%",
["Razzmatazz"] = "RT:536/73%RB:510/68%EM:709/75%",
["Sonyx"] = "EB:699/90%EM:822/87%",
["Kronux"] = "CT:50/19%UB:386/46%RM:643/69%",
["Löschen"] = "ET:337/89%EB:690/88%RM:312/68%",
["Slimshaggy"] = "LT:599/98%EB:669/86%RM:622/66%",
["Guzzle"] = "CB:138/18%",
["Rake"] = "EB:597/79%EM:758/81%",
["Basooka"] = "EB:552/91%EM:752/81%",
["Ethi"] = "ET:358/92%LB:764/96%EM:919/94%",
["Jobanni"] = "RB:474/68%RM:294/70%",
["Kétá"] = "CT:110/13%UB:316/45%RM:517/64%",
["Glelin"] = "RT:199/69%EB:720/91%EM:833/87%",
["Líona"] = "ET:718/92%EB:740/93%LM:958/97%",
["Trittico"] = "EB:669/90%EM:801/85%",
["Vök"] = "CB:113/14%RM:207/50%",
["Incinerate"] = "ST:700/99%EB:456/88%EM:813/90%",
["Lackmalstift"] = "ET:257/79%EB:610/80%RM:676/74%",
["Icysoul"] = "ET:376/93%RB:480/64%RM:609/67%",
["Teluluh"] = "RT:173/62%RB:425/60%RM:674/74%",
["Hodorswag"] = "RT:209/70%EB:594/83%RM:461/54%",
["Pointyend"] = "UB:168/41%CM:54/17%",
["Papabär"] = "LT:335/95%EB:512/93%LM:700/96%",
["Nyra"] = "RB:493/68%UM:421/47%",
["Hgynxi"] = "UB:282/34%UM:445/47%",
["Yinga"] = "LT:458/95%EB:491/87%EM:832/87%",
["Verzeiht"] = "UB:207/48%RM:178/51%",
["Onixiar"] = "EB:722/92%LM:947/96%",
["Grimmwald"] = "UB:196/47%UM:230/28%",
["Bhujai"] = "RT:174/63%EB:508/89%EM:757/81%",
["Freezyo"] = "RB:385/55%RM:322/73%",
["Benkenobi"] = "RT:124/54%UB:309/43%RM:549/60%",
["Fîzzlebang"] = "RB:507/68%RM:504/55%",
["Theiosaner"] = "CB:77/19%RM:475/60%",
["Lupis"] = "CT:38/3%UB:186/25%UM:386/46%",
["Qm"] = "RB:399/68%EM:733/87%",
["Overheat"] = "EB:486/77%EM:403/82%",
["Momofried"] = "UB:272/37%RM:564/58%",
["Möchtegern"] = "ET:239/82%EB:381/87%EM:538/79%",
["Criticál"] = "EB:452/85%EM:908/92%",
["Neburak"] = "UB:177/43%RM:270/62%",
["Ryúk"] = "CT:27/5%RB:559/74%RM:670/72%",
["Lebardo"] = "ET:411/93%EB:433/86%EM:569/91%",
["Mukkzli"] = "UB:329/40%EM:824/85%",
["Cja"] = "UB:215/25%RM:308/66%",
["Def"] = "UT:91/37%RB:404/52%UM:335/38%",
["Neyya"] = "RB:233/53%EM:792/76%",
["Máko"] = "UB:378/47%RM:593/63%",
["Korthek"] = "EB:616/81%EM:783/82%",
["Affemitwaffe"] = "RB:269/61%RM:633/68%",
["Tarandir"] = "LT:534/97%EB:669/86%EM:866/89%",
["Afssungar"] = "ET:248/84%EB:404/84%EM:399/81%",
["Mizuroka"] = "ET:301/88%EB:720/94%EM:867/93%",
["Bombelmann"] = "RT:148/52%EB:669/86%EM:766/82%",
["Celestee"] = "RT:406/53%EB:430/80%EM:571/85%",
["Dynastie"] = "RB:529/71%RM:607/66%",
["Septem"] = "ET:193/86%EB:673/92%LM:890/96%",
["Kikijiki"] = "CT:50/5%RB:533/70%EM:406/77%",
["Høød"] = "EB:469/86%EM:727/78%",
["Twobias"] = "UB:291/39%RM:493/52%",
["Xranaya"] = "EB:393/77%RM:609/68%",
["Doubleshot"] = "LT:426/95%EB:679/87%EM:865/89%",
["Phoebes"] = "LT:494/95%EB:678/87%EM:737/77%",
["Creepydollar"] = "ET:276/83%EB:659/86%RM:616/68%",
["Weaz"] = "EB:716/91%EM:803/83%",
["Suyen"] = "RT:220/73%EB:638/82%EM:788/83%",
["Xaelnera"] = "ET:397/93%EB:550/91%EM:824/85%",
["Remii"] = "CT:160/21%CB:66/8%CM:49/5%",
["Elædris"] = "LT:581/98%LB:737/95%LM:704/96%",
["Rhopunzel"] = "RB:499/71%EM:858/90%",
["Xorvet"] = "UT:91/33%RB:542/72%RM:386/73%",
["Sundance"] = "UB:279/35%UM:391/40%",
["Mîlâ"] = "UT:131/49%EB:694/89%EM:842/89%",
["Uxas"] = "RB:473/64%RM:247/58%",
["Teykis"] = "EB:572/80%EM:787/88%",
["Fliegbert"] = "RB:554/74%EM:778/81%",
["Njal"] = "RB:213/50%RM:627/71%",
["Suit"] = "EB:621/79%EM:847/88%",
["Muggelinho"] = "RT:214/68%EB:649/83%EM:496/82%",
["Sunruler"] = "RB:261/59%RM:290/64%",
["Disconnect"] = "UT:131/47%UB:146/35%RM:670/71%",
["Teokoles"] = "UT:122/47%EB:566/75%RM:635/71%",
["Chulak"] = "RB:219/52%RM:644/72%",
["Agreka"] = "RB:522/66%RM:662/71%",
["Moulinroguê"] = "CT:45/13%CB:176/23%",
["Xunzi"] = "RT:154/54%RB:532/71%RM:666/69%",
["Sjebani"] = "ET:327/86%EB:589/78%EM:672/91%",
["Ohlequax"] = "ET:658/93%LB:731/95%LM:886/95%",
["Rodàr"] = "UB:209/25%RM:458/67%",
["Haky"] = "CT:133/17%LB:753/95%LM:944/95%",
["Chaosklada"] = "EB:567/77%RM:563/62%",
["Smac"] = "ET:263/80%EB:673/87%EM:799/85%",
["Aruyal"] = "EB:628/82%EM:853/89%",
["Grothak"] = "LT:537/96%EB:469/84%EM:857/88%",
["Dirana"] = "RB:415/54%RM:258/60%",
["Duester"] = "ET:556/87%EB:617/87%LM:782/96%",
["Canu"] = "ET:284/84%RB:535/70%RM:617/69%",
["Gemmil"] = "ET:657/90%EB:698/92%EM:891/94%",
["Lunastarr"] = "RB:374/53%RM:246/64%",
["Horndrak"] = "ET:358/92%EB:607/86%RM:372/67%",
["Meisterkaio"] = "RT:485/65%EB:625/81%RM:517/52%",
["Ding"] = "EB:372/80%EM:592/92%",
["Victim"] = "CB:63/17%CM:51/6%",
["Volca"] = "LB:780/98%LM:969/98%",
["Brizl"] = "ET:331/88%EB:597/83%EM:448/84%",
["Øwertz"] = "EB:654/85%EM:776/82%",
["Destrodite"] = "RB:223/53%RM:468/51%",
["Volchar"] = "UT:91/35%UB:331/45%EM:862/90%",
["Cleptomania"] = "RT:553/73%EB:642/83%RM:691/72%",
["Fucx"] = "CT:62/21%EB:468/85%EM:869/89%",
["Jarsynthia"] = "RB:315/73%",
["Elíab"] = "RB:429/61%UM:306/37%",
["Gornwuthuf"] = "RT:145/54%UB:283/35%RM:448/66%",
["Dotlike"] = "RB:479/65%RM:331/68%",
["Hamya"] = "RT:225/74%EB:586/78%EM:716/77%",
["Hulkstêr"] = "LT:529/97%EB:525/89%EM:838/89%",
["Dantee"] = "EB:653/84%RM:706/73%",
["Wilfried"] = "CT:42/12%RB:539/72%EM:411/75%",
["Serlina"] = "EB:714/90%EM:772/81%",
["Obeninnersüd"] = "RT:198/66%UB:150/37%UM:386/44%",
["Savok"] = "RB:386/50%RM:322/67%",
["Rasur"] = "ET:228/75%RB:423/52%RM:677/72%",
["Hintenburg"] = "CT:53/5%RB:293/63%RM:353/67%",
["Seekndestroy"] = "ET:364/92%EB:465/86%EM:758/80%",
["Deepz"] = "CB:86/10%UM:218/26%",
["Eraser"] = "LT:647/98%EB:641/84%EM:823/85%",
["Harrie"] = "ET:247/78%RB:230/52%RM:613/66%",
["Javaanse"] = "EB:647/83%RM:674/72%",
["Espilce"] = "ET:254/78%EB:640/84%LM:739/96%",
["Murok"] = "CT:81/10%RB:564/74%EM:528/84%",
["Biccdiccboi"] = "UB:319/39%RM:552/59%",
["Atharos"] = "CB:70/8%RM:214/51%",
["Gieseler"] = "UT:123/47%LB:752/96%SM:992/99%",
["Limby"] = "LT:475/96%EB:597/78%EM:542/85%",
["Dockson"] = "LT:480/96%EB:596/83%",
["Ydo"] = "EB:581/81%",
["Vernomi"] = "ET:716/92%EB:672/87%EM:728/94%",
["Lokmora"] = "RT:428/61%RB:402/53%RM:276/62%",
["Naith"] = "ET:393/94%EB:385/81%EM:737/80%",
["Karlita"] = "EB:746/94%EM:843/87%",
["Bigcarol"] = "RT:220/70%RB:442/59%RM:486/55%",
["Xenodike"] = "UT:212/27%RB:285/68%EM:697/80%",
["Klaprig"] = "CT:64/21%EB:645/83%EM:840/87%",
["Shanduu"] = "EB:411/81%EM:453/80%",
["Elimer"] = "EB:429/86%EM:783/84%",
["Cherdana"] = "UB:196/26%RM:706/73%",
["Freezepolice"] = "CT:84/10%UB:309/44%EM:701/76%",
["Nimand"] = "UB:376/49%EM:461/85%",
["Sportzicke"] = "ET:288/84%EB:425/84%EM:439/80%",
["Frosina"] = "ST:618/99%RB:439/61%EM:384/80%",
["Hesutu"] = "UT:102/46%CB:170/23%CM:176/17%",
["Vizzl"] = "ET:603/80%RB:501/72%RM:608/73%",
["Balresch"] = "RT:155/56%RB:194/51%RM:234/63%",
["Francesca"] = "RT:121/53%UB:264/35%EM:342/75%",
["Greenhornet"] = "LT:468/97%EB:669/90%EM:734/86%",
["Layssa"] = "ET:317/85%RB:471/64%RM:268/61%",
["Grooce"] = "UT:317/43%RB:332/70%EM:843/89%",
["Headshót"] = "RT:213/72%UB:111/28%RM:531/58%",
["Bärtle"] = "ET:561/88%EB:640/90%EM:558/87%",
["Zerk"] = "CB:65/15%UM:84/29%",
["Zansibar"] = "RB:280/60%RM:210/61%",
["Zenobit"] = "RB:243/56%UM:140/41%",
["Dragunov"] = "CT:28/5%UB:129/32%UM:412/47%",
["Ryp"] = "UT:139/49%RB:363/50%RM:623/64%",
["Lsdthc"] = "LT:448/97%LB:594/96%EM:869/88%",
["Miasma"] = "ET:360/91%RB:408/52%RM:514/58%",
["Knilch"] = "EB:485/91%EM:684/79%",
["Angertowley"] = "LT:506/97%EB:555/92%EM:399/76%",
["Nita"] = "LT:509/96%EB:589/82%EM:475/86%",
["Diroki"] = "LT:614/98%EB:504/88%EM:822/85%",
["Jugulum"] = "RB:546/73%UM:269/27%",
["Barto"] = "RB:305/71%RM:537/63%",
["Kesil"] = "CB:110/14%RM:458/52%",
["Taminá"] = "ET:368/91%EB:681/88%EM:757/81%",
["Easycrit"] = "ET:272/83%EB:644/84%EM:599/90%",
["Nersus"] = "ET:689/93%LB:740/95%EM:771/88%",
["Neritia"] = "EB:707/90%EM:826/85%",
["Hideonbush"] = "RB:489/65%RM:675/74%",
["Ungehoerig"] = "EB:607/90%EM:760/89%",
["Nezo"] = "ET:681/88%EB:666/85%EM:701/93%",
["Oldwolf"] = "UB:374/44%UM:157/44%",
["Migglinda"] = "EB:551/79%EM:564/76%",
["Raîku"] = "UB:240/29%RM:506/53%",
["Neomeleagros"] = "LT:458/95%EB:685/88%",
["Nove"] = "CB:90/11%RM:385/71%",
["Xplod"] = "CT:57/21%EB:345/75%UM:361/42%",
["Kujiro"] = "LT:521/96%RB:314/72%RM:258/65%",
["Tâuriel"] = "LT:426/95%LB:765/97%LM:915/95%",
["Frosteem"] = "RB:420/59%RM:254/65%",
["Nedo"] = "RB:281/62%RM:494/56%",
["Thordan"] = "EB:457/85%EM:862/90%",
["Shadoweyes"] = "ET:356/89%EB:410/78%EM:509/82%",
["Casia"] = "ET:593/79%EB:675/87%",
["Margeimonium"] = "LT:550/97%EB:478/90%EM:876/91%",
["Manu"] = "RB:548/74%RM:351/72%",
["Xintho"] = "EB:667/85%EM:801/83%",
["Snickes"] = "ET:626/89%EB:682/90%EM:885/94%",
["Wolfger"] = "CT:59/21%EB:552/75%CM:154/14%",
["Muhmoose"] = "EB:635/82%LM:960/97%",
["Faiali"] = "UT:353/48%EB:627/81%EM:725/75%",
["Vivachel"] = "EB:486/88%EM:902/92%",
["Khirok"] = "CT:29/6%RB:474/74%RM:642/71%",
["Lisalotta"] = "ET:345/88%RB:549/73%RM:631/65%",
["Arvin"] = "LT:515/96%EB:432/85%EM:722/78%",
["Mograk"] = "RB:497/65%EM:878/90%",
["Inalla"] = "ET:299/86%EB:539/77%EM:750/81%",
["Sihyu"] = "RT:411/56%EB:433/82%UM:393/40%",
["Silverskin"] = "LB:621/95%EM:622/89%",
["Brühtrog"] = "LT:416/97%EB:572/86%EM:721/89%",
["Malacrass"] = "LT:638/98%EB:556/93%LM:891/96%",
["Xasz"] = "RB:486/66%EM:770/76%",
["Erîs"] = "RT:492/65%EB:608/80%EM:801/85%",
["Venge"] = "ET:334/88%EB:641/83%",
["Narfur"] = "EB:660/85%EM:882/91%",
["Zombeis"] = "RB:421/60%UM:337/35%",
["Memomeister"] = "RB:514/69%EM:522/83%",
["Indeed"] = "UB:157/42%RM:321/73%",
["Thalgrim"] = "ET:240/79%EB:580/84%EM:353/83%",
["Icebones"] = "CT:54/18%RB:461/61%EM:710/77%",
["Iòól"] = "RT:357/60%EB:529/93%EM:652/82%",
["Bogge"] = "ST:653/99%EB:565/94%EM:797/90%",
["Iopi"] = "UB:291/37%RM:603/66%",
["Teleria"] = "LT:397/95%EB:677/90%EM:762/88%",
["Tyranastraz"] = "UT:83/38%UB:346/49%UM:326/34%",
["Floeckchen"] = "RB:424/60%RM:521/62%",
["Desody"] = "EB:587/75%EM:753/79%",
["Sáturás"] = "EB:671/86%EM:731/76%",
["Cholaron"] = "UB:240/33%RM:573/63%",
["Hexylexy"] = "LT:569/97%EB:675/87%LM:930/96%",
["Altron"] = "ET:278/82%EB:570/75%EM:678/93%",
["Tazy"] = "EB:570/83%EM:761/88%",
["Sarum"] = "LT:516/96%EB:567/80%LM:721/96%",
["Gernhart"] = "ET:323/89%RB:526/72%EM:504/84%",
["Idefìx"] = "CT:172/22%RB:442/65%EM:395/77%",
["Renji"] = "RT:201/69%EB:622/81%EM:865/89%",
["Grimmalignus"] = "RT:159/57%EB:690/89%EM:903/93%",
["Venos"] = "RT:231/74%EB:636/87%EM:798/89%",
["Hyranthier"] = "UB:258/32%EM:475/81%",
["Vrony"] = "RB:495/70%EM:803/85%",
["Crxn"] = "ET:536/85%EB:712/94%LM:769/96%",
["Yhoundey"] = "RT:489/65%RB:364/50%EM:829/88%",
["Yaskin"] = "RB:562/74%RM:265/67%",
["Vibezz"] = "RT:207/70%EB:552/78%RM:555/68%",
["Xalia"] = "UT:345/48%EB:726/92%EM:930/94%",
["Jayez"] = "EB:619/79%EM:704/75%",
["Êxecutê"] = "RT:153/56%RB:329/70%RM:640/72%",
["Aminos"] = "RB:543/71%EM:655/91%",
["Slavus"] = "EB:641/90%EM:765/89%",
["Ioldontsheep"] = "EB:544/76%RM:601/70%",
["Pìnkì"] = "EB:735/93%EM:838/87%",
["Vladimír"] = "EB:550/75%EM:845/87%",
["Dawnkrat"] = "RT:236/74%RB:345/72%EM:792/82%",
["Marmalade"] = "EB:633/82%RM:575/59%",
["Wilyminx"] = "UT:74/28%EB:570/75%EM:721/76%",
["Hiem"] = "ET:404/93%EB:689/88%EM:764/81%",
["Shandræ"] = "ET:608/81%EB:489/87%EM:717/93%",
["Rudinhi"] = "ET:342/89%EB:723/92%LM:815/97%",
["Tasco"] = "ET:586/78%LB:763/96%LM:947/96%",
["Ditscheqt"] = "UT:197/26%RB:486/67%RM:578/56%",
["Frostshake"] = "UT:112/42%UB:254/35%UM:445/48%",
["Avato"] = "ET:289/85%RB:399/56%",
["Nyet"] = "ET:580/77%EB:573/76%EM:479/80%",
["Spitzbubbe"] = "ET:426/94%EB:389/82%EM:345/76%",
["Melville"] = "UT:74/27%RB:511/70%RM:671/71%",
["Zekyso"] = "CT:57/22%RB:570/73%EM:720/76%",
["Bojan"] = "CB:229/24%UM:213/26%",
["Luschie"] = "ET:298/85%RB:478/69%UM:246/34%",
["Badbunny"] = "CB:129/14%UM:182/49%",
["Châzy"] = "RB:474/66%UM:357/36%",
["Nexaria"] = "UB:319/43%EM:832/83%",
["Zotak"] = "UB:168/33%EM:494/76%",
["Brokkolí"] = "UT:84/32%EB:361/75%RM:700/74%",
["Hunterloot"] = "ET:281/83%EB:586/78%EM:799/83%",
["Dysplasia"] = "LT:571/98%EB:694/89%EM:727/78%",
["Schwimmbutz"] = "EB:595/78%EM:762/80%",
["Fetcher"] = "RT:166/58%CB:127/16%UM:370/42%",
["Zodiarche"] = "CT:28/9%UB:399/48%RM:192/68%",
["Zârj"] = "UB:395/47%EM:710/75%",
["Chend"] = "ET:238/77%EB:577/78%EM:435/79%",
["Zorsha"] = "ET:282/80%EB:621/81%RM:694/72%",
["Normec"] = "RT:203/69%EB:647/84%EM:490/84%",
["Protecta"] = "CB:149/17%EM:728/86%",
["Razix"] = "EB:687/88%EM:853/88%",
["Skyrim"] = "UB:294/38%RM:401/72%",
["Sarrand"] = "ET:255/81%EB:677/91%EM:699/86%",
["Phistomefel"] = "ET:447/94%EB:537/89%LM:799/96%",
["Hovard"] = "CB:111/13%UM:115/37%",
["Jollyrogers"] = "ET:294/85%RB:469/68%RM:546/64%",
["Knoblauchuwe"] = "ET:251/81%RB:325/58%EM:584/77%",
["Draneia"] = "RT:79/59%EB:484/80%EM:545/78%",
["Chinesebot"] = "CB:36/7%CM:131/18%",
["Octalus"] = "UB:194/25%RM:658/72%",
["Razahk"] = "RB:503/67%RM:648/71%",
["Leckii"] = "RB:453/60%UM:438/47%",
["Amreon"] = "RT:172/61%EB:484/90%UM:427/46%",
["Lêfux"] = "CT:85/19%RB:468/73%EM:641/84%",
["Aokik"] = "ET:311/86%EB:700/90%EM:682/94%",
["Ezalia"] = "RB:260/59%RM:531/55%",
["Schnúbs"] = "UT:71/25%RB:274/61%RM:394/74%",
["Ennif"] = "CB:123/16%",
["Wasserjunge"] = "CB:163/22%EM:927/94%",
["Klyde"] = "CT:34/8%UB:365/45%RM:563/60%",
["Spex"] = "LT:434/95%EB:643/84%EM:775/83%",
["Svensolle"] = "ET:278/82%EB:680/88%EM:662/91%",
["Otte"] = "CB:63/7%UM:89/27%",
["Shagol"] = "EB:651/88%EM:780/89%",
["Daduro"] = "UB:115/29%UM:165/43%",
["Firsthit"] = "ST:707/99%LB:645/97%EM:828/91%",
["Lifestealer"] = "LT:468/96%EB:381/76%RM:395/74%",
["Tenebraeus"] = "UB:181/44%UM:408/46%",
["Mightymask"] = "ET:600/80%EB:641/83%EM:717/85%",
["Axcent"] = "EB:625/81%RM:657/68%",
["Wondar"] = "LT:427/95%EB:525/93%EM:796/85%",
["Arkhaana"] = "EB:603/79%EM:714/78%",
["Dermigrant"] = "UT:114/43%EB:628/82%LM:922/95%",
["Sugma"] = "RB:495/65%EM:893/91%",
["Snadrock"] = "RT:555/74%EB:374/80%EM:371/78%",
["Tillymilly"] = "ET:342/89%EB:451/84%EM:789/83%",
["Phril"] = "CT:58/19%RB:318/67%UM:277/28%",
["Raysen"] = "RT:210/71%EB:419/85%EM:767/82%",
["Deschain"] = "RB:514/71%EM:833/86%",
["Trixtar"] = "ET:345/88%EB:520/88%LM:779/95%",
["Odgen"] = "RT:397/57%RB:309/67%EM:817/91%",
["Taidan"] = "UB:284/39%RM:502/55%",
["Talokar"] = "UT:123/47%EB:682/87%EM:841/87%",
["Mason"] = "ET:343/93%EB:399/83%EM:782/87%",
["Silka"] = "UT:92/35%RB:503/71%EM:426/83%",
["Täzma"] = "CT:28/5%EB:562/76%RM:608/67%",
["Spawni"] = "ET:254/84%EB:414/85%LM:733/96%",
["Mesi"] = "ET:718/92%EB:554/91%EM:885/92%",
["Berka"] = "LT:557/97%EB:492/90%UM:358/42%",
["Payolo"] = "EB:328/75%UM:259/26%",
["Zdead"] = "UT:305/41%EB:601/78%EM:885/90%",
["Marleya"] = "EB:640/84%EM:907/94%",
["Neylea"] = "RB:337/55%EM:726/86%",
["Enzør"] = "EB:405/79%EM:822/85%",
["Fritze"] = "ET:248/77%EB:448/87%LM:897/95%",
["Eulkohol"] = "EB:510/84%EM:667/86%",
["Deadpaul"] = "RT:154/56%EB:648/85%EM:820/87%",
["Kiq"] = "UT:243/45%EB:493/76%EM:767/89%",
["Slicê"] = "UB:154/37%RM:360/71%",
["Dragoras"] = "RT:167/60%EB:575/76%EM:795/85%",
["Arathia"] = "ET:266/82%EB:603/86%EM:572/88%",
["Dárvina"] = "UT:87/40%EB:630/83%RM:482/57%",
["Crounga"] = "ET:287/83%EB:550/92%LM:768/96%",
["Federleicht"] = "ET:530/88%EB:597/87%LM:782/96%",
["Tyrac"] = "UT:99/45%RB:275/68%RM:551/71%",
["Robenrolf"] = "ET:385/92%RB:312/72%RM:484/53%",
["Apfelbrei"] = "RT:219/73%EB:710/91%EM:408/81%",
["Icegate"] = "CB:179/23%UM:92/35%",
["Dranit"] = "UT:173/37%EB:650/88%RM:407/63%",
["Roamie"] = "UB:279/36%RM:204/58%",
["Fruchtmark"] = "UB:305/39%UM:109/40%",
["Lamyai"] = "EB:594/77%EM:797/83%",
["Kors"] = "ET:394/94%EB:592/83%EM:845/92%",
["Neckarbub"] = "RB:522/73%EM:644/75%",
["Eiskoitd"] = "ET:265/79%EB:406/79%RM:284/62%",
["Fleety"] = "ET:477/89%EB:501/84%EM:621/83%",
["Orkolov"] = "CB:143/15%UM:202/25%",
["Sanjîn"] = "RB:531/73%RM:245/60%",
["Khorosan"] = "RT:213/71%EB:481/86%RM:678/72%",
["Rody"] = "ET:417/94%EB:506/88%EM:589/88%",
["Volkan"] = "RB:373/52%UM:318/31%",
["Eisor"] = "CT:51/17%EB:462/86%RM:633/69%",
["Dazzl"] = "RB:477/66%RM:514/54%",
["Corall"] = "RT:194/67%EB:597/83%LM:814/97%",
["Auriell"] = "EB:601/78%EM:828/86%",
["Zyia"] = "EB:617/80%EM:786/82%",
["Atarnia"] = "RB:376/53%EM:802/85%",
["Ranzig"] = "ET:651/89%EB:719/93%EM:777/89%",
["Mirynda"] = "RB:280/63%UM:401/45%",
["Walfemaw"] = "EB:489/77%UM:407/44%",
["Rednairab"] = "UT:233/30%EB:640/83%RM:710/74%",
["Wárcrack"] = "ET:348/91%UB:141/36%EM:340/75%",
["Eomaximus"] = "RT:399/73%LB:742/96%EM:872/94%",
["Lêya"] = "CT:104/13%RB:448/64%RM:295/70%",
["Rastagur"] = "ET:402/93%EB:562/79%EM:528/89%",
["Teebag"] = "CB:64/7%RM:680/73%",
["Uncarrybär"] = "ET:346/92%EB:458/91%EM:838/93%",
["Stresskiller"] = "ET:305/83%EB:642/83%EM:494/81%",
["Béllatrix"] = "CB:173/22%EM:709/77%",
["Teroc"] = "LT:573/97%EB:583/92%EM:733/78%",
["Ðepp"] = "ET:262/81%RB:532/70%RM:600/67%",
["Adiwulf"] = "RB:538/73%EM:737/79%",
["Pavlovic"] = "EB:423/82%RM:306/68%",
["Peperogue"] = "CB:67/8%CM:74/9%",
["Piccoló"] = "LT:607/98%EB:727/94%EM:881/93%",
["Olalie"] = "ET:277/80%EB:589/78%RM:593/61%",
["Rayce"] = "UB:376/49%EM:739/80%",
["Barbarian"] = "ET:430/94%EB:607/94%LM:832/97%",
["Trape"] = "RT:175/59%RB:514/69%RM:339/69%",
["Pipistrellus"] = "RB:238/57%UM:198/29%",
["Sabbsie"] = "RB:509/67%RM:339/71%",
["Dinorider"] = "RT:176/62%RB:369/53%EM:416/82%",
["Emong"] = "UB:211/28%",
["Illa"] = "RT:198/68%RB:482/68%EM:780/83%",
["Permafrost"] = "ET:230/75%EB:594/78%EM:431/83%",
["Conholio"] = "UB:245/30%UM:125/38%",
["Siellana"] = "LT:505/96%EB:510/87%RM:665/71%",
["Urus"] = "ET:320/91%EB:414/84%RM:214/59%",
["Snoweye"] = "RB:535/70%EM:742/78%",
["Fearvswilly"] = "RB:491/67%CM:139/18%",
["Bratzinator"] = "RB:206/52%UM:178/48%",
["Buyo"] = "CT:30/7%RB:446/58%UM:290/34%",
["Rüya"] = "UT:132/49%UB:260/36%CM:59/23%",
["Garitos"] = "LT:448/95%EB:663/90%EM:759/88%",
["Yabura"] = "LT:564/97%EB:489/86%EM:791/84%",
["Madisa"] = "ET:564/75%RB:485/65%EM:494/81%",
["Sunshinacid"] = "UB:247/26%EM:592/78%",
["Tortorp"] = "ET:525/78%EB:510/91%EM:750/88%",
["Bizarre"] = "ET:264/80%EB:530/76%LM:715/95%",
["Pompyrosa"] = "LB:599/96%EM:900/93%",
["Teamworc"] = "LT:740/95%LB:592/95%LM:747/97%",
["Steamtank"] = "LT:584/98%EB:548/93%EM:859/92%",
["Crowblack"] = "UB:254/31%UM:171/44%",
["Rüplin"] = "ET:357/90%RB:508/69%UM:449/49%",
["Dagothdyson"] = "RB:446/63%EM:703/76%",
["Grengar"] = "ET:259/79%RB:551/74%EM:763/80%",
["Koratan"] = "ET:318/87%EB:450/83%EM:607/89%",
["Maanu"] = "RT:167/60%RB:447/59%EM:687/79%",
["Husela"] = "UT:82/32%EB:456/84%EM:795/84%",
["Freezebait"] = "ET:311/87%EB:430/86%RM:613/72%",
["Einmaleins"] = "CB:115/13%UM:63/33%",
["Mæze"] = "RB:521/69%RM:664/73%",
["Senor"] = "ET:614/81%EB:715/90%EM:754/82%",
["Fellpflege"] = "LT:741/96%EB:609/90%EM:775/90%",
["Aronall"] = "UT:76/27%RB:397/54%RM:538/55%",
["Ottine"] = "RB:542/71%RM:668/69%",
["Cled"] = "ET:273/83%RB:510/70%EM:543/86%",
["Azarel"] = "RB:207/54%UM:355/37%",
["Yit"] = "ET:619/82%EB:699/89%EM:809/86%",
["Jaradis"] = "UT:218/29%RB:567/74%RM:689/74%",
["Oíle"] = "UT:95/36%EB:395/82%EM:540/87%",
["Dashe"] = "UT:115/44%EB:558/92%EM:853/89%",
["Bandash"] = "UB:183/44%UM:97/32%",
["Ipp"] = "EB:498/84%EM:542/92%",
["Orcaholic"] = "RB:294/65%UM:480/49%",
["Rhazul"] = "ET:352/88%RB:304/65%UM:329/33%",
["Dranedor"] = "EB:632/86%EM:715/78%",
["Vargas"] = "RT:145/53%RB:524/70%RM:635/70%",
["Lahabrëa"] = "LT:444/95%EB:668/86%LM:812/96%",
["Bilandir"] = "RB:509/70%UM:434/45%",
["Odersonst"] = "EB:571/85%EM:758/89%",
["Bimø"] = "EB:384/77%EM:418/77%",
["Uuodan"] = "RT:186/62%EB:639/83%RM:598/64%",
["Xothwyr"] = "UB:260/35%RM:271/61%",
["Gundrak"] = "UT:208/27%EB:467/84%RM:649/70%",
["Nisarâ"] = "RB:306/68%CM:258/24%",
["Bigorc"] = "CT:46/14%UB:191/25%CM:98/12%",
["Eplix"] = "UB:163/44%",
["Arceia"] = "UB:364/49%RM:397/72%",
["Licher"] = "CB:48/10%CM:59/5%",
["Sourtangie"] = "RB:539/72%RM:337/66%",
["Kradrok"] = "EB:668/89%EM:850/89%",
["Chrósed"] = "CT:27/1%RB:531/71%EM:731/78%",
["Kurutas"] = "ET:262/80%RB:513/74%EM:652/94%",
["Monijanaea"] = "CT:19/3%",
["Bissgurn"] = "RT:148/54%EB:398/82%EM:371/78%",
["Zapata"] = "RT:208/70%RB:295/70%EM:789/84%",
["Darkcláw"] = "CT:93/11%RB:444/62%RM:663/70%",
["Mareza"] = "EB:449/83%RM:631/65%",
["Rasputina"] = "EB:389/79%RM:598/66%",
["Legendeoida"] = "UB:149/36%UM:418/47%",
["Azorkaohnetf"] = "UB:185/45%EM:719/79%",
["Anomen"] = "UB:131/32%CM:109/14%",
["Hît"] = "LB:749/95%EM:916/94%",
["Kromh"] = "RT:424/57%RB:437/59%UM:302/30%",
["Saifuu"] = "LT:446/95%EB:544/93%EM:647/81%",
["Tarsu"] = "ET:351/88%UB:326/43%UM:139/42%",
["Tarno"] = "RB:309/66%UM:179/45%",
["Loureiro"] = "ET:331/86%EB:665/86%EM:759/81%",
["Taigasha"] = "ST:648/99%EB:646/92%EM:674/87%",
["Sejeti"] = "ET:453/82%EB:570/94%LM:886/98%",
["Morgane"] = "LB:771/97%EM:916/94%",
["Eleja"] = "EB:577/76%EM:769/80%",
["Severyn"] = "RB:550/72%EM:573/87%",
["Xeera"] = "RB:284/64%EM:728/77%",
["Hefedruff"] = "RB:537/68%RM:596/64%",
["Hépatitis"] = "UT:303/42%RB:529/70%EM:708/75%",
["Braa"] = "CT:172/22%RB:516/70%RM:527/58%",
["Luks"] = "ET:403/93%EB:538/90%EM:843/87%",
["Elphe"] = "EB:425/86%RM:594/65%",
["Rumja"] = "CT:65/22%RB:392/52%RM:220/51%",
["Aristocat"] = "RT:174/62%EB:450/83%EM:726/78%",
["Totz"] = "ET:608/81%EB:612/85%EM:823/91%",
["Sperrdiff"] = "ET:320/89%EB:611/84%EM:747/87%",
["Menace"] = "ET:304/90%EB:406/83%EM:810/89%",
["Zóvax"] = "UB:378/49%RM:553/65%",
["Minghus"] = "RT:172/62%RB:506/67%EM:740/78%",
["Dwarush"] = "RT:198/72%EB:567/80%EM:590/87%",
["Catmann"] = "RT:215/71%RB:528/70%RM:502/55%",
["Sarios"] = "UB:313/43%EM:789/82%",
["Kuhlibri"] = "RT:186/66%RB:504/66%EM:859/88%",
["Aengus"] = "UT:223/28%RB:451/57%EM:750/79%",
["Slipislap"] = "UB:141/35%UM:253/30%",
["Lillianâ"] = "RB:497/67%RM:557/57%",
["Flickrèd"] = "CT:102/13%EB:589/93%RM:296/66%",
["Zîmane"] = "ET:294/82%EB:501/87%EM:652/90%",
["Brunine"] = "RB:326/74%EM:665/77%",
["Modrik"] = "UT:302/41%EB:631/81%EM:724/75%",
["Lennya"] = "UT:103/39%RB:559/74%EM:785/84%",
["Aostianer"] = "UT:118/42%RB:480/63%EM:762/81%",
["Petpull"] = "UB:266/36%EM:796/83%",
["Forscience"] = "CT:0/0%UB:291/37%RM:629/69%",
["Delson"] = "RT:202/69%EB:669/85%RM:652/72%",
["Greni"] = "CT:59/21%EB:635/83%EM:836/88%",
["Meckspöse"] = "UT:104/37%UB:333/46%RM:506/52%",
["Rappanui"] = "EB:609/81%RM:665/72%",
["Eviter"] = "RB:545/72%EM:896/93%",
["Bâlin"] = "CT:50/17%RB:468/64%EM:554/86%",
["Quappa"] = "ET:257/79%EB:668/86%EM:751/79%",
["Kroson"] = "LT:443/95%EB:527/89%RM:676/72%",
["Jallu"] = "RB:439/61%RM:359/73%",
["Capp"] = "CT:55/22%UB:326/39%RM:190/50%",
["Evenclark"] = "RT:193/67%EB:450/83%RM:666/72%",
["Yungthomas"] = "UB:229/31%EM:836/85%",
["Stromina"] = "EB:375/76%RM:686/74%",
["Shotstorm"] = "CT:53/18%RB:433/60%EM:396/76%",
["Heidimaus"] = "EB:636/82%EM:826/85%",
["Trickchick"] = "UB:312/42%RM:560/60%",
["Haunix"] = "EB:668/89%EM:889/94%",
["Satrys"] = "ET:620/82%EB:696/89%EM:718/77%",
["Nur"] = "RB:321/63%EM:375/76%",
["Ayze"] = "RB:213/55%RM:612/67%",
["Magor"] = "UT:101/38%CB:162/20%RM:234/57%",
["Ezreal"] = "EB:582/76%EM:725/75%",
["Hedwich"] = "LB:733/96%EM:816/92%",
["Papezz"] = "EB:685/88%EM:640/75%",
["Grüßkein"] = "UT:103/40%CB:196/24%EM:338/75%",
["Timba"] = "RB:297/61%EM:489/84%",
["Featch"] = "CB:36/3%CM:65/9%",
["Ritta"] = "UB:340/47%UM:240/30%",
["Horick"] = "CB:81/10%CM:126/11%",
["Evipevi"] = "RB:482/64%EM:746/80%",
["Tarkaran"] = "RB:496/65%RM:604/65%",
["Ñoisi"] = "UB:335/43%UM:207/26%",
["Ylae"] = "UB:274/30%RM:545/58%",
["Kryschtl"] = "UT:194/25%EB:591/78%EM:810/86%",
["Valjiin"] = "RB:551/73%EM:750/81%",
["Câllísto"] = "EB:588/76%EM:535/84%",
["Lakami"] = "RB:406/55%UM:121/38%",
["Graser"] = "UT:51/42%RB:437/70%EM:775/87%",
["Gummibärtl"] = "EB:568/75%EM:709/77%",
["Jabberwalky"] = "RT:165/60%RB:302/67%RM:524/55%",
["Catchme"] = "UB:259/35%EM:815/80%",
["Zelenta"] = "EB:668/86%EM:853/88%",
["Unislam"] = "ET:269/82%EB:705/90%EM:909/94%",
["Misslegend"] = "CT:167/21%RB:551/73%RM:300/71%",
["Karengar"] = "EB:525/78%EM:635/78%",
["Baalthasar"] = "UB:181/45%UM:417/42%",
["Kleci"] = "UT:327/42%RB:328/69%EM:607/88%",
["Farmie"] = "EB:455/83%RM:571/62%",
["Simsalaba"] = "EB:444/87%EM:756/85%",
["Kleincurry"] = "RB:543/72%RM:360/71%",
["Gorleck"] = "ET:272/84%EB:603/84%EM:828/91%",
["Lipsh"] = "ET:546/76%RB:477/63%EM:750/79%",
["Birdreinholz"] = "UT:80/32%RB:64/62%UM:109/35%",
["Bafo"] = "UT:333/43%RB:306/65%EM:437/75%",
["Devilfear"] = "RT:228/72%RB:402/55%UM:109/35%",
["Lorianaa"] = "CB:174/20%RM:323/68%",
["Dodd"] = "LB:653/96%EM:892/91%",
["Flyinghirsch"] = "RB:488/66%EM:552/86%",
["Wambox"] = "UB:234/30%RM:490/55%",
["Johndo"] = "UB:349/40%RM:638/68%",
["Neunblatt"] = "UT:321/41%RB:439/61%EM:419/82%",
["Pretension"] = "EB:499/81%EM:563/79%",
["Takane"] = "ET:317/88%EB:662/89%EM:524/77%",
["Adderall"] = "UB:237/32%RM:289/70%",
["Proxímo"] = "RT:182/65%RB:450/63%RM:596/63%",
["Noizee"] = "UB:334/46%RM:533/56%",
["Chunkylu"] = "RT:138/52%EB:424/81%EM:781/82%",
["Kùh"] = "RT:299/54%RB:428/65%EM:594/78%",
["Rolang"] = "CT:53/18%RB:522/69%EM:793/88%",
["Zîrâel"] = "LT:360/96%EB:382/86%EM:515/91%",
["Casydi"] = "ET:340/91%EB:671/90%LM:935/96%",
["Deadpull"] = "CB:195/23%UM:82/28%",
["Tezzer"] = "UB:357/49%UM:466/48%",
["Ubik"] = "RB:389/54%RM:592/65%",
["Delacruz"] = "EB:638/88%EM:542/92%",
["Igiapostel"] = "RB:249/58%RM:485/54%",
["Candeya"] = "CB:135/15%UM:301/36%",
["Brutaloz"] = "UT:89/39%CB:156/17%RM:284/59%",
["Raynstekken"] = "EB:638/82%EM:821/81%",
["Asadena"] = "CT:29/7%EB:493/90%RM:375/74%",
["Powerpland"] = "RT:147/54%CB:43/3%UM:83/32%",
["Bluefflight"] = "CB:82/10%RM:571/63%",
["Dotscha"] = "EB:537/80%EM:323/81%",
["Onebutton"] = "CB:109/14%UM:94/36%",
["Tyrìon"] = "RB:584/74%RM:649/69%",
["Azmodon"] = "ET:265/80%RB:425/71%EM:556/87%",
["Mipsi"] = "RB:453/59%RM:595/61%",
["Eastbunny"] = "CB:162/22%RM:292/63%",
["Elêx"] = "CT:180/24%UB:382/49%EM:930/94%",
["Deviltry"] = "RM:239/54%",
["Oldschinken"] = "UB:229/31%UM:367/47%",
["Nazgu"] = "RT:466/62%RB:332/69%RM:548/59%",
["Khymage"] = "CB:136/18%EM:454/84%",
["Baloom"] = "RB:390/53%RM:368/71%",
["Grändoch"] = "UT:134/47%RB:435/56%RM:621/64%",
["Baltasar"] = "ET:267/81%EB:519/76%EM:588/77%",
["Navo"] = "RB:248/62%UM:390/46%",
["Gromgosh"] = "UB:112/28%",
["Phoxy"] = "RB:452/59%RM:589/61%",
["Onkuh"] = "RT:436/71%EB:702/92%EM:753/87%",
["Fàro"] = "RB:492/65%RM:560/59%",
["Gnock"] = "RB:502/71%RM:315/73%",
["Pancake"] = "UB:278/38%EM:749/81%",
["Zerog"] = "RT:146/54%EB:501/88%EM:736/94%",
["Proteinkind"] = "ET:282/83%EB:660/86%EM:815/86%",
["Kuslik"] = "CT:42/4%UB:320/44%RM:528/59%",
["Aettix"] = "CB:3/0%RM:245/55%",
["Wòów"] = "CT:140/18%RB:460/60%EM:720/75%",
["Babagandâlf"] = "CB:153/20%UM:319/37%",
["Nýøs"] = "RT:175/60%RB:448/61%EM:452/78%",
["Lumdir"] = "UT:87/35%UB:295/37%CM:22/4%",
["Boomlock"] = "RB:449/61%EM:634/90%",
["Mithrándir"] = "EB:533/93%EM:876/94%",
["Triebig"] = "RT:216/69%RB:522/68%EM:595/88%",
["Lacatalina"] = "RB:470/61%RM:641/66%",
["Gringolf"] = "EB:591/79%EM:694/75%",
["Thortha"] = "ST:723/99%LB:568/96%EM:784/93%",
["Warclif"] = "RT:395/54%EB:619/80%EM:526/84%",
["Astrodin"] = "RB:533/68%EM:826/85%",
["Scattler"] = "ET:339/90%EB:537/93%EM:738/87%",
["Zerodas"] = "EB:640/87%EM:549/93%",
["Turock"] = "ET:409/94%LB:595/95%LM:668/96%",
["Snola"] = "EB:663/91%EM:780/88%",
["Cirý"] = "UB:293/40%UM:434/48%",
["Marasume"] = "UT:86/37%EB:599/76%EM:706/75%",
["Angerfist"] = "RT:139/54%EB:537/79%LM:711/95%",
["Feareck"] = "UB:234/31%RM:649/67%",
["Arthemîs"] = "CT:82/10%RB:421/59%EM:782/82%",
["Grimbald"] = "EB:583/76%EM:580/87%",
["Crankor"] = "ET:617/87%EB:649/89%EM:830/91%",
["Acurø"] = "EB:644/84%EM:921/94%",
["Protéx"] = "LT:497/97%EB:627/87%EM:632/80%",
["Exaria"] = "RT:223/71%EB:645/91%EM:757/89%",
["Madria"] = "RT:164/59%RB:365/52%CM:108/9%",
["Durakas"] = "ET:597/85%LB:697/95%LM:867/95%",
["Aufidius"] = "RT:153/53%RB:504/66%EM:423/76%",
["Tedescó"] = "CT:79/10%UB:302/41%CM:89/9%",
["Rowni"] = "EB:583/81%LM:722/96%",
["Wilddieb"] = "RB:502/66%UM:113/38%",
["Nyraes"] = "CT:35/9%CB:172/22%RM:242/54%",
["Dachses"] = "CB:26/0%CM:43/13%",
["Lynstar"] = "UB:250/34%UM:437/48%",
["Winchesto"] = "CT:174/22%UB:214/27%CM:155/19%",
["Asherali"] = "UB:287/36%UM:429/43%",
["Xerveros"] = "UB:105/28%RM:590/64%",
["Wiskas"] = "CB:76/19%CM:230/23%",
["Gamjee"] = "RB:286/68%RM:461/50%",
["Salbeisucht"] = "LT:439/97%EB:498/84%EM:580/81%",
["Noisi"] = "UT:93/33%RB:303/66%UM:466/47%",
["Huntchirurg"] = "UB:319/44%UM:164/48%",
["Ironjule"] = "RB:460/60%EM:744/78%",
["Lenfaki"] = "RB:357/50%EM:761/77%",
["Grandaif"] = "UB:196/25%EM:760/82%",
["Moandus"] = "RB:474/62%",
["Rìn"] = "LT:648/98%EB:688/88%RM:612/67%",
["Erounes"] = "RB:208/51%RM:372/74%",
["Decarabia"] = "EB:424/81%RM:711/74%",
["Syoù"] = "UB:203/27%RM:430/51%",
["Nâyilah"] = "RT:165/59%EB:635/83%EM:875/91%",
["Liradox"] = "CT:26/4%CM:25/5%",
["Tyrockz"] = "EB:499/76%EM:826/91%",
["Galomus"] = "CT:155/20%EB:410/80%RM:629/69%",
["Synx"] = "ET:278/82%EB:615/81%EM:841/89%",
["Sónny"] = "CT:33/8%UB:257/34%RM:638/66%",
["Salandor"] = "LT:400/95%EB:642/90%EM:850/94%",
["Raygoosa"] = "CB:185/24%EM:340/75%",
["Gipsydanger"] = "RT:170/58%EB:699/89%EM:729/76%",
["Cery"] = "EB:608/81%EM:853/88%",
["Grummeltarik"] = "UT:34/36%EB:444/90%RM:293/62%",
["Isindril"] = "UB:222/29%CM:176/23%",
["Isapyou"] = "CM:40/4%",
["Minghis"] = "EB:591/75%EM:888/91%",
["Boyrotze"] = "UT:357/48%RB:405/55%EM:490/81%",
["Askora"] = "UB:169/43%UM:465/48%",
["Nerubi"] = "UB:352/45%UM:168/49%",
["Rabia"] = "ET:265/79%RB:337/71%UM:477/49%",
["Sylvanaris"] = "ET:241/80%EB:512/92%EM:834/91%",
["Costadamus"] = "UT:92/35%RB:482/64%EM:722/78%",
["Rovuldûr"] = "EB:582/76%EM:784/81%",
["Castiè"] = "CB:39/4%CM:200/19%",
["Lormadim"] = "RT:314/55%RB:391/65%EM:599/78%",
["Noxez"] = "CB:29/3%CM:87/11%",
["Rokhthroll"] = "UB:125/33%UM:294/30%",
["Montyburns"] = "RB:386/55%EM:657/94%",
["Splásher"] = "UB:318/43%RM:434/51%",
["Jalira"] = "ET:235/77%EB:561/85%EM:613/94%",
["Khabis"] = "CT:44/13%CB:174/21%RM:599/66%",
["Glutaros"] = "RT:170/61%RB:439/54%RM:688/73%",
["Rap"] = "UT:278/35%UB:325/42%RM:664/72%",
["Kakami"] = "CT:38/3%CB:107/13%CM:156/18%",
["Alvhoran"] = "RT:206/70%UB:204/25%RM:195/52%",
["Rym"] = "RB:206/50%RM:543/57%",
["Bulletproof"] = "EB:602/89%EM:634/93%",
["Yrkoon"] = "CB:42/4%",
["Timehaze"] = "RB:278/64%",
["Lóla"] = "RB:252/63%RM:622/68%",
["Slîcê"] = "EB:659/85%EM:782/82%",
["Sturzzi"] = "ET:311/86%RB:440/60%UM:354/40%",
["Iamdead"] = "LT:491/96%EB:541/77%LM:721/95%",
["Hackepetrâ"] = "EB:372/76%EM:592/81%",
["Kyrill"] = "EB:620/85%EM:587/77%",
["Naenjin"] = "CT:106/13%UB:311/43%EM:459/81%",
["Hamstiwamsti"] = "CB:95/24%UM:160/45%",
["Óldsql"] = "CB:27/0%CM:109/13%",
["Boogta"] = "RT:210/74%RB:484/72%EM:845/92%",
["Ballistolia"] = "CT:49/16%UB:196/49%CM:182/21%",
["Arlas"] = "CT:8/4%RB:451/64%RM:591/69%",
["Tretroller"] = "RT:160/59%RB:232/56%RM:592/63%",
["Hitbyastick"] = "CT:173/22%UB:348/47%UM:404/48%",
["Afròózilla"] = "RB:417/69%EM:491/84%",
["Ðirtydotter"] = "CB:133/18%RM:461/51%",
["Tuceis"] = "RT:145/54%RB:245/61%RM:555/61%",
["Dontbmad"] = "CB:35/3%UM:173/44%",
["Rínc"] = "RB:470/62%RM:688/73%",
["Muzh"] = "UB:207/42%RM:133/57%",
["Ceyy"] = "UB:237/32%EM:833/86%",
["Kurtkuhbrain"] = "RT:171/66%EB:669/89%EM:799/90%",
["Dhaostra"] = "EB:733/92%EM:809/84%",
["Ðaruzéus"] = "ET:355/91%EB:625/87%EM:496/90%",
["Zyânkâli"] = "ET:367/76%RB:431/73%EM:352/75%",
["Melvana"] = "CT:97/12%CB:94/10%RM:488/53%",
["Joshshock"] = "UT:68/46%RB:181/53%RM:507/68%",
["Kalkone"] = "CB:29/1%CM:29/1%",
["Greffty"] = "EB:606/79%EM:818/85%",
["Vexo"] = "CT:103/13%RB:448/61%RM:502/56%",
["Bananajones"] = "RB:407/55%UM:375/38%",
["Quisey"] = "RT:158/58%RB:277/63%RM:668/71%",
["Drivebypetra"] = "UB:334/46%RM:253/61%",
["Yoi"] = "ET:262/86%EB:644/89%LM:892/95%",
["Bubsi"] = "RT:112/52%RB:313/58%RM:500/67%",
["Ecliptica"] = "LT:556/98%SB:681/99%EM:672/94%",
["Inoxan"] = "ET:600/90%EB:700/93%EM:840/93%",
["Schamgrat"] = "RT:147/67%EB:500/78%EM:683/84%",
["Groschnak"] = "CT:22/8%UB:232/26%UM:205/49%",
["Arkstar"] = "UB:295/40%RM:475/56%",
["Mordalekh"] = "ET:442/94%UB:369/49%UM:330/38%",
["Luarina"] = "RB:314/72%UM:357/38%",
["Dräger"] = "CT:0/0%UB:122/33%UM:68/26%",
["Grandfather"] = "CB:84/23%CM:70/9%",
["Sindarian"] = "CB:113/14%UM:358/36%",
["Grzimek"] = "CT:79/9%UB:142/36%RM:177/50%",
["Lenoa"] = "ET:267/83%EB:497/76%EM:593/78%",
["Texel"] = "CB:187/24%UM:397/42%",
["Anukat"] = "RT:369/61%EB:653/84%EM:831/91%",
["Cradran"] = "RT:156/54%UB:329/45%UM:218/27%",
["Zoras"] = "CB:56/6%RM:534/59%",
["Farnel"] = "ET:596/79%EB:579/83%EM:748/87%",
["Ailish"] = "UT:71/25%CB:162/21%UM:142/42%",
["Jacid"] = "CT:179/24%EB:690/88%EM:896/92%",
["Mclovín"] = "CB:71/9%EM:890/90%",
["Canttouch"] = "RT:126/53%RB:305/57%",
["Ðaisy"] = "CT:105/18%RB:167/52%EM:843/92%",
["Najola"] = "UB:105/29%RM:503/56%",
["Darkretard"] = "RT:211/68%EB:452/82%RM:614/66%",
["Hermos"] = "CB:191/22%UM:127/38%",
["Grea"] = "CB:119/16%EM:731/83%",
["Artaxerxes"] = "LT:491/96%EB:667/90%EM:818/91%",
["Rockstead"] = "CB:31/2%CM:58/18%",
["Freakozoid"] = "EB:503/80%EM:612/92%",
["Idian"] = "CB:85/23%RM:237/56%",
["Ziasch"] = "UB:362/45%EM:442/78%",
["Gosat"] = "ET:342/83%RB:191/62%EM:417/87%",
["Rechosen"] = "ET:574/77%EB:631/81%EM:685/75%",
["Nelphiana"] = "ET:310/75%EB:479/77%RM:476/69%",
["Grischnack"] = "RT:142/62%RB:291/58%RM:481/65%",
["Winship"] = "UB:173/46%UM:352/37%",
["Feezy"] = "CB:57/6%UM:256/31%",
["Shockerzz"] = "CT:46/9%CB:137/15%UM:133/40%",
["Ani"] = "LT:550/98%EB:429/76%EM:553/79%",
["Loeckchen"] = "ET:231/78%EB:481/90%RM:604/68%",
["Gorc"] = "CB:92/10%RM:113/53%",
["Butchertwo"] = "RB:430/58%UM:414/46%",
["Waisted"] = "CT:47/5%CB:154/21%UM:133/40%",
["Sueton"] = "RB:550/73%EM:675/94%",
["Tyrocz"] = "RB:417/56%RM:644/70%",
["Vaikesh"] = "CT:53/17%UB:91/25%UM:210/26%",
["Shilock"] = "RB:227/54%CM:127/18%",
["Maaii"] = "CT:36/3%RB:428/56%RM:594/65%",
["Caimie"] = "EB:359/75%",
["Lillyfey"] = "RT:137/58%UB:188/48%EM:738/80%",
["Zeán"] = "RT:238/63%EB:522/78%EM:719/85%",
["Zerachiel"] = "LT:501/97%EB:713/93%EM:796/90%",
["Edscheppert"] = "LT:618/98%EB:549/91%EM:703/93%",
["Peroroncino"] = "RB:291/64%UM:288/32%",
["Hachtel"] = "CB:139/18%",
["Ímperator"] = "EB:458/76%EM:454/85%",
["Eqlipse"] = "CT:64/21%UB:308/42%UM:81/29%",
["Quuh"] = "UT:282/37%CB:92/11%EM:760/81%",
["Niszam"] = "CB:28/1%CM:75/7%",
["Chp"] = "LT:461/95%RB:397/57%UM:394/42%",
["Dermia"] = "RT:204/66%RB:423/57%CM:118/12%",
["Lezzbow"] = "RB:458/60%RM:635/68%",
["Pheanus"] = "RT:229/74%UB:304/40%RM:244/59%",
["Bobô"] = "CB:49/4%UM:364/36%",
["Ivanski"] = "RT:198/69%UB:201/27%UM:77/29%",
["Savz"] = "RT:370/63%EB:337/78%EM:764/88%",
["Bobhannsen"] = "LB:736/96%LM:922/97%",
["Farenwell"] = "CB:31/4%UM:72/25%",
["Sascon"] = "ET:576/83%EB:698/92%LM:903/95%",
["Andorion"] = "ET:314/82%EB:305/81%EM:719/89%",
["Whispér"] = "CB:70/8%CM:151/15%",
["Sikdropz"] = "CB:40/4%CM:58/22%",
["Josh"] = "CT:49/16%UB:210/28%",
["Donfogga"] = "UT:98/38%RB:203/50%UM:123/41%",
["Asterios"] = "RT:167/65%UB:121/43%EM:585/81%",
["Joika"] = "RB:204/50%UM:351/35%",
["Røtten"] = "CB:49/10%EM:454/77%",
["Mileyna"] = "UT:256/34%RB:541/72%EM:780/83%",
["Belair"] = "RT:133/53%RB:331/65%EM:662/83%",
["Pêregrin"] = "UB:266/36%UM:130/39%",
["Yalinar"] = "RB:177/61%RM:184/61%",
["Donnerknolle"] = "ET:314/88%EB:668/89%EM:807/90%",
["Icia"] = "UB:296/37%EM:727/77%",
["Cortex"] = "RB:345/50%UM:152/44%",
["Elkrassus"] = "EB:491/91%RM:604/66%",
["Riggs"] = "EB:506/77%RM:392/61%",
["Mìlchkuh"] = "CB:27/0%RM:531/56%",
["Rimûru"] = "UT:104/48%EB:420/90%EM:589/81%",
["Aiame"] = "LT:588/98%EB:438/86%EM:823/91%",
["Execute"] = "CB:32/2%",
["Madamemîm"] = "RB:524/70%UM:359/41%",
["Schiesgewehr"] = "UB:298/37%RM:211/56%",
["Portwurst"] = "CT:58/19%CB:125/16%RM:522/57%",
["Despoina"] = "CB:85/11%UM:130/39%",
["Rüeblipeter"] = "RT:226/68%RB:328/74%RM:551/71%",
["Urugashi"] = "LT:484/96%EB:655/89%EM:550/79%",
["Neverluckyqt"] = "RB:241/54%EM:540/87%",
["Istalantier"] = "UT:107/39%RB:464/62%RM:584/64%",
["Parisa"] = "RT:526/70%EB:548/76%EM:680/93%",
["Dermed"] = "CB:62/6%RM:205/55%",
["Wodi"] = "CB:34/2%UM:118/36%",
["Osy"] = "RB:186/57%UM:397/40%",
["Marodin"] = "EB:602/83%EM:858/91%",
["Dattebayo"] = "CT:54/16%RB:425/74%EM:630/79%",
["Gladvalakas"] = "CB:108/13%UM:299/31%",
["Basir"] = "EB:664/91%LM:935/97%",
["Axarius"] = "CT:94/11%RM:498/56%",
["Bearwillz"] = "CB:85/24%UM:138/43%",
["Evander"] = "UT:112/49%EB:518/75%EM:639/81%",
["Bôendal"] = "CB:79/10%UM:401/45%",
["Sinchen"] = "CB:172/21%RM:652/71%",
["Panicrockz"] = "EB:522/78%EM:674/80%",
["Handofundead"] = "UT:74/27%CB:156/19%RM:672/73%",
["Isaya"] = "CB:38/3%UM:102/33%",
["Letsrage"] = "ET:318/89%EB:534/93%EM:433/87%",
["Bosancino"] = "CB:55/4%EM:834/85%",
["Skamp"] = "EB:573/82%RM:574/73%",
["Elrini"] = "ET:466/81%RB:423/69%EM:686/94%",
["Gedot"] = "CB:45/4%",
["Crwley"] = "UT:81/37%LB:686/95%EM:502/92%",
["Shadowi"] = "RB:283/58%",
["Porttogo"] = "UB:122/35%CM:77/6%",
["Saldun"] = "CB:57/6%CM:68/6%",
["Niördr"] = "UB:266/35%UM:337/38%",
["Theldaris"] = "ET:348/91%EB:551/93%EM:490/90%",
["Palenko"] = "EB:523/83%LM:907/96%",
["Cubbi"] = "CB:130/16%",
["Meegødxqt"] = "RB:523/69%RM:603/66%",
["Carajoel"] = "CT:66/23%RB:519/68%RM:592/61%",
["Zungosh"] = "UT:102/40%RB:243/56%RM:334/70%",
["Blechwanne"] = "EB:634/86%EM:809/90%",
["Dirion"] = "EB:652/84%EM:869/89%",
["Oren"] = "CB:93/10%CM:129/17%",
["Leeløø"] = "CT:54/19%CB:76/20%CM:57/6%",
["Cyran"] = "EB:669/89%EM:668/83%",
["Tooeasybro"] = "LT:658/95%EB:687/94%LM:880/95%",
["Anuub"] = "CB:28/1%UM:137/41%",
["Ximmshot"] = "RB:422/58%RM:641/68%",
["Tripitz"] = "RB:509/66%UM:180/48%",
["Rottî"] = "CB:54/6%RM:235/57%",
["Têrrôr"] = "ET:453/83%EB:576/87%LM:891/95%",
["Clamina"] = "RT:379/58%EB:556/84%EM:690/86%",
["Musslos"] = "RT:164/59%EB:624/81%EM:876/90%",
["Discoz"] = "RB:507/68%UM:353/40%",
["Philow"] = "CT:52/5%RB:251/62%RM:536/63%",
["Wiefunztdes"] = "UB:213/29%UM:315/40%",
["Lookorc"] = "RT:491/68%RB:540/73%UM:341/38%",
["Mamp"] = "ET:292/85%EB:724/91%EM:899/92%",
["Sunhunter"] = "CB:37/3%",
["Ðarksoul"] = "CT:0/1%RB:367/72%EM:707/88%",
["Bärackobama"] = "RT:187/72%EB:479/82%EM:755/91%",
["Chnuuschti"] = "EB:397/75%EM:498/75%",
["Flaschenbier"] = "UT:240/31%RB:419/57%RM:267/62%",
["Juliusbläsar"] = "CT:24/4%CB:51/12%RM:250/58%",
["Linky"] = "CB:221/23%UM:393/40%",
["Gnobelchen"] = "RB:241/60%RM:503/60%",
["Bbykenny"] = "EB:549/79%EM:675/83%",
["Owatanka"] = "EB:615/85%EM:748/87%",
["Glamorous"] = "UB:345/44%UM:377/38%",
["Udellideldum"] = "RT:152/56%CB:182/22%RM:473/53%",
["Bere"] = "UT:208/41%EB:700/92%EM:557/79%",
["Hekatah"] = "UB:326/42%EM:408/81%",
["Dwarfix"] = "RB:547/72%RM:613/65%",
["Nedib"] = "ET:217/76%EB:474/90%EM:656/82%",
["Ingolf"] = "UB:257/35%EM:387/80%",
["Broman"] = "ET:571/83%EB:603/85%EM:718/85%",
["Thaipei"] = "CB:28/2%CM:194/19%",
["Suende"] = "RB:388/53%EM:441/79%",
["Lindie"] = "RT:309/56%EB:518/75%EM:748/87%",
["Ìhr"] = "UT:216/31%EB:679/86%RM:675/74%",
["Blutax"] = "ET:419/92%RB:453/71%RM:585/74%",
["Faizah"] = "CB:97/12%UM:420/43%",
["Droginda"] = "ET:391/93%RB:366/62%EM:342/82%",
["Kublaikahn"] = "RT:62/52%RB:267/68%RM:217/53%",
["Bämmlee"] = "UB:171/45%RM:353/73%",
["Tozar"] = "CB:62/6%UM:281/32%",
["Zappiboy"] = "RT:194/59%UB:221/49%UM:41/39%",
["Yelanà"] = "UB:354/47%CM:28/1%",
["Xhyra"] = "CT:44/13%CB:63/7%CM:81/10%",
["Thundrael"] = "RT:363/72%RB:442/70%EM:411/82%",
["Schwaadlappe"] = "CB:27/0%",
["Klingsor"] = "UB:405/49%RM:566/60%",
["Wischmob"] = "ET:285/85%EB:407/84%EM:782/89%",
["Titanox"] = "UB:123/32%UM:170/47%",
["Perrî"] = "EB:504/77%EM:642/84%",
["Diese"] = "RB:330/64%RM:466/66%",
["Toxxa"] = "CB:30/1%CM:57/4%",
["Bambusbjoern"] = "RT:188/66%RB:286/56%RM:482/65%",
["Obsyion"] = "CB:45/5%UM:292/35%",
["Bêren"] = "RT:162/70%EB:651/91%EM:667/83%",
["Fruchtzwerg"] = "UB:233/29%EM:347/76%",
["Askhar"] = "CB:92/10%UM:89/30%",
["Dreimaldrei"] = "UM:167/43%",
["Kesar"] = "UB:184/46%UM:358/41%",
["Samu"] = "ET:625/94%LB:600/96%LM:723/96%",
["Kraksh"] = "RB:433/66%EM:555/75%",
["Toraisu"] = "UT:91/36%UM:180/49%",
["Covidz"] = "CB:73/19%",
["Elmina"] = "CB:6/0%CM:36/2%",
["Flamongo"] = "UB:185/49%RM:620/68%",
["Hazar"] = "CT:75/14%RB:413/50%RM:605/65%",
["Spotty"] = "ET:313/88%EB:414/84%EM:604/78%",
["Buzbuz"] = "EB:420/78%RM:293/61%",
["Belz"] = "LT:414/95%LB:728/97%EM:689/89%",
["Nästy"] = "CB:98/12%UM:119/38%",
["Harkane"] = "RB:284/69%RM:485/72%",
["Redk"] = "RB:283/70%EM:787/90%",
["Winstalot"] = "CB:52/5%RM:481/50%",
["Darthjodler"] = "CB:80/10%RM:242/64%",
["Chinaböller"] = "UT:116/41%CB:85/11%",
["Primerib"] = "EB:590/89%RM:408/70%",
["Narrenkönîg"] = "CT:51/16%UB:258/32%RM:508/52%",
["Feryll"] = "RB:216/72%RM:222/71%",
["Quini"] = "CT:6/7%CB:41/3%UM:138/46%",
["Genjin"] = "CB:159/21%RM:474/53%",
["Azazul"] = "CB:36/3%UM:99/33%",
["Moontab"] = "ET:668/87%EB:537/77%EM:423/79%",
["Garusies"] = "CB:35/3%CM:52/18%",
["Lheanne"] = "UT:220/28%UB:246/32%RM:606/67%",
["Môntîê"] = "ET:255/81%EB:579/83%EM:696/84%",
["Sorbo"] = "CT:57/22%EB:607/84%EM:734/86%",
["Budspenca"] = "EB:546/85%EM:727/87%",
["Dltlly"] = "RB:289/58%EM:353/78%",
["Jecobites"] = "CB:81/9%UM:320/32%",
["Moonhoof"] = "RB:250/63%EM:559/79%",
["Snicksi"] = "CB:27/2%UM:302/31%",
["Bamtam"] = "UM:106/37%",
["Muhletproof"] = "RB:305/71%RM:351/66%",
["Pulp"] = "CB:135/17%RM:362/73%",
["Kalasch"] = "CT:0/0%CB:73/20%RM:249/64%",
["Lauralin"] = "UT:279/35%RB:356/51%EM:396/80%",
["Rekless"] = "EB:487/75%EM:483/75%",
["Bämchikawawa"] = "ET:297/89%EB:433/79%EM:311/78%",
["Flederkrebs"] = "UB:92/25%CM:161/22%",
["Nikií"] = "EB:298/80%EM:524/93%",
["Blackdevil"] = "UT:260/49%RB:419/69%EM:380/85%",
["Eyelah"] = "RB:330/62%RM:438/67%",
["Wîdow"] = "CT:121/20%EB:580/82%EM:713/85%",
["Rupat"] = "RT:233/72%UB:184/46%",
["Incenia"] = "EB:632/86%EM:740/87%",
["Elduderina"] = "RB:298/55%EM:482/75%",
["Katlok"] = "ET:276/82%RB:517/70%EM:452/80%",
["Puroc"] = "ET:236/79%RB:272/70%EM:597/78%",
["Aenni"] = "CB:160/20%RM:487/58%",
["Frôzen"] = "CB:141/19%UM:294/30%",
["Adromada"] = "CB:46/5%",
["Ayuwoki"] = "ET:346/92%LB:594/97%LM:614/95%",
["Garthog"] = "EB:625/86%EM:772/88%",
["Sundy"] = "CB:26/0%UM:339/35%",
["Koston"] = "CT:27/1%CM:148/17%",
["Evolyn"] = "CB:35/2%CM:140/12%",
["Damagedudu"] = "LT:563/98%LB:729/96%SM:840/99%",
["Fôxx"] = "RB:211/51%RM:402/64%",
["Yawan"] = "CM:254/24%",
["Fuqi"] = "CB:53/4%",
["Muhphistyo"] = "UT:220/42%EB:532/79%EM:826/88%",
["Turbowoller"] = "UT:112/49%CB:51/4%",
["Alekta"] = "RT:201/73%EB:415/79%RM:395/74%",
["Selefon"] = "CB:28/1%CM:92/8%",
["Resuna"] = "RT:317/73%EB:378/79%RM:283/66%",
["Brrbrauner"] = "RT:92/62%RB:349/74%RM:253/74%",
["Tâuidê"] = "EB:505/83%EM:807/93%",
["Braavos"] = "RB:355/71%EM:513/76%",
["Arkanum"] = "CB:34/3%",
["Defconia"] = "UT:119/27%UB:235/45%RM:194/68%",
["Thronus"] = "ET:232/78%EB:569/83%EM:569/76%",
["Pezz"] = "LT:545/97%EB:577/81%EM:672/83%",
["Lyrìa"] = "RB:225/73%EM:674/84%",
["Untill"] = "RT:167/65%EB:359/80%EM:714/85%",
["Coolwarri"] = "CB:73/17%RM:221/55%",
["Griseldae"] = "UB:108/29%EM:834/83%",
["Keanufreez"] = "ET:281/83%RB:400/55%CM:77/11%",
["Zetsuba"] = "CM:213/21%",
["Khymaro"] = "RB:523/72%EM:834/89%",
["Frostcarry"] = "ET:597/79%UB:252/32%UM:359/38%",
["Corrin"] = "CB:83/10%EM:851/84%",
["Mojoheal"] = "CB:130/14%UM:263/26%",
["Grimmgorgh"] = "RT:218/72%EB:625/81%RM:520/72%",
["Supraline"] = "UM:126/43%",
["Chey"] = "ET:285/86%EB:467/89%RM:320/62%",
["Karlegon"] = "RB:276/61%RM:510/52%",
["Winzenz"] = "ET:280/84%CB:189/20%RM:547/58%",
["Ocrom"] = "UB:333/41%UM:65/35%",
["Thracs"] = "RM:703/68%",
["Kimou"] = "CB:64/15%",
["Althos"] = "UT:139/43%EB:399/81%EM:712/82%",
["Dethroned"] = "UM:312/32%",
["Sls"] = "LT:817/96%LB:769/98%LM:968/98%",
["Vozzi"] = "RT:155/57%CB:53/5%UM:207/25%",
["Refizul"] = "ET:351/90%EB:563/76%RM:619/68%",
["Joebricks"] = "UT:285/36%RB:514/66%EM:819/85%",
["Theros"] = "RT:498/68%RB:516/68%EM:434/77%",
["Zwurzel"] = "CT:70/19%UB:100/42%EM:654/79%",
["Mopsiø"] = "UT:115/41%RB:448/60%EM:410/75%",
["Svalaa"] = "ET:338/89%EB:670/87%EM:868/89%",
["Narag"] = "CT:0/1%UB:111/29%CM:33/2%",
["Karlito"] = "CT:5/1%RM:241/58%",
["Fèeze"] = "ET:358/92%LB:759/96%EM:917/94%",
["Neyex"] = "ET:425/93%EB:465/84%EM:796/83%",
["Egalnix"] = "RT:191/66%RB:319/68%RM:278/62%",
["Tritum"] = "ET:288/76%EB:657/88%EM:864/91%",
["Prasebaka"] = "CM:58/22%",
["Justaoe"] = "ET:388/92%EB:449/86%UM:137/45%",
["Karania"] = "RT:537/71%SB:810/99%SM:1033/99%",
["Talismann"] = "UT:93/35%CB:68/6%RM:474/73%",
["Lavyen"] = "UT:92/33%UB:247/33%RM:335/66%",
["Malfurine"] = "UT:143/49%RB:242/58%RM:301/69%",
["Pûrple"] = "ET:293/83%EB:702/88%EM:881/90%",
["Samxubel"] = "LT:423/95%RB:554/73%EM:741/80%",
["Marcihalt"] = "ET:535/79%EB:634/88%EM:720/86%",
["Dgohn"] = "UT:374/48%EB:684/93%LM:942/97%",
["Moné"] = "RM:561/62%",
["Sankura"] = "RT:275/71%EB:697/93%EM:779/88%",
["Oschimoto"] = "CT:51/6%UB:306/41%RM:598/64%",
["Tharrokh"] = "UT:85/27%EB:644/87%EM:896/93%",
["Corô"] = "EB:445/83%CM:56/6%",
["Toomuchbro"] = "ET:353/91%EB:693/88%EM:520/83%",
["Noheels"] = "ET:261/81%EB:687/86%LM:964/97%",
["Nataliakillz"] = "ET:307/87%RM:560/63%",
["Ballerassi"] = "CT:2/2%CB:39/9%",
["Kue"] = "CB:134/16%EM:657/76%",
["Svarozic"] = "CT:25/0%UB:262/34%EM:647/80%",
["Nooku"] = "CT:36/2%EB:665/91%LM:949/97%",
["Atréyu"] = "UT:78/27%EB:731/92%LM:965/97%",
["Minø"] = "CB:28/2%CM:75/23%",
["Kobert"] = "ET:362/89%EB:694/93%LM:935/96%",
["Yavanna"] = "CT:156/18%RB:314/71%UM:288/33%",
["Güntard"] = "UB:235/31%UM:96/36%",
["Valorn"] = "RT:179/67%RB:222/57%EM:506/75%",
["Snoi"] = "RB:469/66%EM:421/82%",
["Hocuspocus"] = "EB:609/79%RM:610/63%",
["Gheralt"] = "RT:150/52%UB:242/30%UM:424/43%",
["Creli"] = "RT:439/66%EB:559/87%EM:780/92%",
["Ranma"] = "CT:74/24%EB:553/76%EM:774/84%",
["Lockda"] = "CT:73/9%RM:501/51%",
["Snackautômat"] = "RT:201/69%UB:193/25%UM:338/40%",
["Elenôr"] = "RT:549/72%RB:446/60%RM:586/64%",
["Ätschbäsch"] = "ET:643/84%EM:765/81%",
["Laveria"] = "ET:596/80%EB:599/79%UM:326/34%",
["Philosofee"] = "ET:670/88%RB:451/60%EM:776/83%",
["Hjonin"] = "RT:414/55%",
["Broba"] = "ET:562/88%EB:650/90%EM:848/92%",
["Ambish"] = "RT:458/62%RM:607/65%",
["Devohssa"] = "ET:617/82%EB:669/85%EM:702/92%",
["Grexdildo"] = "ET:790/94%EB:613/86%CM:43/4%",
["Beaslynde"] = "UT:335/41%RB:501/69%EM:780/84%",
["Eldôra"] = "CT:32/3%UM:197/25%",
["Retros"] = "RT:195/68%",
["Rohg"] = "UT:22/49%RM:101/51%",
["Felane"] = "EM:720/79%",
["Awuum"] = "UB:107/44%UM:142/48%",
["Skrorax"] = "UT:96/38%RB:272/61%RM:300/66%",
["Dumon"] = "RT:163/59%RB:217/50%RM:630/70%",
["Myskina"] = "RB:527/72%EM:701/76%",
["Belish"] = "UT:72/25%RB:224/52%UM:163/42%",
["Snuki"] = "UB:193/47%RM:352/61%",
["Zenon"] = "RM:226/52%",
["Exelsya"] = "CB:77/22%UM:151/49%",
["Luddzi"] = "LT:637/98%LB:572/95%EM:847/93%",
["Raiyu"] = "RB:410/54%EM:723/78%",
["Serapha"] = "UM:378/40%",
["Malvi"] = "LT:539/97%RB:375/54%RM:224/61%",
["Göhremöhre"] = "RB:418/58%EM:754/81%",
["Shadora"] = "RB:535/71%EM:754/81%",
["Knochenmühle"] = "CB:62/7%RM:241/54%",
["Chantii"] = "RM:500/71%",
["Eyunar"] = "RB:271/55%EM:631/80%",
["Snowchobi"] = "CM:157/20%",
["Agrobär"] = "RM:571/67%",
["Frøst"] = "RM:597/66%",
["Marlyia"] = "CM:99/9%",
["Assit"] = "CB:81/9%UM:332/39%",
["Lîenes"] = "RT:199/69%UB:204/48%RM:514/59%",
["Telchor"] = "EM:916/93%",
["Gloryandhole"] = "UB:289/38%RM:298/66%",
["Hugegnomeo"] = "EB:680/86%EM:789/83%",
["Grokal"] = "UB:145/48%CM:19/10%",
["Hzweiô"] = "UB:329/43%EM:675/78%",
["Atormeth"] = "RM:511/57%",
["Rippertina"] = "UM:345/40%",
["Zentallon"] = "RM:647/70%",
["Sanaki"] = "UB:317/44%UM:359/43%",
["Healblade"] = "CT:52/12%EB:547/78%UM:406/44%",
["Æna"] = "CB:144/19%RM:489/53%",
["Dapol"] = "UB:380/49%RM:501/57%",
["Fantz"] = "CT:161/21%CB:171/22%UM:288/34%",
["Boogiejay"] = "RB:304/60%RM:355/61%",
["Unfassbär"] = "ET:304/81%EB:432/90%RM:379/65%",
["Numenoria"] = "EB:648/82%EM:859/88%",
["Pk"] = "UM:204/46%",
["Wanzerus"] = "UB:330/42%RM:602/64%",
["Mixxa"] = "UB:182/48%RM:230/67%",
["Fingototz"] = "CB:27/2%UM:110/35%",
["Firstkite"] = "EM:397/81%",
["Prachus"] = "CB:197/24%CM:29/1%",
["Toede"] = "CT:60/23%CB:110/12%",
["Schnittkraut"] = "RM:443/67%",
["Bibiblixberg"] = "RB:353/50%RM:209/59%",
["Izakk"] = "RM:543/60%",
["Yenyen"] = "EM:808/86%",
["Eydufresse"] = "UM:219/27%",
["Selrida"] = "ET:352/85%EB:519/92%RM:472/51%",
["Hankteiler"] = "RB:327/73%RM:206/56%",
["Knôcks"] = "LT:453/95%EB:546/93%EM:670/83%",
["Korgarr"] = "ET:251/84%EB:595/79%UM:350/37%",
["Schûlz"] = "ET:610/81%EB:403/83%EM:726/83%",
["Lysanne"] = "UB:171/44%RM:227/56%",
["Shemira"] = "RT:147/51%RB:399/51%UM:321/32%",
["Pinus"] = "EB:468/89%RM:462/51%",
["Leodas"] = "ET:605/86%EB:485/75%RM:463/73%",
["Thallid"] = "ET:228/75%UB:343/44%CM:112/10%",
["Flexxaxe"] = "RT:375/62%EB:498/91%UM:49/27%",
["Drkaysah"] = "UT:61/28%CB:25/0%CM:69/9%",
["Neftesare"] = "LT:477/95%EB:715/91%EM:822/86%",
["Graknor"] = "CB:25/0%CM:22/4%",
["Dasdeathz"] = "UT:131/42%EB:433/86%EM:704/77%",
["Midnax"] = "CT:166/22%UB:153/39%RM:207/56%",
["Vênôm"] = "RT:142/50%UB:193/46%RM:573/61%",
["Achmed"] = "RB:281/66%UM:391/46%",
["Venora"] = "ET:228/80%EB:372/78%RM:589/65%",
["Rexodo"] = "ET:371/91%EB:637/83%EM:728/78%",
["Biersäufer"] = "ET:203/87%EB:276/79%CM:44/12%",
["Chelseagrin"] = "UT:81/32%UB:208/49%RM:507/53%",
["Strumba"] = "ET:249/79%RB:283/64%EM:810/86%",
["Knurk"] = "CB:6/0%",
["Traglash"] = "LT:649/98%LB:637/97%EM:851/90%",
["Sandlerx"] = "ET:295/90%EB:682/93%EM:748/88%",
["Mändy"] = "RB:211/55%UM:331/34%",
["Terencekill"] = "ET:272/82%EB:516/89%EM:775/81%",
["Criloh"] = "UT:98/39%EB:670/87%EM:532/85%",
["Griesu"] = "CB:87/9%",
["Rapanzel"] = "EB:302/80%EM:417/86%",
["Blaidman"] = "RB:560/74%RM:612/67%",
["Konfutzía"] = "RB:393/55%RM:322/67%",
["Unkaputtbar"] = "RB:398/51%EM:493/75%",
["Metzelfetz"] = "CM:26/0%",
["Samaria"] = "UT:198/26%CB:123/16%UM:220/27%",
["Lohraz"] = "CB:70/17%CM:94/12%",
["Drannosh"] = "CB:174/19%CM:88/12%",
["Rambazamber"] = "RM:561/64%",
["Arcticline"] = "RB:463/67%RM:556/68%",
["Krawall"] = "UB:129/34%EM:809/84%",
["Fameya"] = "CT:143/18%EB:621/81%EM:866/90%",
["Sprängstoff"] = "CM:215/21%",
["Olcapown"] = "EB:589/77%EM:761/80%",
["Faas"] = "RM:331/65%",
["Solarie"] = "CT:0/2%UB:102/40%UM:281/48%",
["Nosering"] = "RT:374/52%EB:741/93%LM:922/96%",
["Retra"] = "ET:420/94%EB:411/83%EM:772/86%",
["Honteryx"] = "RB:403/52%RM:342/71%",
["Derronin"] = "UT:111/43%RB:315/68%EM:446/79%",
["Bigschmetter"] = "UB:91/44%RM:462/68%",
["Asterius"] = "CB:64/17%CM:186/18%",
["Árya"] = "RB:283/72%RM:176/65%",
["Ioph"] = "CB:34/3%CM:37/4%",
["Noctus"] = "CT:168/22%RB:336/71%RM:561/55%",
["Pilefatz"] = "RB:376/53%RM:547/60%",
["Flitchen"] = "UB:215/28%RM:195/56%",
["Tyrel"] = "EM:402/77%",
["Enduka"] = "EB:343/75%RM:536/63%",
["Doomday"] = "ET:572/76%RB:220/54%RM:515/64%",
["Schmankerl"] = "UB:173/48%RM:215/61%",
["Falktan"] = "CM:169/20%",
["Meeysi"] = "EB:552/90%RM:593/61%",
["Quantenport"] = "RM:158/50%",
["Deadblood"] = "UB:349/44%RM:623/70%",
["Alpakka"] = "RM:600/62%",
["Gummlin"] = "UM:398/45%",
["Kartana"] = "EB:415/75%EM:421/77%",
["Hotblondeirl"] = "RB:516/71%EM:686/75%",
["Thríller"] = "CM:55/7%",
["Energie"] = "RB:316/72%RM:395/69%",
["Swåts"] = "CT:29/5%CM:117/15%",
["Creolophus"] = "UM:288/34%",
["Belorin"] = "CB:153/19%RM:606/67%",
["Totalfies"] = "CB:102/12%CM:202/20%",
["Cø"] = "UB:261/34%EM:723/81%",
["Cleen"] = "RM:283/63%",
["Beldric"] = "UM:47/36%",
["Drokor"] = "RM:314/72%",
["Ainz"] = "UB:114/32%UM:412/48%",
["Nesqi"] = "EB:628/80%LM:963/97%",
["Ihatelivo"] = "EB:568/75%RM:343/66%",
["Separtan"] = "RM:292/66%",
["Lyliania"] = "UB:213/26%EM:429/78%",
["Grejy"] = "RM:289/63%",
["Rolfinc"] = "RM:337/69%",
["Mogrimm"] = "ET:296/87%EB:594/85%EM:664/85%",
["Chesterjay"] = "RB:409/55%RM:470/52%",
["Clester"] = "LT:468/95%CB:72/8%EM:795/85%",
["Effy"] = "UB:231/29%RM:511/58%",
["Panzerramme"] = "RT:186/66%CB:174/18%CM:105/14%",
["Uldren"] = "EB:634/87%EM:838/89%",
["Kurt"] = "RM:497/57%",
["Turi"] = "RB:249/57%RM:457/50%",
["Forester"] = "CM:32/2%",
["Sundancekid"] = "EB:492/90%RM:591/69%",
["Anih"] = "RB:296/65%EM:771/82%",
["Fergomor"] = "EB:605/80%EM:760/81%",
["Kafuna"] = "UM:252/29%",
["Lilapáuse"] = "ET:234/75%EB:648/83%RM:638/71%",
["Rokkoli"] = "EB:444/87%EM:605/78%",
["Reinhalten"] = "CT:34/9%RB:203/50%CM:167/20%",
["Xandee"] = "UT:353/49%RB:518/68%EM:814/87%",
["Arthimis"] = "UB:133/35%RM:506/56%",
["Belami"] = "CM:146/13%",
["Mórs"] = "RB:541/71%RM:622/64%",
["Oxicodon"] = "RT:517/65%EB:588/83%EM:798/89%",
["Auttomatikus"] = "UM:200/49%",
["Joeblob"] = "UM:209/26%",
["Paranoía"] = "CT:48/15%UB:349/46%EM:453/76%",
["Vinel"] = "RB:220/56%EM:402/81%",
["Vatoria"] = "CT:39/8%CB:138/16%RM:228/56%",
["Garoba"] = "RM:365/73%",
["Argoth"] = "CB:28/2%UM:210/40%",
["Bøøstêr"] = "RM:256/65%",
["Slimrock"] = "RM:635/69%",
["Locoputa"] = "RM:497/58%",
["Ittás"] = "EM:660/77%",
["Aylaniel"] = "EB:487/83%RM:234/72%",
["Larifari"] = "UT:224/27%CB:148/17%EM:405/76%",
["Hurator"] = "EM:724/89%",
["Yuvienne"] = "RT:536/70%EB:643/89%EM:495/84%",
["Cupytank"] = "UT:95/38%RB:406/52%RM:373/72%",
["Swoupine"] = "UB:246/33%RM:205/52%",
["Zaubärhafti"] = "EB:664/90%EM:851/90%",
["Theiana"] = "CB:42/4%UM:294/35%",
["Topmodel"] = "RM:326/74%",
["Mefí"] = "CT:73/8%UB:234/32%EM:833/88%",
["Boleslaw"] = "EM:347/76%",
["Zitrotim"] = "UB:210/28%UM:169/43%",
["Krispyclean"] = "UB:278/35%EM:703/76%",
["Oztafan"] = "CB:43/10%RM:260/66%",
["Ashiira"] = "RB:416/53%EM:826/85%",
["Destrella"] = "RM:529/58%",
["Mireille"] = "EM:740/84%",
["Miltenyi"] = "UM:288/33%",
["Kainza"] = "RM:541/64%",
["Nützlich"] = "EM:653/76%",
["Irreplace"] = "CT:150/16%RB:381/51%EM:757/84%",
["Ravorn"] = "UM:282/29%",
["Zoffdemstoff"] = "CT:147/19%RB:578/74%RM:602/66%",
["Primeape"] = "CB:30/1%RM:652/71%",
["Namoch"] = "RM:491/54%",
["Donpapi"] = "RM:501/55%",
["Baataa"] = "RM:524/58%",
["Reer"] = "RB:220/55%RM:549/64%",
["Eseltreiber"] = "CT:59/5%UB:160/41%UM:390/45%",
["Lajin"] = "RM:185/55%",
["Herbljad"] = "RB:262/66%UM:280/48%",
["Fatshark"] = "RM:511/60%",
["Pixxel"] = "EB:650/84%EM:708/76%",
["Jüntha"] = "RM:210/53%",
["Anârchie"] = "CB:105/11%UM:96/49%",
["Sunnyday"] = "CM:53/16%",
["Chôker"] = "UM:84/29%",
["Ripz"] = "EB:422/80%EM:531/82%",
["Faulesow"] = "UB:258/31%RM:515/55%",
["Zexika"] = "RM:584/62%",
["Eyó"] = "RB:455/65%EM:660/76%",
["Nysor"] = "CM:41/4%",
["Tríxxter"] = "CT:57/11%RB:482/72%EM:743/87%",
["Crashek"] = "CM:76/9%",
["Corruptéd"] = "UB:100/29%RM:294/70%",
["Sharaf"] = "RM:297/57%",
["Ivados"] = "UM:276/31%",
["Akkuhmulator"] = "ET:547/88%EB:660/92%EM:763/88%",
["Harrycritlz"] = "UM:394/45%",
["Belround"] = "CB:74/21%RM:438/52%",
["Konfuzitank"] = "CB:56/12%UM:276/33%",
["Tresenwesen"] = "UM:193/25%",
["Magicbeanz"] = "CB:119/14%UM:344/44%",
["Rotezorá"] = "UB:194/49%RM:280/59%",
["Dh"] = "EM:751/85%",
["Lingz"] = "RM:435/51%",
["Waldfuchs"] = "UM:167/46%",
["Thórus"] = "EM:830/92%",
["Atusa"] = "ET:264/80%EB:673/87%EM:682/92%",
["Silences"] = "RT:188/66%EB:680/87%EM:714/93%",
["Keton"] = "EM:878/91%",
["Jerkwad"] = "UM:97/32%",
["Iolhealistda"] = "RB:233/55%RM:505/59%",
["Thesalia"] = "RM:508/60%",
["Gspritzter"] = "UT:78/25%UM:161/45%",
["Vanretail"] = "RM:276/59%",
["Âaron"] = "RB:483/65%RM:515/57%",
["Bonsaí"] = "UT:121/38%UB:184/47%UM:391/45%",
["Früffen"] = "ET:346/89%EB:728/92%LM:959/97%",
["Axynia"] = "RB:470/63%RM:647/67%",
["Raketenlui"] = "UB:148/41%RM:204/58%",
["Tackleberry"] = "EB:520/93%EM:753/82%",
["Jolyaa"] = "RB:265/59%RM:332/69%",
["Panzerzahn"] = "RT:147/62%RB:247/66%RM:472/68%",
["Crawly"] = "UB:184/44%RM:688/73%",
["Ajla"] = "RM:207/52%",
["Aerya"] = "EB:352/77%UM:154/47%",
["Froosti"] = "RB:422/59%RM:276/68%",
["Elim"] = "CB:45/9%CM:47/14%",
["Untilnoon"] = "CB:51/11%CM:29/6%",
["Realíze"] = "CT:36/6%EB:456/87%EM:602/89%",
["Shuyaki"] = "EB:653/85%LM:985/98%",
["Zuckerzusatz"] = "RB:483/61%EM:766/80%",
["Donpalim"] = "ET:544/88%EB:632/90%EM:817/92%",
["Stephinhoo"] = "RM:186/52%",
["Senfmatrose"] = "EB:606/83%EM:480/83%",
["Orest"] = "RT:490/63%EB:579/81%LM:903/96%",
["Hentaikamen"] = "RT:141/58%RM:235/51%",
["Hotnready"] = "LT:537/98%EB:606/84%EM:709/81%",
["Imbus"] = "CB:136/17%RM:560/62%",
["Slartos"] = "UM:188/26%",
["Staine"] = "CT:103/13%UB:223/29%UM:352/40%",
["Nramak"] = "CM:159/21%",
["Pummeler"] = "EB:643/81%EM:764/80%",
["Mambonofive"] = "CM:129/15%",
["Cerady"] = "CM:26/0%",
["Hakfresse"] = "RB:234/65%UM:176/46%",
["Angela"] = "RM:288/70%",
["Lílli"] = "UM:342/39%",
["Cursedzoos"] = "UT:97/35%UB:328/41%RM:647/67%",
["Polenta"] = "CM:59/8%",
["Vernomosch"] = "CT:131/16%UB:203/26%EM:646/77%",
["Shoka"] = "EB:594/78%EM:794/76%",
["Kalif"] = "EM:433/75%",
["Maravelous"] = "RM:336/70%",
["Faltsack"] = "CM:58/7%",
["Mozzy"] = "CB:104/10%CM:63/8%",
["Schnitzza"] = "CM:69/8%",
["Weltraum"] = "EB:457/76%EM:710/84%",
["Deraschlock"] = "RB:241/56%RM:629/68%",
["Cartmann"] = "CB:41/4%UM:109/40%",
["Herdflamme"] = "RB:448/62%EM:459/81%",
["Chargin"] = "CB:59/6%UM:345/40%",
["Browni"] = "EM:713/78%",
["Morrissey"] = "EM:575/81%",
["Rrarrghh"] = "UT:104/41%RB:528/70%EM:727/79%",
["Habnixwasser"] = "CM:166/22%",
["Defunto"] = "CM:52/6%",
["Witzkopf"] = "RB:444/64%RM:224/56%",
["Slythina"] = "EB:566/83%EM:573/81%",
["Moshstain"] = "UM:418/49%",
["Dyne"] = "UT:298/44%EB:625/91%EM:675/88%",
["Iamrogue"] = "RM:536/59%",
["Levandrás"] = "RM:243/52%",
["Alamazing"] = "RM:329/74%",
["Orphelia"] = "UT:140/30%RB:252/66%RM:278/62%",
["Evog"] = "CB:32/2%RM:519/55%",
["Xarwa"] = "RM:505/60%",
["Dii"] = "UB:341/47%EM:347/76%",
["Stealer"] = "RM:649/71%",
["Schwanhilde"] = "UT:105/38%CB:80/20%CM:190/23%",
["Linosch"] = "RB:420/60%RM:607/70%",
["Mâggus"] = "EB:435/90%EM:692/86%",
["Stabyourass"] = "CM:39/11%",
["Teiwaz"] = "RB:398/72%EM:583/76%",
["Crovax"] = "EB:577/76%EM:836/88%",
["Another"] = "EM:760/82%",
["Gerastab"] = "RM:224/52%",
["Bethesta"] = "EB:329/75%EM:666/82%",
["Ksm"] = "UM:363/43%",
["Suraki"] = "RM:773/74%",
["Woodwin"] = "RM:511/56%",
["Exles"] = "CM:31/2%",
["Blafréak"] = "EM:642/85%",
["Bonefatzia"] = "RB:278/66%RM:624/69%",
["Alfheimr"] = "LT:765/97%LB:755/95%LM:914/95%",
["Brudertuçk"] = "RM:539/59%",
["Bergregen"] = "UT:61/25%UB:147/35%CM:66/17%",
["Hopfentee"] = "UM:59/29%",
["Thelsa"] = "RT:497/68%EB:553/79%EM:773/87%",
["Crackmom"] = "RM:216/60%",
["Fròstig"] = "UM:445/48%",
["Punishêr"] = "CM:219/22%",
["Risse"] = "ET:764/93%LB:718/95%RM:655/73%",
["Rednexx"] = "CM:50/17%",
["Junela"] = "UT:249/38%RM:525/58%",
["Schmidchen"] = "CB:27/1%EM:464/78%",
["Cupyrogue"] = "UM:311/36%",
["Dorihl"] = "RM:609/67%",
["Oehrl"] = "ET:188/85%EB:380/86%RM:386/68%",
["Gjalmir"] = "CM:176/16%",
["Bascaro"] = "RT:527/70%RB:441/61%EM:491/87%",
["Káthrin"] = "CM:64/20%",
["Raffbär"] = "CT:44/10%EB:508/78%EM:702/84%",
["Mexallon"] = "UM:370/39%",
["Hushebye"] = "CT:0/2%RB:422/56%RM:677/74%",
["Jarow"] = "CB:75/18%UM:81/28%",
["Sandrana"] = "RB:329/70%EM:740/77%",
["Amulya"] = "UT:10/39%RM:485/74%",
["Serathys"] = "RT:166/56%UB:331/46%RM:602/67%",
["Samsonite"] = "CT:65/23%EB:645/89%EM:874/92%",
["Graardor"] = "RT:155/62%EB:666/89%EM:825/91%",
["Guldân"] = "RT:157/54%EB:431/82%RM:668/69%",
["Usui"] = "ET:320/89%EB:585/84%EM:715/85%",
["Naschame"] = "CT:58/16%RB:462/64%RM:576/73%",
["Sarko"] = "RT:381/52%EB:686/86%EM:907/92%",
["Kurdonas"] = "UT:132/43%UB:148/38%RM:219/55%",
["Saeth"] = "EB:491/86%EM:466/79%",
["Kronôs"] = "UT:129/28%RB:308/55%EM:623/80%",
["Toastedd"] = "UT:254/32%RM:619/69%",
["Malfagar"] = "CB:141/18%UM:152/49%",
["Nóxis"] = "UB:258/33%RM:328/69%",
["Zathe"] = "RB:478/69%EM:722/79%",
["Snacks"] = "RT:434/57%LB:724/95%EM:711/81%",
["Veritar"] = "RB:265/59%CM:68/9%",
["Amenthor"] = "CT:34/5%UB:232/29%EM:838/90%",
["Nemomage"] = "CB:139/17%RM:618/68%",
["Sincha"] = "RB:517/68%EM:720/76%",
["Parasboy"] = "EB:739/93%LM:936/95%",
["Magosh"] = "UB:168/45%EM:417/82%",
["Bizzar"] = "EB:419/79%EM:600/94%",
["Youngphil"] = "CB:117/15%UM:431/48%",
["Schulz"] = "UT:120/43%UB:326/44%EM:795/83%",
["Denok"] = "UB:227/27%UM:380/45%",
["Casiopeia"] = "CB:85/24%UM:323/38%",
["Nazdrowie"] = "UM:205/25%",
["Freezehaze"] = "EM:790/84%",
["Xycee"] = "UM:156/41%",
["Noxxi"] = "RM:587/65%",
["Bloodyspider"] = "RB:215/61%RM:320/62%",
["Spezialist"] = "UB:234/30%EM:498/85%",
["Slavxy"] = "UB:368/49%EM:743/78%",
["Tiraneh"] = "EB:501/78%EM:803/91%",
["Clarama"] = "UB:216/28%CM:128/12%",
["Daruzeus"] = "CB:173/21%RM:491/52%",
["Amisheep"] = "CB:135/16%EM:746/80%",
["Geeko"] = "CT:27/0%EB:346/77%RM:198/55%",
["Gintotonix"] = "CB:221/24%UM:395/45%",
["Kwek"] = "CT:65/18%RB:388/56%UM:280/32%",
["Busyboy"] = "RT:154/57%EB:560/92%EM:536/85%",
["Khazam"] = "CT:38/9%UB:156/37%EM:429/77%",
["Greenda"] = "RT:211/60%RB:366/64%",
["Hitzeblitz"] = "CT:29/1%UB:322/44%UM:471/49%",
["Agras"] = "RB:272/72%RM:547/74%",
["Anisaa"] = "CM:36/3%",
["Malumba"] = "EB:686/91%EM:802/89%",
["Probe"] = "RM:155/50%",
["Swiff"] = "CB:181/24%RM:568/67%",
["Shibui"] = "RM:574/63%",
["Willbur"] = "EM:508/76%",
["Liizy"] = "EM:757/80%",
["Spuernichts"] = "UM:384/41%",
["Hairypotta"] = "ET:296/84%EB:719/92%EM:686/75%",
["Gorosch"] = "RT:192/67%RB:435/57%RM:688/73%",
["Schampaine"] = "UB:160/47%UM:83/40%",
["Vizizwei"] = "RM:637/70%",
["Hantsman"] = "RM:546/61%",
["Flametusk"] = "UM:102/38%",
["Khelhellam"] = "EB:599/82%EM:555/83%",
["Misskalimah"] = "CM:28/7%",
["Zis"] = "CM:99/12%",
["Schnapp"] = "CB:39/4%UM:494/48%",
["Byter"] = "RB:561/71%EM:799/83%",
["Kuhcain"] = "RB:454/57%RM:603/64%",
["Lildrain"] = "UB:354/48%UM:127/39%",
["Jozu"] = "EB:582/76%RM:496/52%",
["Schimbago"] = "RB:502/70%RM:670/74%",
["Behhli"] = "RB:349/50%EM:554/88%",
["Zaphod"] = "CT:25/0%RB:260/63%RM:663/73%",
["Krümelkun"] = "RM:275/62%",
["Chîhîrâ"] = "ET:606/77%EB:481/89%RM:458/55%",
["Flör"] = "CT:66/5%CM:88/9%",
["ßßl"] = "CM:34/13%",
["Aicul"] = "EM:736/83%",
["Lutena"] = "CB:26/3%",
["Wenzork"] = "EB:680/87%EM:879/90%",
["Etobank"] = "EB:588/77%EM:843/87%",
["Stummel"] = "UB:206/26%EM:877/89%",
["Alatorr"] = "RM:516/62%",
["Neptan"] = "RB:525/69%EM:856/85%",
["Estal"] = "RM:193/56%",
["Orkusborkus"] = "UM:272/27%",
["Kazzard"] = "RM:313/72%",
["Morrigus"] = "RT:221/73%EB:678/86%EM:528/84%",
["Azamad"] = "RB:533/74%EM:891/94%",
["Díedeldum"] = "RM:287/67%",
["Mmuuhh"] = "RM:287/55%",
["Fatalîty"] = "CM:87/10%",
["Koabier"] = "UM:92/35%",
["Downtown"] = "RT:440/60%EB:701/89%UM:365/42%",
["Garruuk"] = "UB:137/35%RM:203/54%",
["Ossii"] = "UM:168/46%",
["Maara"] = "UM:81/32%",
["Deepturtle"] = "UM:102/36%",
["Bongopetra"] = "EM:709/86%",
["Mahra"] = "EB:605/83%EM:802/86%",
["Aistee"] = "CM:159/21%",
["Chantipon"] = "RM:211/59%",
["Neveroom"] = "CB:54/14%RM:487/58%",
["Athyria"] = "EM:566/79%",
["Xenjo"] = "RB:286/68%EM:708/81%",
["Karuzy"] = "CM:19/3%",
["Edenlein"] = "CB:140/17%CM:61/23%",
["Scoobey"] = "CM:8/3%",
["Granini"] = "CM:184/24%",
["Gamolek"] = "RB:503/70%RM:632/70%",
["Sephaya"] = "UB:319/44%EM:707/76%",
["Climandra"] = "UM:425/47%",
["Reibekuchen"] = "CB:84/7%RM:291/64%",
["Krell"] = "CM:50/11%",
["Nazgor"] = "UM:371/44%",
["Boohm"] = "UM:229/25%",
["Jiglinde"] = "UB:123/34%UM:339/40%",
["Cinon"] = "CM:178/20%",
["Bicksberg"] = "CB:59/15%RM:515/61%",
["Mercurio"] = "EM:582/89%",
["Shaolan"] = "CB:28/1%UM:274/31%",
["Rogol"] = "CT:66/7%CB:32/2%RM:581/64%",
["Yrwven"] = "CM:142/13%",
["Boneralert"] = "UM:220/28%",
["Punráz"] = "CB:151/19%EM:756/81%",
["Chaxiraxi"] = "CT:65/23%CB:110/13%UM:353/37%",
["Tusjin"] = "EB:589/82%LM:933/97%",
["Maggruk"] = "LB:723/95%LM:964/98%",
["Kalmum"] = "RM:417/70%",
["Fidiboss"] = "RM:533/63%",
["Badoink"] = "RT:94/62%UM:223/44%",
["Tyen"] = "UM:251/29%",
["Lunchbox"] = "EM:716/82%",
["Latrodectus"] = "RB:469/73%EM:684/81%",
["Hurplepaze"] = "RM:520/72%",
["Inoxia"] = "UM:252/31%",
["Harrydottér"] = "UM:374/42%",
["Leeoo"] = "RM:536/62%",
["Voegelchen"] = "CM:111/16%",
["Zugtemis"] = "CB:9/1%CM:79/9%",
["Mimimimi"] = "RM:556/61%",
["Madri"] = "CB:28/7%UM:271/30%",
["Nishru"] = "RM:248/64%",
["Koeniglich"] = "RM:320/69%",
["Makaya"] = "CB:81/9%RM:357/73%",
["Sicariae"] = "CB:70/17%RM:263/62%",
["Tunyx"] = "UB:265/35%RM:642/70%",
["Qt"] = "RM:278/60%",
["Wétta"] = "UM:363/43%",
["Ðrjekyll"] = "UM:328/32%",
["Porter"] = "RM:736/71%",
["Trollum"] = "EB:560/78%EM:736/83%",
["Darksilencê"] = "RM:649/69%",
["Quetscha"] = "UM:104/38%",
["Crystel"] = "UM:297/36%",
["Bluebolt"] = "RM:227/62%",
["Xerra"] = "UM:123/35%",
["Rraven"] = "EB:577/75%RM:509/52%",
["Rotzaff"] = "CM:55/6%",
["Trig"] = "CT:0/3%UB:335/43%RM:459/50%",
["Freesky"] = "UM:132/42%",
["Shapeschiff"] = "UM:317/37%",
["Shôxx"] = "CB:39/7%UM:105/31%",
["Jintau"] = "CM:26/0%",
["Pitchy"] = "CB:157/19%RM:640/70%",
["Ayala"] = "RM:205/55%",
["Neró"] = "RT:479/63%EB:700/93%LM:919/95%",
["Shabooey"] = "RM:373/67%",
["Xiohn"] = "EB:715/94%LM:975/98%",
["Nosferatuu"] = "CM:71/7%",
["Kansi"] = "CM:168/15%",
["Tomioka"] = "UB:351/46%RM:559/64%",
["Aesculap"] = "CM:33/1%",
["Sgar"] = "RM:314/69%",
["Tôngah"] = "RM:370/59%",
["Laufweg"] = "CM:3/0%",
["Woindenpoh"] = "UM:112/38%",
["Filora"] = "RB:242/57%EM:717/76%",
["Finia"] = "CM:138/12%",
["Wârcraft"] = "CM:40/5%",
["Dorde"] = "CM:170/22%",
["Liquidsword"] = "UM:105/34%",
["Veritaz"] = "CM:28/6%",
["Matros"] = "CM:55/6%",
["Pyrokâr"] = "CM:180/23%",
["Qwap"] = "UT:44/40%RM:544/70%",
["Jarnestro"] = "RM:550/70%",
["Kährn"] = "RM:589/65%",
["Nekt"] = "RM:505/60%",
["Jonna"] = "EM:770/83%",
["Wantéd"] = "UM:149/45%",
["Zhup"] = "UM:363/43%",
["Khup"] = "RM:614/71%",
["Chipx"] = "UM:131/40%",
["Juelz"] = "RM:411/65%",
["Aeons"] = "CM:56/17%",
["Fyroz"] = "UM:97/37%",
["Darkula"] = "UM:383/43%",
["Raégar"] = "CM:29/2%",
["Harlé"] = "RM:206/59%",
["Warius"] = "UM:84/44%",
["Boonsaw"] = "UM:135/37%",
["Stimrock"] = "RM:472/55%",
["Apexs"] = "UM:322/38%",
["Jenesta"] = "UM:138/38%",
["Rhoakka"] = "UM:109/38%",
["Moriag"] = "UM:165/46%",
["Hoodwatcher"] = "UB:287/37%RM:165/52%",
["Bulldoc"] = "RB:218/51%RM:509/67%",
["Daylani"] = "UM:85/32%",
["Monoxide"] = "UM:113/41%",
["Noqz"] = "CM:121/14%",
["Nuchala"] = "RM:210/59%",
["Celena"] = "RM:438/63%",
["Kothert"] = "EM:340/75%",
["Hashishin"] = "UM:219/26%",
["Razx"] = "EB:669/84%LM:928/95%",
["Turdwater"] = "EM:894/93%",
["Xurr"] = "UB:119/32%EM:754/80%",
["Varana"] = "CM:148/20%",
["Belshirash"] = "UM:447/46%",
["Münzwurf"] = "UM:118/42%",
["Sovietstorm"] = "RM:384/63%",
["Basnak"] = "UB:146/38%RM:541/73%",
["Bamrick"] = "EM:478/75%",
["Kurtkuhbraín"] = "UB:223/49%EM:728/84%",
["Thanala"] = "RM:154/50%",
["Jinala"] = "UM:149/48%",
["Duray"] = "RM:198/51%",
["Kiwî"] = "RM:264/58%",
["Dotdotexe"] = "RM:238/56%",
["Iyu"] = "CB:43/10%RM:520/53%",
["Pestwurm"] = "CM:75/23%",
["Gnomstampfer"] = "UM:284/34%",
["Nosfly"] = "CM:49/3%",
["Dontwarri"] = "CM:36/11%",
["Dammríss"] = "LM:981/98%",
["Blackscorp"] = "CM:44/13%",
["Muhtlos"] = "RM:483/58%",
["Aíden"] = "LT:471/95%EB:602/79%EM:737/79%",
["Zündell"] = "CM:31/2%",
["Shuzára"] = "RB:491/64%RM:690/72%",
["Resored"] = "ET:312/87%RB:399/51%UM:287/33%",
["Mauerschütze"] = "CT:147/19%RB:274/62%RM:204/54%",
["Robynhuud"] = "CT:150/19%EB:432/82%CM:89/7%",
["Remìnd"] = "RB:305/71%RM:324/64%",
["Umax"] = "RT:143/58%RB:458/69%EM:679/83%",
["Phoc"] = "LT:499/95%RB:354/50%UM:440/47%",
["Divinitas"] = "UT:83/28%RB:465/64%EM:836/89%",
["Chubbed"] = "UT:95/34%RB:513/66%RM:537/57%",
["Kosajax"] = "RT:152/62%",
["Funclown"] = "ET:272/81%CB:110/13%CM:101/9%",
["Meldowayn"] = "CT:73/21%EB:700/94%EM:841/92%",
["Bärshido"] = "EB:560/80%EM:759/79%",
["Stabbor"] = "CB:26/1%UM:265/31%",
["Zaresh"] = "CT:152/19%EB:615/81%EM:829/88%",
["Bashboi"] = "CT:99/24%EM:610/79%",
["Schanî"] = "UT:118/37%EB:702/93%RM:519/57%",
["Pupspüppchen"] = "EB:742/93%EM:877/90%",
["Brutz"] = "CM:51/17%",
["Sanitäterin"] = "RM:260/56%",
["Saírah"] = "UB:216/26%EM:760/89%",
["Sko"] = "RM:698/74%",
["Auutomatikus"] = "UM:175/48%",
["Hannelörchen"] = "UT:84/26%CB:192/23%RM:548/60%",
["Mcolf"] = "CT:57/10%EB:598/83%EM:805/90%",
["Fetetrauma"] = "CB:39/7%CM:46/5%",
["Windrippchen"] = "RB:247/51%RM:377/56%",
["Donnerhorn"] = "RT:125/53%RB:340/60%RM:579/73%",
["Natalion"] = "ET:278/78%RB:319/72%UM:396/47%",
["Nimzboost"] = "UB:331/45%",
["Healness"] = "UB:293/40%RM:284/62%",
["Cwazy"] = "RB:411/52%EM:789/82%",
["Grins"] = "RM:159/50%",
["Gorén"] = "RM:443/52%",
["Urks"] = "CM:41/2%",
["Lullugun"] = "CT:48/3%UB:195/48%UM:329/38%",
["Buka"] = "CB:51/3%RM:515/59%",
["Hoodini"] = "RT:209/71%EB:746/94%LM:947/96%",
["Stealthness"] = "CB:104/13%CM:49/4%",
["Jägermasta"] = "RB:278/64%RM:512/54%",
["Kratasch"] = "CT:38/2%UB:190/49%",
["Heracleum"] = "UB:109/26%UM:449/49%",
["Draké"] = "UB:302/42%UM:381/43%",
["Brummt"] = "LT:482/96%EB:473/85%EM:452/78%",
["Veribus"] = "CB:132/13%",
["Yandera"] = "RM:226/54%",
["Bukephalos"] = "UM:122/34%",
["Tekuho"] = "CT:101/13%RB:439/59%RM:257/60%",
["Piewpew"] = "CB:78/9%RM:590/65%",
["Telima"] = "UM:86/27%",
["Erwine"] = "EB:608/81%EM:828/86%",
["Huntu"] = "RB:564/74%EM:859/88%",
["Ogien"] = "UB:120/32%RM:261/63%",
["Mephir"] = "EM:327/81%",
["Warhoof"] = "RB:326/57%RM:384/60%",
["Ìnaste"] = "CB:60/15%CM:139/18%",
["Euterboy"] = "RT:185/65%EB:403/78%EM:732/80%",
["Zebro"] = "UB:207/25%RM:726/69%",
["Bygo"] = "UB:400/48%RM:599/64%",
["Zerwmage"] = "CB:31/2%UM:196/25%",
["Mvbaám"] = "RM:541/57%",
["Aekrio"] = "RM:437/51%",
["Latheaa"] = "CB:87/24%CM:32/3%",
["Volvi"] = "CM:163/15%",
["Graxor"] = "UM:302/31%",
["Lind"] = "CB:132/14%UM:290/34%",
["Chorong"] = "UM:279/33%",
["Cardamon"] = "UT:80/32%UM:127/38%",
["Luppi"] = "EB:377/75%EM:725/77%",
["Manoban"] = "UM:207/26%",
["Patricia"] = "CM:28/1%",
["Yuty"] = "UM:439/49%",
["Bønez"] = "RB:578/74%RM:693/73%",
["Manch"] = "CM:115/16%",
["Kaizer"] = "UT:300/37%RB:510/71%RM:595/69%",
["Curumo"] = "UM:115/41%",
["Ozande"] = "RB:544/72%EM:881/92%",
["Hammerofgods"] = "CM:48/11%",
["Stelio"] = "CB:146/18%RM:515/56%",
["Xqt"] = "CM:79/10%",
["Heimdollo"] = "UM:119/34%",
["Gorchfog"] = "CM:71/22%",
["Syrix"] = "RB:470/64%RM:649/67%",
["Vlynn"] = "RB:415/56%RM:480/52%",
["Azghol"] = "RM:679/72%",
["Rayzie"] = "RM:689/74%",
["Rhàge"] = "CM:22/8%",
["Zerpumpa"] = "CM:134/17%",
["Burningvirus"] = "CT:33/14%CM:2/0%",
["Røøster"] = "CB:82/9%RM:501/56%",
["Ivosa"] = "RM:199/57%",
["Ânivia"] = "UM:106/39%",
["Trucidus"] = "UM:99/29%",
["Annyy"] = "EM:841/93%",
["Presh"] = "RM:664/74%",
["Ioldontcry"] = "UT:91/33%EB:597/76%RM:686/73%",
["Spaltheal"] = "CM:49/15%",
["Damballah"] = "CB:58/11%UM:128/35%",
["Meukli"] = "UM:378/43%",
["Norvex"] = "UB:140/36%RM:228/55%",
["Arröw"] = "UB:272/37%RM:665/71%",
["Urschanabi"] = "UM:173/46%",
["Ddv"] = "RM:222/61%",
["Smitos"] = "UM:137/41%",
["Pientzchen"] = "RM:279/56%",
["Jhess"] = "CM:41/15%",
["Starx"] = "CM:43/19%",
["Realsorrow"] = "LB:715/95%RM:598/66%",
["Pyrókar"] = "UM:250/25%",
["Mayuka"] = "RT:127/54%CB:88/10%RM:485/53%",
["Organspender"] = "UB:295/33%EM:471/81%",
["Healbot"] = "EM:814/87%",
["Dorne"] = "EB:457/78%EM:785/92%",
["Interr"] = "RM:320/68%",
["Blaast"] = "CB:41/9%CM:46/17%",
["Grekulin"] = "UM:248/30%",
["Feuerwehr"] = "UB:147/40%EM:875/94%",
["Scartric"] = "UM:428/49%",
["Blutdruck"] = "CB:24/5%RM:272/58%",
["Shamwow"] = "UT:22/32%UB:291/38%EM:710/78%",
["Isheye"] = "EB:378/76%RM:375/60%",
["Brodor"] = "UM:307/39%",
["Mageundso"] = "UB:241/30%RM:458/50%",
["Strecher"] = "RB:462/58%RM:589/63%",
["Redarrow"] = "EM:786/83%",
["Mahgringo"] = "UT:253/31%EM:742/81%",
["Casja"] = "CT:25/10%CM:26/0%",
["Iskelet"] = "CB:60/6%",
["Dudujoe"] = "RB:111/56%RM:233/57%",
["Sefix"] = "UM:349/41%",
["Icekaffee"] = "UB:280/36%RM:551/60%",
["Vhaz"] = "UM:267/48%",
["Merelina"] = "RB:395/52%EM:799/85%",
["Ifanbenmezd"] = "RB:403/52%RM:566/60%",
["Neave"] = "EM:868/89%",
["Dimachero"] = "LB:779/98%EM:914/94%",
["Dâhealer"] = "EM:764/83%",
["Rednightmare"] = "CM:81/11%",
["Bumbumjelly"] = "EM:825/88%",
["Failey"] = "CM:153/21%",
["Argron"] = "EM:726/80%",
["Heilbix"] = "EM:715/79%",
["Dafaxxy"] = "CB:96/11%RM:530/57%",
["Megatot"] = "UM:246/34%",
["Hopsii"] = "UM:418/46%",
["Turbotorben"] = "CM:80/24%",
["Bløodrayne"] = "RM:657/62%",
["Crîix"] = "RT:485/64%EB:529/93%LM:950/98%",
["Yvestra"] = "CT:127/20%UB:352/43%RM:529/60%",
["Schwarzbier"] = "UM:361/41%",
["Raketenronny"] = "UM:373/44%",
["Extinctions"] = "CM:10/9%",
["Sorukragim"] = "CM:61/5%",
["Sphyra"] = "EM:674/78%",
["Bj"] = "EB:562/87%LM:877/97%",
["Brajan"] = "CM:189/24%",
["Zook"] = "ET:475/83%LB:656/97%EM:835/92%",
["Dinafem"] = "RM:540/58%",
["Maddux"] = "CM:192/22%",
["Hydro"] = "CB:142/17%RM:682/74%",
["Stealthoor"] = "UB:357/47%EM:918/93%",
["Hotgirl"] = "RM:542/70%",
["Naquada"] = "RB:541/69%EM:829/86%",
["Narzok"] = "RB:517/70%EM:732/78%",
["Zisaka"] = "CM:29/9%",
["Cykabljat"] = "EB:704/89%EM:931/94%",
["Mooshaar"] = "CM:188/23%",
["Farmmaschine"] = "CM:7/2%",
["Derberus"] = "CB:54/5%CM:29/1%",
["Redgarr"] = "UM:76/30%",
["Jägerwiesel"] = "UB:141/37%CM:24/9%",
["Fjorlex"] = "CM:61/19%",
["Shaddow"] = "CM:36/4%",
["Unti"] = "CM:39/12%",
["Obisapkenobi"] = "UB:361/48%RM:622/68%",
["Egidius"] = "CM:28/1%",
["Wôw"] = "RM:204/53%",
["Maleficarum"] = "UB:120/32%RM:672/70%",
["Forrést"] = "CB:204/24%EM:781/90%",
["Izera"] = "UB:203/25%EM:778/83%",
["Dahj"] = "UB:359/47%UM:317/33%",
["Calamandrya"] = "EM:467/85%",
["Amedysli"] = "RM:557/66%",
["Kyrt"] = "RB:535/74%EM:694/77%",
["Occbull"] = "EB:591/75%EM:797/90%",
["Mîlla"] = "CM:116/16%",
["Xerotan"] = "UB:282/36%UM:396/45%",
["Offline"] = "UB:46/29%EM:450/76%",
["Habrücken"] = "EM:774/88%",
["Vanhinteen"] = "EB:624/79%EM:735/77%",
["Cany"] = "CB:149/17%UM:247/45%",
["Leftwing"] = "RB:280/67%RM:311/72%",
["Wambork"] = "UB:320/46%UM:453/49%",
["Khalanos"] = "RB:565/74%EM:757/79%",
["Asox"] = "ET:254/91%EB:616/89%EM:734/88%",
["Rischa"] = "CM:23/9%",
["Sweetiebelle"] = "UM:317/32%",
["Thunderdome"] = "CB:118/15%CM:145/17%",
["Modan"] = "RM:671/71%",
["Zaaraa"] = "CB:152/17%RM:314/67%",
["Yolohunt"] = "RB:454/62%RM:644/69%",
["Jondrak"] = "RM:521/60%",
["Uck"] = "UM:452/49%",
["Discardia"] = "RM:617/68%",
["Znitch"] = "UM:187/46%",
["Arzthelferin"] = "CB:30/1%RM:616/68%",
["Qailol"] = "CM:171/20%",
["Xeyva"] = "RM:579/64%",
["Dotemall"] = "UT:198/25%RB:455/61%RM:362/71%",
["Nâtalie"] = "CB:119/12%RM:226/54%",
["Klemmo"] = "UM:165/49%",
["Valeta"] = "UB:212/28%RM:241/60%",
["Stunk"] = "CM:54/18%",
["Liegtdastroh"] = "EM:450/80%",
["Khora"] = "RB:450/62%EM:710/78%",
["Izlanzadi"] = "CT:39/7%UB:327/45%EM:591/89%",
["Nispe"] = "CT:73/9%RB:490/69%EM:622/93%",
["Lemex"] = "UB:217/27%RM:534/55%",
["Veshniza"] = "UM:264/31%",
["Prospero"] = "CT:0/3%RM:255/65%",
["Sodj"] = "RM:264/63%",
["Naîro"] = "CT:40/13%UB:250/34%CM:134/19%",
["Vibemaker"] = "RM:665/71%",
["Kockerella"] = "UM:86/28%",
["Krakié"] = "CM:47/5%",
["Løvely"] = "UM:295/30%",
["Hoopti"] = "UM:309/32%",
["Boreal"] = "EM:768/82%",
["Bishøff"] = "CM:91/10%",
["Ludíx"] = "EM:782/81%",
["Bton"] = "RT:160/63%EB:571/81%RM:510/71%",
["Nahlot"] = "ET:304/86%EB:614/86%EM:736/84%",
["Philomenya"] = "RT:194/64%RB:394/50%RM:501/51%",
["Bämboozled"] = "EM:794/85%",
["Mcbalenciaga"] = "RT:97/51%RM:272/58%",
["Mcfendi"] = "RT:99/51%RM:129/51%",
["Brutzelbro"] = "UM:260/32%",
["Mcgucci"] = "RT:105/52%RB:419/72%EM:688/84%",
["Mcprada"] = "RT:101/51%RM:195/54%",
["Mcvuitton"] = "UT:74/49%UM:65/46%",
["Pruinae"] = "RM:506/55%",
["Trimak"] = "CM:109/14%",
["Gehraz"] = "UB:360/48%UM:356/38%",
["Perrï"] = "CB:146/19%RM:507/57%",
["Schädomoon"] = "UM:205/25%",
["Qreator"] = "CM:180/17%",
["Ghünthard"] = "UT:135/43%RB:398/57%CM:225/22%",
["Andonix"] = "CB:123/15%UM:371/37%",
["Encephalock"] = "UT:102/37%EB:580/75%EM:872/90%",
["Tygriml"] = "EB:581/80%EM:812/86%",
["Lichtglocke"] = "RB:509/70%CM:125/10%",
["Mediium"] = "UT:97/38%UB:374/44%CM:71/9%",
["Feya"] = "ET:210/77%RB:422/59%UM:434/47%",
["Piso"] = "RT:243/70%UM:451/49%",
["Skepsis"] = "RT:155/54%UB:359/49%RM:634/68%",
["Oida"] = "ET:312/82%CB:122/13%RM:472/51%",
["Frodor"] = "ET:327/89%EB:565/82%EM:585/81%",
["Unmut"] = "RT:196/65%EB:588/77%EM:750/80%",
["Nachtgeist"] = "ET:435/94%RB:522/72%CM:53/4%",
["Oaga"] = "RT:159/58%UB:327/37%RM:637/68%",
["Pêwpêw"] = "RB:561/74%RM:668/71%",
["Rokka"] = "EB:632/82%EM:807/84%",
["Marmellock"] = "UB:280/35%UM:109/36%",
["Gitmo"] = "CT:33/3%UM:381/38%",
["Poro"] = "RM:498/51%",
["Mafra"] = "RM:508/52%",
["Tiruno"] = "UM:436/44%",
["Jens"] = "CT:65/22%UB:290/38%RM:443/50%",
["Yalla"] = "CT:57/20%CM:160/14%",
["Sesha"] = "RT:187/65%UB:337/48%RM:478/60%",
["Cîpîrpî"] = "EM:661/83%",
["Brominator"] = "EB:727/93%EM:853/89%",
["Sunshineacid"] = "RB:407/53%RM:565/62%",
["Muhselgrusel"] = "EB:536/77%RM:171/50%",
["Corazòn"] = "CB:31/2%",
["Pantalaymon"] = "UB:103/30%RM:509/56%",
["Cloudkicker"] = "CM:39/17%",
["Analia"] = "UB:253/32%UM:371/44%",
["Víncy"] = "UB:46/35%EM:586/81%",
["Bb"] = "LB:722/96%SM:997/99%",
["Outland"] = "CM:26/10%",
["Dirtypete"] = "CM:72/9%",
["Tharkas"] = "CB:16/1%CM:47/19%",
["Smlady"] = "RB:438/60%EM:764/83%",
["Nitró"] = "RT:237/67%RB:299/69%EM:772/83%",
["Feuchter"] = "UT:77/28%RM:659/70%",
["Tenyô"] = "RM:302/52%",
["Knusperelfe"] = "UB:242/29%CM:171/17%",
["Hohlhupe"] = "CB:61/7%",
["Preljepa"] = "EB:415/76%EM:306/77%",
["Jaydu"] = "UM:408/48%",
["Yunas"] = "CT:26/0%UB:320/42%EM:864/90%",
["Dutroll"] = "UM:132/44%",
["Schmutzprst"] = "RM:507/71%",
["Tròól"] = "CM:43/16%",
["Mikay"] = "UB:124/33%CM:187/24%",
["Nightmarish"] = "RB:554/71%EM:573/85%",
["Cheesebomb"] = "RM:471/73%",
["Rapthtalia"] = "RB:405/51%EM:908/92%",
["Rêgar"] = "UM:350/41%",
["Grammi"] = "CT:169/22%UM:266/32%",
["Colâmage"] = "CT:61/11%UM:274/28%",
["Parship"] = "UB:331/44%EM:864/89%",
["Nykoh"] = "RM:501/53%",
["Bazix"] = "RB:461/64%EM:754/82%",
["Kenaya"] = "UM:437/45%",
["Udeadmate"] = "RB:537/69%EM:799/83%",
["Quendi"] = "RB:177/61%RM:288/61%",
["Demodarius"] = "UM:279/34%",
["Agro"] = "RB:425/57%RM:343/69%",
["Odenwald"] = "UM:316/32%",
["Jinsoda"] = "RB:448/61%EM:716/77%",
["Elidel"] = "RM:538/64%",
["Regnitteö"] = "UM:310/37%",
["Suathez"] = "UB:101/27%RM:471/51%",
["Hearthunter"] = "CM:119/14%",
["Freshy"] = "UM:305/31%",
["Redp"] = "RM:537/74%",
["Gavlyn"] = "RM:566/61%",
["Egrefett"] = "RM:197/57%",
["Bâumi"] = "CB:29/1%RM:509/54%",
["Eágle"] = "UB:286/35%EM:569/76%",
["Beya"] = "RM:476/50%",
["Deana"] = "RB:413/64%EM:622/80%",
["Mareco"] = "RB:556/74%EM:857/90%",
["Janisek"] = "CM:209/21%",
["Nosboss"] = "UM:258/26%",
["Hexerus"] = "EM:460/79%",
["Aok"] = "UB:333/41%EM:815/84%",
["Foilwench"] = "RB:517/72%RM:572/63%",
["Kalos"] = "EB:718/92%EM:920/94%",
["Nacky"] = "RB:258/67%RM:181/66%",
["Natalinka"] = "UM:266/32%",
["Cubê"] = "UM:288/37%",
["Worsh"] = "RM:472/55%",
["Zorgar"] = "UB:363/46%RM:599/66%",
["Disconnected"] = "CM:159/19%",
["Pijay"] = "CB:42/8%RM:629/70%",
["Blinktroll"] = "CT:28/1%RB:247/62%EM:792/88%",
["Safurá"] = "UM:153/49%",
["Nimrðd"] = "UB:156/40%RM:667/72%",
["Arcticlime"] = "RM:635/70%",
["Marxi"] = "CM:23/1%",
["Abfucknek"] = "EB:612/85%LM:921/96%",
["Itami"] = "UB:227/41%EM:591/82%",
["Vohnkar"] = "RB:254/68%UM:67/32%",
["Günthard"] = "RT:167/67%RM:571/63%",
["Mewi"] = "CB:68/7%EM:755/81%",
["Nekron"] = "UM:391/46%",
["Moinmienjung"] = "UM:108/40%",
["Ezaria"] = "CB:26/3%CM:109/9%",
["Weirdflexer"] = "EB:740/93%LM:933/95%",
["Drakkari"] = "UT:192/25%EB:671/86%EM:832/86%",
["Arurouge"] = "CM:237/24%",
["Leislo"] = "EM:858/90%",
["Supergrobi"] = "RB:541/72%EM:877/91%",
["Synde"] = "UM:393/46%",
["Kimkongun"] = "CM:115/13%",
["Rembolembo"] = "RB:264/62%RM:521/57%",
["Devera"] = "EB:432/81%EM:805/83%",
["Neyyax"] = "EB:347/85%EM:887/93%",
["Bödel"] = "EB:700/93%LM:929/96%",
["Rylla"] = "RB:242/58%RM:486/57%",
["Aliveaa"] = "EB:318/76%RM:358/66%",
["Dracata"] = "RB:274/64%UM:408/44%",
["Cîri"] = "EB:710/90%EM:881/90%",
["Äktschen"] = "EB:646/82%RM:629/67%",
["Sesil"] = "UB:146/38%CM:116/15%",
["Albedó"] = "EB:443/83%EM:753/81%",
["Eollyria"] = "UB:137/34%RM:583/64%",
["Muukuh"] = "EB:415/77%RM:385/69%",
["Nêssâya"] = "UM:76/27%",
["Durango"] = "RB:525/70%EM:685/75%",
["Qlkid"] = "CB:71/17%CM:16/2%",
["Giku"] = "CB:86/10%CM:167/16%",
["Pandapoop"] = "CT:53/5%EB:616/78%EM:772/80%",
["Tscharge"] = "RB:422/52%EM:596/78%",
["Alired"] = "UB:277/36%RM:561/62%",
["Tinki"] = "CB:41/4%RM:247/64%",
["Mavolia"] = "UB:324/41%UM:462/47%",
["Déed"] = "RM:167/52%",
["Mikosh"] = "ET:234/75%EB:412/83%EM:764/86%",
["Kerohty"] = "UM:317/32%",
["Philihp"] = "RB:503/66%RM:657/70%",
["Fellu"] = "CM:242/24%",
["Zulanda"] = "RM:511/57%",
["Skürtsch"] = "RM:643/74%",
["Melodyhope"] = "UB:289/37%RM:508/56%",
["Dadus"] = "RM:495/54%",
["Brugmansia"] = "CM:72/8%",
["Ansasaran"] = "CM:54/21%",
["Arkhar"] = "UT:123/44%RB:512/66%RM:653/70%",
["Tomturbo"] = "CM:61/19%",
["Xilana"] = "RM:541/56%",
["Aretuin"] = "CM:109/14%",
["Slashkiss"] = "UM:408/48%",
["Themalle"] = "RB:423/65%EM:616/79%",
["Letzterlude"] = "CM:33/5%",
["Bigbootylove"] = "UT:93/37%CB:109/12%UM:407/42%",
["Karista"] = "UM:131/49%",
["Baiter"] = "CT:62/20%RB:541/69%EM:826/85%",
["Shianaa"] = "CB:117/14%EM:689/75%",
["Caliente"] = "RM:155/50%",
["Holycurse"] = "RM:282/63%",
["Cederas"] = "LB:715/95%EM:533/87%",
["Pristi"] = "UM:157/42%",
["Leckzunge"] = "EB:577/80%EM:846/90%",
["Lissbäth"] = "RM:372/67%",
["Sleeper"] = "CB:43/4%RM:624/69%",
["Salpsan"] = "CM:36/10%",
["Inoriell"] = "RT:234/69%UB:346/49%RM:572/63%",
["Rastragur"] = "CM:180/17%",
["Prügler"] = "ET:620/79%EB:670/90%EM:794/88%",
["Icyice"] = "RM:240/63%",
["Naturae"] = "UB:101/26%CM:144/14%",
["Gautscho"] = "UB:51/27%RM:487/65%",
["Muuhki"] = "EM:635/84%",
["Nooya"] = "RM:631/67%",
["Arkahn"] = "UM:339/35%",
["Kippekaffee"] = "CM:78/11%",
["Evilinchen"] = "CM:60/18%",
["Pazfuq"] = "CB:72/8%UM:324/34%",
["Christey"] = "RM:659/73%",
["Blutsturm"] = "EB:704/88%EM:896/92%",
["Brawndo"] = "UM:82/43%",
["Sinn"] = "EB:625/86%RM:599/66%",
["Elethir"] = "UM:346/37%",
["Wuulf"] = "UT:93/36%EB:439/83%EM:873/89%",
["Mojotha"] = "CM:46/3%",
["Bathur"] = "UM:393/42%",
["Mojolha"] = "CM:111/10%",
["Kæsper"] = "UM:345/35%",
["Talarius"] = "CM:79/24%",
["Rhough"] = "CM:27/7%",
["Elischa"] = "UM:115/48%",
["Fineatic"] = "CM:241/24%",
["Uriel"] = "UM:122/47%",
["Vulnix"] = "CM:46/18%",
["Apèxs"] = "CM:122/15%",
["Miracutrixx"] = "EM:683/75%",
["Tikka"] = "CB:27/2%CM:50/3%",
["Shipoopi"] = "CB:161/21%UM:232/28%",
["Lotoka"] = "RM:422/60%",
["Dopedoctor"] = "RB:264/64%EM:511/84%",
["Byanca"] = "EB:601/77%EM:830/86%",
["Misarion"] = "LB:616/95%LM:745/95%",
["Rédbúll"] = "EM:474/86%",
["Fadda"] = "EB:639/88%EM:861/92%",
["Cptmumpitz"] = "CM:28/1%",
["Saitamâ"] = "RB:422/52%RM:680/72%",
["Pubba"] = "UB:114/41%EM:849/92%",
["Axtgott"] = "CB:189/23%UM:421/45%",
["Rivena"] = "RB:585/74%EM:753/79%",
["Dankeykang"] = "EM:723/76%",
["Spookytowley"] = "RM:182/52%",
["Tychó"] = "RM:454/51%",
["Zdeadq"] = "EM:496/76%",
["Sokker"] = "CM:131/18%",
["Rokkor"] = "RB:416/57%RM:358/54%",
["Shizoo"] = "CT:83/8%EB:552/77%RM:622/69%",
["Gimped"] = "EB:689/89%LM:977/98%",
["Averan"] = "ET:408/93%EB:700/94%LM:941/97%",
["Aheh"] = "CM:208/20%",
["Teccon"] = "UM:333/34%",
["Kyragon"] = "CT:34/8%",
["Macgy"] = "UT:183/29%RB:425/56%EM:699/76%",
["Untoterwilly"] = "CM:57/7%",
["Shamyo"] = "RM:393/66%",
["Thyrax"] = "RT:194/60%EB:585/81%EM:701/77%",
["Ainur"] = "ET:220/77%EB:669/89%EM:860/93%",
["Elan"] = "CB:92/23%UM:93/31%",
["Mitschy"] = "RT:527/72%UB:281/39%SM:1041/99%",
["Fârin"] = "UB:110/32%RM:594/65%",
["Mojogha"] = "CM:63/5%",
["Schubsen"] = "CB:59/7%CM:180/17%",
["Artrias"] = "UB:216/29%UM:305/31%",
["Darkslide"] = "CB:53/6%CM:59/8%",
["Casson"] = "RB:487/65%EM:721/78%",
["Orcean"] = "UT:155/48%RB:417/60%",
["Torlog"] = "EB:414/84%UM:175/48%",
["Hausschuh"] = "RT:185/65%RB:489/71%EM:722/84%",
["Nastra"] = "LB:734/96%LM:974/98%",
["Gabriele"] = "CB:162/20%RM:632/65%",
["Lazorcow"] = "RT:209/69%RB:258/59%",
["Brisingir"] = "LB:785/98%LM:940/96%",
["Bombadur"] = "ET:732/90%RB:496/70%SM:888/99%",
["Malakin"] = "CB:124/15%CM:181/18%",
["Hexar"] = "UM:303/30%",
["Luladge"] = "UM:334/37%",
["Willadin"] = "CM:171/16%",
["Shirøchan"] = "RM:553/61%",
["Nooki"] = "UB:354/48%RM:533/57%",
["Telu"] = "EM:785/84%",
["Rvo"] = "EB:613/86%EM:801/91%",
["Mechapuff"] = "UM:340/36%",
["Zulh"] = "EB:612/85%EM:804/87%",
["Lootform"] = "UM:60/25%",
["Sveez"] = "EM:611/80%",
["Crasol"] = "RB:413/56%UM:93/33%",
["Trifftnix"] = "EM:797/83%",
["Justatmfguy"] = "CM:33/8%",
["Aiñz"] = "EB:586/81%RM:546/64%",
["Rovu"] = "CM:37/12%",
["Bloodi"] = "CM:125/16%",
["Eckie"] = "CB:47/12%CM:127/15%",
["Mercor"] = "RB:502/65%RM:712/74%",
["Dothrax"] = "RB:387/67%EM:662/82%",
["Citral"] = "CM:176/21%",
["Tauriell"] = "RM:501/74%",
["Pinksi"] = "UM:266/32%",
["Laminia"] = "RB:446/58%RM:668/72%",
["Drill"] = "EB:676/86%EM:774/81%",
["Faulenfürst"] = "CT:128/16%UB:293/41%UM:344/36%",
["Imokdinet"] = "EM:680/83%",
["Pitti"] = "EM:692/84%",
["Xyriosa"] = "CM:103/10%",
["Baro"] = "UM:399/43%",
["Loreleij"] = "RB:462/63%EM:685/83%",
["Kerydvena"] = "RB:438/57%UM:448/45%",
["Tricey"] = "UM:336/34%",
["Speef"] = "RM:558/66%",
["Papichulo"] = "RM:535/57%",
["Kilmer"] = "UM:66/26%",
["Texxaco"] = "RM:403/62%",
["Moou"] = "CB:166/21%RM:642/70%",
["Obiak"] = "UM:212/41%",
["Peanutbudder"] = "CM:82/7%",
["Tzet"] = "CM:165/19%",
["Aadil"] = "UB:221/26%RM:600/64%",
["Atzeschlitz"] = "RT:488/66%RB:554/73%EM:818/85%",
["Prima"] = "CM:65/9%",
["Ruji"] = "RM:424/50%",
["Ludmilla"] = "CM:56/6%",
["Painiz"] = "CM:115/15%",
["Edgeman"] = "RM:298/57%",
["Sinne"] = "CM:10/4%",
["Lmc"] = "EB:733/93%EM:875/91%",
["Castma"] = "CM:43/16%",
["Therandor"] = "RM:291/61%",
["Sealhlut"] = "RM:299/58%",
["Nedru"] = "EB:548/84%RM:448/72%",
["Instamaches"] = "UB:339/39%RM:698/74%",
["Loopit"] = "UB:181/48%RM:404/65%",
["Bukari"] = "UB:275/35%UM:262/29%",
["Necross"] = "RB:558/73%EM:858/88%",
["Wpekz"] = "RB:230/53%EM:844/89%",
["Schröda"] = "UM:400/45%",
["Piiviipii"] = "UM:319/38%",
["Nepharim"] = "RB:543/72%EM:765/82%",
["Stagedive"] = "LB:735/96%SM:983/99%",
["Zarzuket"] = "ET:580/77%EB:534/76%RM:609/73%",
["Zaps"] = "CB:117/14%RM:540/56%",
["Popsicle"] = "SB:787/99%LM:952/98%",
["Schmieroel"] = "UT:84/31%EB:675/87%EM:907/94%",
["Lhiane"] = "CB:129/17%",
["Wasserpls"] = "CM:36/2%",
["Vash"] = "LB:723/96%EM:885/94%",
["Máyà"] = "ET:404/92%EB:664/91%LM:879/95%",
["Kurylenkor"] = "ET:646/85%EB:670/87%LM:779/95%",
["Privetjohnes"] = "UB:53/39%RM:248/65%",
["Jindope"] = "UM:387/39%",
["Imbarat"] = "CB:147/17%RM:557/60%",
["Razeal"] = "CT:0/3%CB:154/19%RM:512/55%",
["Ahpèxx"] = "UM:150/40%",
["Dosifil"] = "CM:9/0%",
["Faxus"] = "RM:571/63%",
["Ranzler"] = "RB:503/66%RM:625/67%",
["Furiouskiwi"] = "UB:109/37%RM:531/69%",
["Zaiyn"] = "EB:688/89%EM:906/93%",
["Igelimlaub"] = "RB:425/73%EM:835/93%",
["Methkiefer"] = "RM:304/58%",
["Sekijo"] = "RM:232/59%",
["Fakker"] = "UM:374/39%",
["Goggonaut"] = "UB:343/43%RM:559/58%",
["Zirbas"] = "UM:64/25%",
["Kiritô"] = "RM:672/74%",
["Thaliador"] = "UB:320/41%UM:298/30%",
["Liq"] = "UM:95/48%",
["Hoo"] = "UM:437/45%",
["Kerina"] = "EB:589/75%RM:642/68%",
["Vuhalaji"] = "CM:103/12%",
["Dibratzer"] = "RM:260/58%",
["Bloodrayna"] = "CM:25/0%",
["Elbinos"] = "CB:203/21%UM:256/26%",
["Wìndfury"] = "EB:586/80%EM:733/86%",
["Cliftotem"] = "UM:99/33%",
["Flatslappy"] = "RT:172/59%EB:750/94%EM:929/94%",
["Flaeme"] = "LB:754/95%EM:881/90%",
["Gropi"] = "RB:449/62%EM:686/75%",
["Horrido"] = "RB:444/58%EM:797/83%",
["Twoshot"] = "EB:672/86%EM:820/85%",
["Flatschi"] = "UB:396/48%UM:272/27%",
["Dwarfofsteel"] = "EM:716/76%",
["Spaß"] = "CM:2/0%",
["Bobobloxberg"] = "UM:81/32%",
["Keylee"] = "RM:567/61%",
["Faketaxi"] = "CM:43/15%",
["Ielgrace"] = "UM:452/49%",
["Mety"] = "CM:95/11%",
["Katera"] = "CB:190/20%UM:262/47%",
["Froszy"] = "UM:419/45%",
["Sevo"] = "CM:58/7%",
["Celtok"] = "RM:221/55%",
["Jessypinkman"] = "RB:361/52%RM:456/54%",
["Multiplemob"] = "EB:318/82%EM:532/76%",
["Knüppeljoe"] = "ET:366/90%RB:270/67%EM:746/87%",
["Alphaversion"] = "CB:146/17%RM:518/55%",
["Hakaroth"] = "UB:281/31%CM:185/19%",
["Bärtigebärbl"] = "EM:711/85%",
["Bæmm"] = "CB:75/14%EM:864/89%",
["Notabot"] = "EB:570/76%EM:894/91%",
["Drakan"] = "EM:737/78%",
["Teetonka"] = "UB:155/42%RM:448/63%",
["Lômu"] = "RM:344/57%",
["Tøpmodel"] = "RB:233/64%RM:654/70%",
["Gatoshii"] = "EB:518/92%RM:557/66%",
["Kühlpack"] = "UM:257/31%",
["Lyráá"] = "UT:104/38%RB:208/50%UM:385/43%",
["Vanstich"] = "CB:28/1%UM:337/35%",
["Thêdeath"] = "UM:267/32%",
["Bruutallus"] = "UB:371/47%RM:692/72%",
["Shakedown"] = "UB:232/25%RM:553/59%",
["Hanayama"] = "UM:364/38%",
["Zyrano"] = "UM:319/37%",
["Ynissa"] = "UM:118/40%",
["Canyouseemee"] = "CM:46/14%",
["Skythe"] = "RM:542/58%",
["Nathanis"] = "RM:495/54%",
["Namur"] = "EB:659/90%EM:863/92%",
["Swats"] = "EB:372/80%EM:778/84%",
["Madamski"] = "UB:133/35%RM:620/69%",
["Lansi"] = "UM:238/29%",
["Kørgoth"] = "UM:399/40%",
["Lillith"] = "UM:326/34%",
["Knollsen"] = "RT:521/71%RB:354/73%EM:415/77%",
["Celtik"] = "RM:579/65%",
["Gerlon"] = "CB:84/7%CM:71/22%",
["Üblertyp"] = "UM:295/35%",
["Mademyday"] = "CB:75/7%",
["Wildeswiesel"] = "UB:316/39%RM:285/50%",
["Wickdx"] = "CM:143/16%",
["Magaskawee"] = "CM:156/17%",
["Strafe"] = "UM:472/49%",
["Teesy"] = "RM:271/59%",
["Chaa"] = "RM:672/73%",
["Tâunt"] = "EM:701/78%",
["Crééd"] = "UB:350/41%CM:153/16%",
["Orex"] = "EB:605/84%EM:784/82%",
["Tacca"] = "EB:718/91%LM:927/95%",
["Dulgon"] = "EB:519/89%EM:860/89%",
["Totalgym"] = "CB:135/14%RM:558/59%",
["Vert"] = "RB:260/62%CM:59/4%",
["Pact"] = "RB:394/52%RM:618/68%",
["Laodin"] = "CB:101/9%RM:260/61%",
["Thelittleofc"] = "EM:923/94%",
["Odoro"] = "UB:268/37%CM:180/17%",
["Garôck"] = "CM:98/20%",
["Tiefer"] = "UM:171/45%",
["Bîlle"] = "UM:274/27%",
["Sajetz"] = "RB:542/71%EM:711/75%",
["Coralie"] = "CB:72/8%RM:494/52%",
["Dilas"] = "CB:124/13%RM:448/53%",
["Liùsaidh"] = "EM:750/81%",
["Dameria"] = "UM:344/40%",
["Roxzina"] = "UM:342/39%",
["Opelkadett"] = "UM:273/31%",
["Mortovivo"] = "CB:176/22%UM:96/32%",
["Prophag"] = "CM:145/20%",
["Kuhzifer"] = "UB:211/27%EM:716/76%",
["Ringer"] = "EM:558/75%",
["Wegwienixx"] = "RB:402/52%RM:696/74%",
["Boêndal"] = "RM:376/60%",
["Freakysoul"] = "EB:677/88%LM:927/95%",
["Banâ"] = "RB:467/61%EM:735/77%",
["Xeronius"] = "RB:465/58%RM:624/67%",
["Xexanoth"] = "CT:26/1%UB:247/30%RM:600/64%",
["Yornze"] = "EB:543/81%LM:901/95%",
["Fraba"] = "CT:62/17%RB:397/54%UM:258/35%",
["Karoit"] = "UB:287/35%EM:930/94%",
["Ebaytroll"] = "CM:105/15%",
["Neliehomur"] = "UT:288/37%EB:686/91%EM:897/93%",
["Ixor"] = "CT:87/8%CB:79/7%RM:532/73%",
["Stomping"] = "CT:0/2%RB:560/72%EM:720/76%",
["Drakê"] = "RM:511/54%",
["Kazamy"] = "EB:498/84%EM:758/89%",
["Asbestos"] = "RB:450/57%RM:648/69%",
["Visjes"] = "RT:184/63%CM:169/21%",
["Freda"] = "UM:160/43%",
["Wezzýbra"] = "CB:126/17%CM:146/22%",
["Fronis"] = "CB:37/7%UM:133/40%",
["Vladitepes"] = "CB:125/12%RM:197/51%",
["Herbi"] = "UT:278/35%LB:758/98%LM:956/98%",
["Valcone"] = "UM:149/43%",
["Apøllo"] = "RB:247/66%RM:386/63%",
["Ondorio"] = "RB:509/68%RM:634/70%",
["Gyimli"] = "CM:80/7%",
["Aragia"] = "CM:212/21%",
["Coffein"] = "CB:60/5%RM:273/63%",
["Riefex"] = "RB:350/71%RM:644/69%",
["Valkøn"] = "CB:38/2%",
["Blurzer"] = "RB:421/54%RM:662/69%",
["Nobsi"] = "CM:92/13%",
["Xsichtschuss"] = "RM:360/73%",
["Bacchus"] = "UT:147/47%UB:292/38%RM:656/72%",
["Partypoegu"] = "RM:285/57%",
["Cryp"] = "ET:634/82%RB:531/74%EM:882/93%",
["Miisha"] = "RB:511/71%EM:709/78%",
["Migger"] = "UT:40/41%UB:350/48%EM:697/80%",
["Gerard"] = "CB:24/2%",
["Curia"] = "ET:419/94%CB:84/10%CM:176/17%",
["Shenah"] = "EM:821/92%",
["Rabbas"] = "RM:570/60%",
["Lûckystrîkê"] = "EM:752/79%",
["Killus"] = "UB:232/28%EM:729/77%",
["Schmendrik"] = "CB:29/3%RM:501/55%",
["Sházil"] = "EB:622/80%EM:759/79%",
["Cazu"] = "EB:735/93%EM:874/91%",
["Inclutzive"] = "EB:584/86%EM:695/86%",
["Hautbahnhof"] = "CB:19/2%UM:432/44%",
["Cashma"] = "RB:486/67%RM:642/71%",
["Baumpriester"] = "LB:724/96%EM:598/81%",
["Heilich"] = "UB:332/44%RM:576/63%",
["Wów"] = "RM:252/59%",
["Tintra"] = "CM:219/21%",
["Icewallow"] = "UM:329/33%",
["Cránk"] = "RB:180/54%EM:532/75%",
["Greko"] = "CB:75/8%UM:333/33%",
["Trulita"] = "UM:141/46%",
["Nuoda"] = "EB:546/81%EM:741/86%",
["Tiuri"] = "EB:655/83%RM:683/73%",
["Mínako"] = "LB:777/98%LM:954/98%",
["Koilinski"] = "EB:630/86%EM:786/85%",
["Hôt"] = "RB:495/68%RM:622/68%",
["Sathela"] = "UM:456/48%",
["Dranduil"] = "RM:481/50%",
["Ledara"] = "UB:117/31%UM:437/49%",
["Knaké"] = "RM:594/74%",
["Nalonaei"] = "UM:404/41%",
["Benski"] = "RB:476/66%EM:816/86%",
["Serinas"] = "CB:99/12%RM:552/57%",
["Haiducci"] = "CB:192/23%RM:644/71%",
["Rjins"] = "UB:251/30%RM:702/74%",
["Thiaz"] = "CM:135/12%",
["Zatôx"] = "RB:309/71%EM:854/90%",
["Gasdrop"] = "UM:341/34%",
["Cere"] = "UM:267/25%",
["Animalisch"] = "UM:376/40%",
["Jarien"] = "CB:221/23%UM:429/44%",
["Tchabug"] = "RM:495/70%",
["Yggdrazil"] = "CM:148/13%",
["Lehfain"] = "CB:164/19%UM:466/49%",
["Nausikaa"] = "EB:528/80%EM:656/81%",
["Thremorx"] = "RB:431/57%RM:664/73%",
["Artax"] = "EB:644/81%EM:729/77%",
["Unterhemd"] = "RM:584/64%",
["Tat"] = "RM:363/62%",
["Mölle"] = "UT:331/46%EB:651/82%EM:887/91%",
["Grimmtooth"] = "UB:112/37%UM:98/30%",
["Groshgal"] = "EB:658/83%EM:786/82%",
["Tavok"] = "UB:384/48%UM:427/45%",
["Shamojo"] = "UM:442/48%",
["Rhagon"] = "RM:678/72%",
["Pheal"] = "RB:427/58%RM:642/71%",
["Bondito"] = "EB:594/78%EM:747/81%",
["Sinore"] = "EB:656/84%EM:924/94%",
["Hazezawg"] = "RB:460/57%RM:401/62%",
["Farmbar"] = "RB:411/54%RM:510/56%",
["Gullveig"] = "EB:627/86%EM:834/90%",
["Zawgdawg"] = "RB:422/56%RM:579/64%",
["Zuithek"] = "CB:34/3%RM:753/71%",
["Silvaplana"] = "EB:427/76%RM:462/73%",
["Títo"] = "RB:499/64%EM:736/77%",
["Flobbsi"] = "EB:690/89%EM:857/90%",
["Quash"] = "SB:786/99%LM:964/98%",
["Icks"] = "EB:720/90%EM:782/82%",
["Druihuihui"] = "EB:511/82%EM:836/93%",
["Golgrosh"] = "LB:792/98%LM:947/97%",
["My"] = "RM:664/69%",
["Yashirah"] = "ET:647/86%SB:840/99%SM:1100/99%",
["Rasero"] = "RM:546/58%",
["Vrayven"] = "RM:369/62%",
["Sharuk"] = "UM:364/38%",
["Haferflocke"] = "RM:330/64%",
["Leyya"] = "RT:170/68%EB:692/89%EM:806/86%",
["Tungus"] = "CM:190/19%",
["Corristo"] = "RM:489/70%",
["Elsu"] = "CM:90/7%",
["Shirø"] = "RB:499/66%EM:711/75%",
["Marrison"] = "EM:753/82%",
["Anduriel"] = "EB:572/75%RM:557/57%",
["Manualreader"] = "RM:471/51%",
["Krenn"] = "CM:88/6%",
["Hambas"] = "ET:334/82%RM:283/63%",
["Cowdy"] = "RB:226/61%RM:490/73%",
["Luciakarma"] = "CB:53/5%UM:346/35%",
["Zhonya"] = "EB:652/88%EM:814/87%",
["Goha"] = "EB:581/82%EM:837/91%",
["Naifu"] = "RM:514/57%",
["Gadz"] = "EM:728/77%",
["Womanbearcat"] = "UB:284/39%EM:869/92%",
["Atinuviell"] = "EM:667/86%",
["Donfistor"] = "CM:203/19%",
["Arianissa"] = "CM:184/24%",
["Vegard"] = "CM:70/6%",
["Nesurem"] = "RM:212/57%",
["Khion"] = "RM:565/60%",
["Starkbier"] = "UB:169/33%EM:590/77%",
["Drk"] = "CB:179/21%UM:326/38%",
["Errør"] = "UM:310/32%",
["Frächehagel"] = "CT:32/2%EB:681/88%EM:783/82%",
["Salzgurke"] = "ET:661/86%EB:674/86%LM:876/98%",
["Ktof"] = "RM:344/65%",
["Leodan"] = "UB:265/33%RM:481/53%",
["Phaet"] = "LB:724/96%LM:941/98%",
["Kírito"] = "EB:704/88%LM:964/97%",
["Kasharin"] = "RB:548/74%RM:632/67%",
["Evilschen"] = "UB:351/47%EM:754/82%",
["Lubia"] = "RM:637/68%",
["Hoshiyoshi"] = "EB:695/89%EM:907/94%",
["Browler"] = "EB:669/91%EM:856/93%",
["Hexeschuss"] = "EB:730/92%LM:951/96%",
["Aix"] = "LB:756/95%LM:967/97%",
["Hardnibz"] = "CB:28/0%RM:527/58%",
["Keenai"] = "UM:134/43%",
["Glorax"] = "RB:450/62%RM:626/69%",
["Leantor"] = "EB:570/82%EM:703/82%",
["Sweetchilli"] = "UM:429/44%",
["Xyks"] = "UM:338/35%",
["Jaquie"] = "SB:828/99%SM:1020/99%",
["Naryah"] = "UB:372/48%EM:757/79%",
["Shakawathaa"] = "CM:209/21%",
["Bosper"] = "CB:174/21%RM:703/74%",
["Kromweg"] = "UB:357/46%UM:381/40%",
["Maorca"] = "EB:563/78%EM:833/88%",
["Anuzgomez"] = "UB:363/46%UM:284/29%",
["Bappo"] = "RM:542/74%",
["Zaleen"] = "CM:34/2%",
["Lograr"] = "RB:540/69%EM:715/76%",
["Annetanke"] = "RB:453/60%EM:698/76%",
["Inzaiyn"] = "RM:498/59%",
["Cursemage"] = "CM:186/18%",
["Dwyran"] = "CM:155/16%",
["Soranir"] = "RB:567/73%EM:789/82%",
["Goasmaß"] = "UM:392/40%",
["Zamiel"] = "CB:156/19%UM:343/36%",
["Littlesuue"] = "EB:668/90%EM:883/93%",
["Gewitterhund"] = "CM:68/5%",
["Lochfuldan"] = "EB:704/92%EM:839/92%",
["Pwnyounoobs"] = "EB:582/83%EM:772/87%",
["Jinlor"] = "RM:506/55%",
["Norshella"] = "EB:712/91%EM:895/93%",
["Heiterdenker"] = "EB:731/92%EM:909/93%",
["Mírâculíx"] = "UB:217/27%CM:207/21%",
["Pâd"] = "EB:695/89%EM:847/89%",
["Thabor"] = "EB:716/90%EM:919/94%",
["Merkurion"] = "CT:61/22%EB:615/84%EM:756/82%",
["Pfotenfreund"] = "EB:741/93%EM:873/89%",
["Qoq"] = "RB:448/59%RM:643/71%",
["Ingried"] = "EB:578/79%EM:776/84%",
["Minkowski"] = "RB:504/67%EM:757/81%",
["Borakulator"] = "RM:589/65%",
["Elldon"] = "UB:327/40%EM:744/78%",
["Wolverinê"] = "UT:40/41%UM:111/43%",
["Terminice"] = "UM:305/31%",
["Yazo"] = "EB:748/94%LM:985/98%",
["Purgator"] = "UM:351/37%",
["Mikazuki"] = "RB:562/72%EM:796/83%",
["Masuh"] = "UM:46/41%",
["Ilona"] = "LB:790/98%SM:1027/99%",
["Piidog"] = "EB:647/87%EM:788/89%",
["Tasilu"] = "EB:625/85%EM:701/77%",
["Voopx"] = "UB:311/41%RM:542/60%",
["Lightwing"] = "CB:170/20%UM:255/25%",
["Kuhrti"] = "UB:311/41%RM:633/70%",
["Nagev"] = "CM:216/21%",
["Ittun"] = "RB:513/70%EM:741/79%",
["Gromlakh"] = "RM:576/61%",
["Mirrox"] = "CB:53/5%CM:81/7%",
["Siggiesmallz"] = "UB:118/32%UM:446/46%",
["Kreese"] = "UB:358/42%EM:742/78%",
["Thes"] = "RB:558/73%EM:767/80%",
["Talonji"] = "EB:702/93%EM:872/94%",
["Zürcher"] = "RM:483/50%",
["Sprintox"] = "CM:95/9%",
["Ness"] = "EB:587/81%EM:789/85%",
["Osory"] = "RM:532/55%",
["Effendx"] = "UM:271/27%",
["Velandria"] = "RM:563/62%",
["Epiphany"] = "RM:539/58%",
["Svocchi"] = "RB:419/57%EM:719/79%",
["Sumadra"] = "CT:175/20%RB:427/61%EM:736/81%",
["Taurenhill"] = "EB:597/76%EM:851/88%",
["Faustig"] = "EB:609/77%EM:791/83%",
["Mly"] = "EB:676/85%EM:851/87%",
["Xerenia"] = "CB:199/21%UM:444/46%",
["Txp"] = "CB:37/3%",
["Onibaba"] = "EB:613/84%LM:932/96%",
["Spicebringer"] = "UB:357/45%RM:641/62%",
["Qý"] = "EB:615/87%EM:683/83%",
["Zállog"] = "RM:520/57%",
["Trudilla"] = "UM:73/27%",
["Snareqtx"] = "CM:44/3%",
["Çarmo"] = "EM:764/80%",
["Pun"] = "EB:688/87%EM:813/84%",
["Amewa"] = "ET:328/87%EB:666/85%EM:757/79%",
["Martok"] = "EB:682/87%EM:847/87%",
["Shiffty"] = "RB:242/63%EM:680/86%",
["Mirlematrix"] = "RB:508/64%EM:764/80%",
["Nanee"] = "EB:719/90%LM:959/96%",
["Knaeckebrot"] = "LB:772/97%LM:936/95%",
["Ziratia"] = "UM:385/41%",
["Hinti"] = "RM:202/54%",
["Ainshval"] = "CM:206/20%",
["Saftar"] = "CB:106/9%CM:115/12%",
["Primuhus"] = "EM:690/85%",
["Iink"] = "UB:320/41%RM:540/59%",
["Cárlassi"] = "RB:447/59%EM:810/86%",
["Rotty"] = "RB:512/68%RM:633/70%",
["Showcase"] = "UB:345/45%RM:546/60%",
["Brands"] = "EB:597/83%EM:729/86%",
["Coffeeboy"] = "RB:409/52%EM:706/75%",
["Deaddoll"] = "RB:459/63%RM:572/63%",
["Nirak"] = "EB:602/77%EM:774/81%",
["Koimini"] = "UM:365/37%",
["Unbiskant"] = "UB:338/45%RM:486/53%",
["Carriefisher"] = "LB:765/96%LM:969/97%",
["Malex"] = "EB:697/90%EM:910/94%",
["Cryosanus"] = "CB:102/12%RM:648/71%",
["Vêritas"] = "RB:538/71%EM:772/81%",
["Necry"] = "UM:341/36%",
["Natzu"] = "EB:531/79%EM:657/79%",
["Veldozan"] = "UM:340/36%",
["Shely"] = "UM:405/43%",
["Ipsos"] = "CB:135/14%RM:469/51%",
["Lululemon"] = "EB:688/93%EM:777/85%",
["Rónný"] = "RT:414/55%LB:763/98%EM:896/94%",
["Morphtech"] = "UT:90/34%LB:731/96%EM:886/93%",
["Zauberlaus"] = "CB:90/21%EM:776/85%",
["Finnisher"] = "CB:47/3%RM:322/52%",
["Pâycur"] = "EB:589/75%EM:820/85%",
["Hiddukel"] = "CB:164/19%EM:755/82%",
["Grünerbusch"] = "EM:517/75%",
["Kartunga"] = "CT:99/12%RB:541/69%EM:862/88%",
["Dewan"] = "RT:169/73%",
["Poebbi"] = "CT:42/13%RB:408/53%RM:667/71%",
["Sîrimpact"] = "LB:715/95%LM:969/98%",
["Zekjana"] = "CM:21/5%",
["Twiesel"] = "UB:355/47%RM:523/58%",
["Malpi"] = "CT:42/10%",
["Redworm"] = "RM:559/58%",
["Hypothermie"] = "UM:435/47%",
["Cptfrostie"] = "RM:635/70%",
["Momobaked"] = "CT:141/18%EB:691/88%EM:791/82%",
["Jardani"] = "CT:59/6%UB:257/33%RM:393/71%",
["Nezia"] = "RB:524/73%EM:773/83%",
["Nathondal"] = "CT:161/21%EB:685/87%EM:813/84%",
["Mitsch"] = "CB:96/12%CM:182/18%",
["Knorker"] = "CM:33/9%",
["Arendis"] = "EM:735/94%",
["Roselia"] = "RB:454/72%EM:672/83%",
["Kazabubu"] = "RM:247/54%",
["Gaohan"] = "CB:104/11%RM:534/62%",
["Desudo"] = "CT:18/3%CM:53/4%",
["Magarita"] = "RM:265/54%",
["Makie"] = "CM:14/2%",
["Mograh"] = "UM:256/31%",
["Bollached"] = "UB:233/25%RM:272/62%",
["Alána"] = "EB:548/76%EM:814/88%",
["Neolatus"] = "LB:758/95%EM:903/92%",
["Kapitano"] = "EB:526/78%RM:590/74%",
["Marij"] = "EB:729/93%EM:796/85%",
["Loisi"] = "RM:187/53%",
["Akall"] = "RB:489/67%RM:518/57%",
["Balmorath"] = "RB:441/74%EM:794/91%",
["Kotelett"] = "RB:499/69%RM:632/70%",
["Jankho"] = "EB:620/81%UM:324/34%",
["Ändy"] = "EB:742/93%EM:925/94%",
["Hafenkalle"] = "EB:596/76%RM:576/62%",
["Dudukahn"] = "EM:646/83%",
["Kellki"] = "EB:605/80%EM:753/81%",
["Sosis"] = "LB:761/96%LM:934/95%",
["Daily"] = "LB:756/95%LM:940/95%",
["Olibutzbutz"] = "EB:745/93%LM:962/97%",
["Shirokun"] = "EB:742/94%LM:946/96%",
["Conhadi"] = "LB:776/98%LM:959/98%",
["Kawakh"] = "EB:587/84%EM:713/83%",
["Fulmhan"] = "CT:61/5%EB:677/91%EM:838/91%",
["Nanji"] = "ET:678/88%EB:544/77%EM:683/80%",
["Hennri"] = "RB:386/52%EM:689/76%",
["Welpi"] = "EM:688/83%",
["Danganronpa"] = "CB:119/14%UM:322/32%",
["Eldea"] = "CM:45/3%",
["Annique"] = "LB:781/97%SM:997/99%",
["Anga"] = "UM:455/47%",
["Tralurk"] = "CM:190/18%",
["Luschibamm"] = "RM:639/70%",
["Hansmaulwurf"] = "UM:339/35%",
["Chayana"] = "RB:493/69%EM:356/77%",
["Kouse"] = "UB:300/39%UM:392/42%",
["Palimmbor"] = "RB:488/64%RM:622/64%",
["Milya"] = "RT:169/58%EB:548/76%RM:457/73%",
["Vulgor"] = "RT:336/68%RB:449/73%EM:744/87%",
["Bigsmoke"] = "CB:194/20%RM:499/53%",
["Carock"] = "CM:93/11%",
["Krusti"] = "EB:623/81%EM:887/91%",
["Bok"] = "RB:378/52%RM:612/68%",
["Plombír"] = "CT:0/3%EM:842/89%",
["Wooddy"] = "EM:722/87%",
["Spankie"] = "LB:729/95%EM:839/92%",
["Kathman"] = "UB:237/29%EM:716/79%",
["Isois"] = "RM:458/67%",
["Zaf"] = "EM:621/79%",
["Valkyrjâ"] = "CT:102/12%RB:549/73%LM:932/95%",
["Buzzniner"] = "CM:128/11%",
["Okumaxd"] = "RB:404/55%EM:798/87%",
["Pice"] = "EM:764/82%",
["Viernah"] = "RB:503/70%RM:662/73%",
["Trankfarm"] = "RM:593/63%",
["Kartofelbrei"] = "CB:161/19%UM:325/32%",
["Bêat"] = "EB:651/84%EM:742/78%",
["Thardolath"] = "EB:704/93%EM:813/87%",
["Brompfi"] = "EB:625/81%EM:775/80%",
["Grìmbart"] = "RM:526/57%",
["Infêrno"] = "UB:321/41%EM:739/80%",
["Kayx"] = "RB:521/66%EM:715/76%",
["Furyx"] = "UB:316/36%EM:729/77%",
["Mediena"] = "UM:386/41%",
["Gosha"] = "CM:56/4%",
["Rumralle"] = "CB:160/19%RM:576/62%",
["Liun"] = "CM:112/10%",
["Trestis"] = "RB:490/68%RM:603/67%",
["Bquul"] = "EB:650/82%EM:914/93%",
["Ôldsql"] = "EM:711/83%",
["Qmelone"] = "RB:451/58%EM:816/84%",
["Scheurebe"] = "UM:158/46%",
["Missmagie"] = "CM:53/3%",
["Vableone"] = "UT:329/43%RB:448/61%RM:258/59%",
["Udnax"] = "EB:690/91%LM:968/98%",
["Grombolar"] = "EB:672/85%LM:965/97%",
["Alariá"] = "EM:630/83%",
["Singsang"] = "UM:447/46%",
["Damania"] = "RB:389/51%RM:494/54%",
["Egfelias"] = "CM:33/2%",
["Inzingor"] = "CM:30/1%",
["Sherwood"] = "RB:505/67%RM:679/74%",
["Magohelado"] = "UM:252/25%",
["Nalot"] = "EB:626/79%EM:813/85%",
["Whipe"] = "EB:726/92%EM:920/94%",
["Doomclaw"] = "CB:99/12%UM:398/41%",
["Moojooh"] = "CM:83/7%",
["Serada"] = "CM:93/7%",
["Shadowgurke"] = "CM:90/7%",
["Deash"] = "UM:281/27%",
["Xhav"] = "RM:286/50%",
["Ramste"] = "UB:375/49%EM:884/90%",
["Sodd"] = "UB:329/41%RM:696/72%",
["Mâylin"] = "CM:216/22%",
["Giinaheilt"] = "RM:550/61%",
["Drhoof"] = "EB:663/89%EM:835/88%",
["Boneshade"] = "CB:180/22%RM:495/51%",
["Teredel"] = "UM:266/27%",
["Pseudó"] = "RB:488/62%EM:749/79%",
["Redpanda"] = "EB:712/90%EM:883/90%",
["Dreiste"] = "UB:160/41%UM:412/45%",
["Broechu"] = "CB:55/11%UM:250/25%",
["Kyubee"] = "CM:198/19%",
["Bilbur"] = "CM:226/22%",
["Alysta"] = "RM:376/67%",
["Uker"] = "UB:364/47%RM:587/65%",
["Thunderhit"] = "UB:274/36%UM:340/35%",
["Dannya"] = "RB:430/59%RM:658/73%",
["Celebrim"] = "CM:104/8%",
["Ictus"] = "CB:76/9%",
["Hulkez"] = "CM:36/5%",
["Revencher"] = "CM:167/18%",
["Gunkii"] = "RB:497/63%RM:634/68%",
["Cebius"] = "RB:494/65%EM:727/77%",
["Lavril"] = "EB:634/82%RM:579/62%",
["Whillow"] = "UB:258/33%RM:531/58%",
["Tharaskor"] = "CM:102/9%",
["Onro"] = "UB:286/35%RM:628/67%",
["Josefjohn"] = "RB:503/67%RM:658/72%",
["Tabakson"] = "UT:344/46%EB:666/85%EM:872/89%",
["Conzeq"] = "UM:405/41%",
["Kaminfegerin"] = "UB:219/27%RM:593/65%",
["Thewarrior"] = "CB:195/21%UM:311/36%",
["Chinpokomon"] = "CM:174/16%",
["Siddet"] = "EB:652/84%EM:805/83%",
["Trôpsi"] = "CB:97/11%UM:454/49%",
["Yunastarz"] = "RB:431/59%RM:587/65%",
["Hirtenjunge"] = "CM:221/22%",
["Nèmes"] = "EM:676/75%",
["Jikjin"] = "RB:559/73%EM:888/91%",
["Asasél"] = "CM:205/20%",
["Clixy"] = "EB:647/82%EM:781/82%",
["Khazar"] = "EB:728/93%LM:935/95%",
["Studhilo"] = "RB:489/64%RM:517/54%",
["Jayne"] = "EB:743/93%EM:915/93%",
["Eramonius"] = "EB:630/83%EM:775/83%",
["Skwirty"] = "RM:529/58%",
["Buffermage"] = "RB:330/65%RM:420/67%",
["Fistoh"] = "CM:143/14%",
["Hatey"] = "RB:314/67%EM:773/81%",
["Gnomspießer"] = "CM:41/3%",
["Lenilion"] = "EB:669/87%EM:814/86%",
["Negaverse"] = "RB:468/62%RM:668/73%",
["Totäms"] = "RM:525/69%",
["Makozer"] = "RB:438/67%RM:495/70%",
["Sabeth"] = "UM:44/40%",
["Perseverance"] = "EB:659/86%EM:867/91%",
["Daerven"] = "LB:770/96%LM:974/98%",
["Betaversion"] = "EB:634/86%EM:907/94%",
["Yurito"] = "RB:578/74%EM:871/89%",
["Pocoyo"] = "RB:404/53%RM:628/69%",
["Brisingur"] = "RM:654/70%",
["Shàkur"] = "UB:264/29%UM:305/30%",
["Mackiemesser"] = "UM:332/34%",
["Booggie"] = "RB:436/60%RM:622/69%",
["Simsah"] = "CM:180/18%",
["Tariel"] = "RT:175/54%EB:635/87%EM:863/91%",
["Spaxer"] = "EB:606/77%RM:686/73%",
["Nandaa"] = "RB:482/67%RM:593/66%",
["Keyofegoism"] = "RB:542/70%EM:725/76%",
["Daerent"] = "EB:717/91%EM:839/87%",
["Varden"] = "EB:690/88%EM:769/80%",
["Ignotus"] = "RM:578/62%",
["Amarok"] = "EB:708/94%LM:965/98%",
["Durward"] = "EB:562/75%EM:735/79%",
["Edarling"] = "CB:75/7%EM:581/76%",
["Hellsbells"] = "RM:562/62%",
["Shooze"] = "EB:704/89%EM:872/89%",
["Ronin"] = "EB:748/94%LM:935/95%",
["Biloka"] = "EB:679/91%LM:938/97%",
["Schwach"] = "EB:683/87%EM:826/86%",
["Sumpfnase"] = "EB:656/83%RM:642/69%",
["Sanchezgodxx"] = "LB:770/96%LM:971/97%",
["Lykhan"] = "EB:750/94%LM:964/97%",
["Klingelbeutl"] = "LB:727/96%LM:936/97%",
["Bowshnob"] = "UB:301/38%RM:561/58%",
["Danzkaa"] = "LB:755/95%LM:934/95%",
["Xnb"] = "UB:225/28%CM:226/22%",
["Bigtasty"] = "SB:787/99%LM:964/98%",
["Palandez"] = "EB:710/94%SM:999/99%",
["Faranell"] = "EM:811/88%",
["Sarpentis"] = "UB:317/38%EM:591/77%",
["Dagazz"] = "RM:225/56%",
["Lérex"] = "UM:389/41%",
["Tatupu"] = "UB:307/39%RM:606/63%",
["Nerdstomper"] = "LT:753/96%EB:706/94%LM:879/95%",
["Rîkka"] = "EB:566/75%EM:740/80%",
["Brood"] = "CT:82/11%EM:783/82%",
["Exonia"] = "CT:86/10%EM:884/89%",
["Mukksli"] = "RT:141/52%LB:769/97%EM:921/94%",
["Vagician"] = "UT:218/29%RB:431/57%UM:349/37%",
["Kesstiel"] = "RT:166/57%",
["Samsares"] = "UB:121/42%UM:172/34%",
["Jinchuuriki"] = "RM:586/63%",
["Kleinlich"] = "CB:64/7%CM:103/9%",
["Nutschi"] = "CM:152/14%",
["Bendtheknee"] = "CB:30/2%CM:231/23%",
["Zandoriel"] = "UB:239/30%RM:569/63%",
["Oberherrin"] = "RB:428/53%",
["Crouserman"] = "RM:492/52%",
["Barometrix"] = "RB:498/69%EM:779/84%",
["Nerzah"] = "EB:695/89%EM:782/84%",
["Trym"] = "UB:245/43%RM:462/67%",
["Anookii"] = "RM:482/53%",
["Ratta"] = "RB:449/62%EM:714/78%",
["Boostmage"] = "CM:43/3%",
["Kardyas"] = "ET:744/94%LB:762/96%EM:857/89%",
["Hemp"] = "RB:459/57%EM:847/88%",
["Ragaro"] = "UB:156/31%EM:786/89%",
["Chuba"] = "UM:293/49%",
["Encephacloak"] = "UM:404/42%",
["Amse"] = "UB:360/48%EM:747/81%",
["Bike"] = "RM:314/61%",
["Infernoblast"] = "CM:118/10%",
["Hatorix"] = "EB:597/76%RM:659/70%",
["Gnomignom"] = "CM:36/5%",
["Fearcules"] = "RM:516/53%",
["Schmetz"] = "CM:52/4%",
["Bugfix"] = "CM:53/6%",
["Sérén"] = "UB:356/47%UM:449/49%",
["Methqualon"] = "EB:601/78%EM:794/83%",
["Dannym"] = "RM:464/51%",
["Frame"] = "RB:451/56%RM:619/66%",
["Pontifix"] = "RB:246/58%EM:682/75%",
["Idotall"] = "CM:183/18%",
["Bogenbernd"] = "CM:229/21%",
["Talack"] = "UM:265/26%",
["Sylundine"] = "CM:187/17%",
["Hacklappen"] = "RM:579/62%",
["Shyio"] = "UB:305/39%EM:744/80%",
["Vespìra"] = "RB:544/70%EM:821/85%",
["Mardun"] = "UM:336/35%",
["Arnora"] = "LB:738/96%LM:900/96%",
["Vigthas"] = "CM:160/15%",
["Salazár"] = "EB:661/86%LM:940/96%",
["Neverdead"] = "EB:686/92%EM:856/91%",
["Icken"] = "RT:496/67%EB:721/91%LM:888/98%",
["Arun"] = "EB:698/92%LM:938/96%",
["Aokijí"] = "UM:391/42%",
["Emsi"] = "CM:36/3%",
["Fiesbert"] = "EB:619/79%EM:824/85%",
["Fiesbart"] = "EB:668/89%EM:839/92%",
["Keinmage"] = "RM:543/60%",
["Cazpar"] = "RB:491/65%RM:676/74%",
["Pibo"] = "CM:228/23%",
["Rickyspánish"] = "RB:467/60%EM:707/75%",
["Oep"] = "RB:492/68%EM:730/80%",
["Werloog"] = "RB:424/55%UM:352/35%",
["Mallê"] = "RM:263/59%",
["Roxxaz"] = "UM:311/32%",
["Zulkar"] = "EB:584/84%EM:668/82%",
["Braf"] = "LB:727/95%EM:903/94%",
["Birtneyfears"] = "EB:647/83%EM:728/76%",
["Pneihs"] = "EB:593/82%EM:751/82%",
["Klauskrieger"] = "RB:409/50%RM:678/72%",
["Servitor"] = "EB:707/89%EM:905/93%",
["Deadlyhexx"] = "LB:759/96%LM:937/96%",
["Valiri"] = "RB:493/68%EM:746/81%",
["Aarkvark"] = "CB:154/19%UM:294/30%",
["Saibold"] = "UM:286/34%",
["Illkill"] = "UB:322/36%UM:301/30%",
["Teivas"] = "RB:461/58%UM:407/42%",
["Pelzträger"] = "RM:280/60%",
["Jasminaa"] = "EM:682/85%",
["Baxira"] = "UM:261/26%",
["Kenshiro"] = "CM:75/7%",
["Zexikar"] = "LB:727/95%SM:976/99%",
["Bitchslap"] = "CB:27/1%CM:168/16%",
["Reogwyn"] = "UM:408/41%",
["Vranos"] = "UM:269/27%",
["Røuge"] = "LB:766/96%LM:940/95%",
["Shubby"] = "RB:553/71%EM:835/86%",
["Bohnita"] = "ET:649/85%EB:691/88%RM:698/73%",
["Maganos"] = "RM:581/64%",
["Wunderbar"] = "EB:654/85%EM:832/88%",
["Gâunt"] = "CB:94/11%CM:84/8%",
["Barrageobama"] = "CB:55/5%RM:491/51%",
["Hangingegg"] = "UB:221/27%RM:656/68%",
["Experience"] = "UB:213/26%EM:728/80%",
["Tengo"] = "UB:359/48%EM:691/75%",
["Àlucard"] = "EB:569/80%EM:622/80%",
["Farmübier"] = "CB:153/19%UM:367/39%",
["Coldrain"] = "EB:543/84%EM:705/88%",
["Merlana"] = "EB:687/89%EM:835/91%",
["Froggeh"] = "EB:692/87%EM:881/90%",
["Jizai"] = "EB:728/91%EM:919/94%",
["Shinako"] = "EB:587/81%EM:750/82%",
["Fúrý"] = "RM:285/50%",
["Arra"] = "RM:429/65%",
["Vania"] = "RM:308/50%",
["Kisch"] = "CB:165/19%EM:651/76%",
["Freezlebub"] = "UM:320/33%",
["Roulux"] = "RB:465/59%RM:560/60%",
["Melchiahim"] = "CB:39/4%CM:27/0%",
["Sahrdo"] = "RM:643/71%",
["Saliser"] = "RB:252/51%RM:350/54%",
["Gninokk"] = "CB:88/9%CM:231/23%",
["Encepha"] = "RB:301/58%RM:501/72%",
["Callmebruno"] = "RB:503/65%EM:868/89%",
["Nyxia"] = "EB:602/83%EM:695/76%",
["Aradon"] = "RB:477/63%EM:707/75%",
["Locklen"] = "RM:659/73%",
["Mudkipz"] = "UM:334/33%",
["Yaki"] = "UM:412/42%",
["Nanashî"] = "EB:738/94%LM:952/96%",
["Raidmax"] = "RB:164/54%EM:610/82%",
["Tomorrow"] = "UM:454/46%",
["Sproodle"] = "CM:193/19%",
["Koberto"] = "UM:326/34%",
["Allsizes"] = "LB:761/95%LM:937/95%",
["Lassmiranda"] = "EB:642/81%EM:913/93%",
["Mireio"] = "RB:504/64%EM:778/82%",
["Frostymcbolt"] = "EB:662/86%EM:815/86%",
["Elura"] = "UB:332/44%EM:687/82%",
["Ðude"] = "LB:767/96%LM:942/95%",
["Pipapo"] = "EB:588/86%EM:816/90%",
["Smörebröth"] = "RB:464/58%RM:526/56%",
["Grogall"] = "RM:678/72%",
["Prodigium"] = "RB:477/63%RM:645/72%",
["Elôcîn"] = "UM:254/25%",
["Kleinfínger"] = "RM:626/69%",
["Dedalus"] = "RB:574/73%RM:631/67%",
["Delkor"] = "EB:711/93%LM:932/97%",
["Mowit"] = "EB:700/94%EM:799/87%",
["Toy"] = "EB:732/94%EM:879/93%",
["Talmud"] = "RM:572/61%",
["Rottl"] = "RM:677/72%",
["Wmerb"] = "LB:761/95%LM:983/98%",
["Lullaby"] = "EB:668/84%EM:856/88%",
["Rasal"] = "EB:742/93%EM:925/94%",
["Gabriella"] = "EB:553/77%EM:893/94%",
["Tártus"] = "EB:589/78%EM:776/83%",
["Metadon"] = "UB:284/36%RM:641/70%",
["Onkelbénz"] = "EB:707/90%EM:886/91%",
["Speckwürfel"] = "RB:540/69%EM:757/79%",
["Zallóg"] = "EB:654/83%EM:801/84%",
["Joepriest"] = "UB:291/38%EM:721/79%",
["Orangejuicex"] = "CB:126/15%EM:776/81%",
["Zilmo"] = "EB:628/80%EM:751/79%",
["Yoker"] = "CM:198/20%",
["Breakdabank"] = "RB:573/73%UM:356/36%",
["Gruftlord"] = "EB:595/78%RM:600/66%",
["Ormel"] = "EB:691/91%LM:947/97%",
["Tajson"] = "EB:596/76%EM:714/75%",
["Azzrock"] = "UB:306/39%RM:680/74%",
["Tearjerkér"] = "EB:726/92%EM:863/89%",
["Kidneyspears"] = "CM:230/23%",
["Thepoisen"] = "EB:607/77%EM:792/83%",
["Skål"] = "RM:501/53%",
["Bratzdis"] = "UM:290/28%",
["Mobmob"] = "EB:740/94%EM:901/93%",
["Campe"] = "RM:512/56%",
["Allita"] = "CM:220/22%",
["Apfelkorn"] = "UB:233/29%RM:648/72%",
["Historia"] = "EB:722/91%EM:881/91%",
["Swindles"] = "RT:452/61%EB:663/86%EM:848/87%",
["Shredex"] = "RB:531/71%SM:1021/99%",
["Portalftw"] = "EB:728/93%EM:899/93%",
["Profrost"] = "LB:770/97%LM:969/98%",
["Monsterchen"] = "CB:27/0%EM:725/79%",
["Becker"] = "RB:481/66%RM:560/61%",
["Magtar"] = "EB:685/87%LM:942/96%",
["Eleah"] = "LT:476/95%EB:661/90%LM:911/96%",
["Bafur"] = "EM:765/80%",
["Hendorina"] = "RB:496/69%EM:768/84%",
["Miracutrix"] = "CB:172/20%EM:731/80%",
["Parziwal"] = "CB:175/20%RM:338/59%",
["Watchmefear"] = "LB:769/96%LM:965/97%",
["Byanu"] = "EB:536/83%EM:767/90%",
["Sonymen"] = "EB:687/87%EM:927/94%",
["Mephic"] = "EB:543/75%RM:639/71%",
["Lmo"] = "EB:512/75%EM:837/87%",
["Digitalboy"] = "CM:188/18%",
["Rotona"] = "EB:712/91%EM:781/83%",
["Elmenta"] = "UB:285/38%RM:649/72%",
["Chill"] = "UM:443/48%",
["Suqz"] = "SB:802/99%EM:920/94%",
["Malusumbra"] = "CM:217/22%",
["Naia"] = "CB:144/18%RM:614/63%",
["Rocktal"] = "EM:782/82%",
["Effrayer"] = "RM:672/70%",
["Karrster"] = "CM:124/11%",
["Shaow"] = "EM:748/78%",
["Antheus"] = "CB:39/3%UM:365/37%",
["Miýuki"] = "EB:553/77%EM:744/81%",
["Healmetender"] = "CB:134/15%RM:651/72%",
["Zên"] = "RB:438/56%EM:723/76%",
["Tchilla"] = "EB:623/85%EM:631/84%",
["Faede"] = "EB:733/92%EM:904/92%",
["Herminé"] = "RM:633/70%",
["Ruveria"] = "RB:420/55%EM:739/80%",
["Fabbo"] = "UB:264/36%RM:578/61%",
["Junamay"] = "RB:518/66%EM:728/77%",
["Ligore"] = "CM:219/22%",
["Sayagata"] = "CB:176/21%UM:380/39%",
["Rayster"] = "EB:574/80%LM:953/97%",
["Jeegah"] = "RB:388/50%UM:431/44%",
["Âssassinate"] = "CB:69/16%UM:109/32%",
["Vahnyo"] = "CB:79/9%",
["Kiwitastic"] = "UB:337/48%",
["Eazyminz"] = "RT:166/60%UB:226/30%RM:196/52%",
["Dekh"] = "CM:123/14%",
["Mantwo"] = "UM:334/35%",
["Xanthus"] = "CB:81/7%CM:191/18%",
["Habibi"] = "EB:603/79%EM:849/89%",
["Belus"] = "CB:64/5%CM:192/18%",
["Telasjan"] = "UB:291/38%UM:247/25%",
["Nesta"] = "CB:79/7%UM:78/38%",
["Stampfix"] = "CB:83/9%UM:276/28%",
["Brummsi"] = "UB:316/39%UM:272/27%",
["Carmo"] = "EB:708/93%EM:848/89%",
["Ní"] = "EB:610/90%LM:860/95%",
["Bahm"] = "UB:297/33%UM:313/31%",
["Thoktar"] = "UB:121/25%UM:226/42%",
["Notnice"] = "CB:63/6%",
["Lollemy"] = "CB:32/2%CM:58/4%",
["Arkesh"] = "UB:392/47%RM:566/60%",
["Râdagast"] = "EB:578/80%RM:493/55%",
["Sateh"] = "UB:297/37%RM:513/53%",
["Tarexx"] = "EB:649/83%EM:773/76%",
["Gorogosh"] = "UM:407/42%",
["Nofie"] = "LB:710/95%EM:884/94%",
["Bekablembo"] = "RB:505/65%RM:564/60%",
["Tanki"] = "CB:146/15%EM:737/86%",
["Casant"] = "EB:714/90%EM:780/81%",
["Rhok"] = "EB:607/79%UM:431/44%",
["Healsteal"] = "RB:398/54%RM:629/69%",
["Painrouge"] = "EB:720/90%EM:832/86%",
["Tecsumo"] = "EB:620/89%EM:740/88%",
["Rixu"] = "EB:698/94%EM:842/90%",
["Hamptydampty"] = "EB:674/90%EM:839/89%",
["Wattie"] = "UM:267/27%",
["Durb"] = "RB:463/58%RM:569/61%",
["Yabbo"] = "RB:451/62%RM:608/67%",
["Fledermaus"] = "UB:221/26%UM:455/48%",
["Froggy"] = "EB:594/82%EM:836/90%",
["Hanunik"] = "RB:523/66%EM:713/76%",
["Scorba"] = "CM:180/18%",
["Pyronit"] = "RM:216/55%",
["Karimba"] = "RM:659/70%",
["Highlife"] = "UB:283/37%EM:669/80%",
["Maijro"] = "CB:66/7%RM:235/53%",
["Zulraya"] = "UB:223/28%RM:658/72%",
["Morddeus"] = "UM:318/32%",
["Addon"] = "CB:176/22%UM:251/25%",
["Manzana"] = "RM:500/52%",
["Traps"] = "RB:538/71%EM:810/84%",
["Apophisa"] = "UB:367/46%RM:588/63%",
["Fodsy"] = "EB:465/79%EM:770/89%",
["Dontworry"] = "RB:451/56%EM:803/84%",
["Prométheus"] = "UB:283/36%RM:516/56%",
["Humpen"] = "CB:120/14%RM:487/51%",
["Padlien"] = "EB:617/78%EM:850/88%",
["Tourney"] = "RB:508/66%EM:795/83%",
["Mandalorien"] = "UB:235/29%UM:379/38%",
["Gusaypowa"] = "RB:462/58%EM:756/80%",
["Spechti"] = "RB:443/59%EM:702/76%",
["Mendrac"] = "RM:620/68%",
["Smanthá"] = "CB:171/21%RM:583/60%",
["Wrathex"] = "RM:540/57%",
["Killings"] = "CB:199/24%RM:462/50%",
["Trollegah"] = "UB:210/26%UM:398/40%",
["Dévìne"] = "CB:149/18%UM:453/48%",
["Feuerboy"] = "EB:627/82%EM:714/77%",
["Zemsta"] = "UT:362/48%RB:473/62%RM:686/71%",
["Krypther"] = "EM:827/86%",
["Skizzik"] = "RB:377/51%EM:844/89%",
["Exospide"] = "CB:136/16%RM:561/62%",
["Dargoth"] = "UB:294/36%CM:209/21%",
["Ludmila"] = "UB:394/49%EM:737/77%",
["Hurzelchen"] = "CB:42/4%UM:295/30%",
["Obo"] = "EB:721/91%EM:875/89%",
["Chromy"] = "EB:704/90%EM:898/93%",
["Xertor"] = "UM:316/32%",
["Ahrii"] = "EB:588/78%EM:697/76%",
["Pattafeufeu"] = "RM:326/58%",
["Willoway"] = "EB:654/88%EM:797/85%",
["Azopazo"] = "EB:741/93%EM:846/87%",
["Balkano"] = "RB:558/73%EM:786/82%",
["Hixxl"] = "UB:314/40%UM:355/36%",
["Calzoné"] = "RB:515/68%EM:770/81%",
["Fortezza"] = "UB:140/28%RM:340/56%",
["Noisycricket"] = "RM:416/64%",
["Gnomotronic"] = "UM:267/27%",
["Glimmerblink"] = "RB:428/56%RM:560/62%",
["Nyxìa"] = "UM:321/33%",
["Léxus"] = "EB:699/93%LM:929/96%",
["Marlas"] = "UB:286/37%RM:614/68%",
["Ranaldo"] = "RM:545/60%",
["Zukyzu"] = "RB:393/53%UM:419/45%",
["Ibimskuh"] = "CT:54/18%UB:115/46%RM:632/70%",
["Unbutten"] = "RM:561/60%",
["Cornerflakes"] = "UM:276/28%",
["Charli"] = "UM:328/33%",
["Bubblezlol"] = "EB:553/76%LM:951/97%",
["Alchherbbank"] = "CM:173/16%",
["Strânge"] = "RM:545/61%",
["Ragnaroek"] = "EB:702/89%EM:743/77%",
["Túpac"] = "RM:384/68%",
["Uthizzar"] = "RB:418/55%RM:546/60%",
["Sairex"] = "CB:157/19%RM:677/70%",
["Subszero"] = "CB:29/1%CM:175/17%",
["Tayz"] = "ET:661/85%LB:760/95%SM:1007/99%",
["Frshprncfblr"] = "UB:218/27%EM:840/88%",
["Dailol"] = "CB:81/8%RM:603/67%",
["Thermoshot"] = "UM:343/34%",
["Whitain"] = "EB:565/78%RM:608/68%",
["Bisligur"] = "RB:389/50%RM:499/52%",
["Nâná"] = "EB:617/78%EM:830/86%",
["Doublehit"] = "RB:505/65%EM:732/77%",
["Geriva"] = "CM:226/23%",
["Rupnip"] = "UM:410/43%",
["Imbalimba"] = "RB:384/52%EM:711/78%",
["Vècón"] = "EB:681/87%EM:872/89%",
["Triggaah"] = "CB:180/22%RM:570/63%",
["Stampete"] = "RB:496/63%EM:779/82%",
["Kwøn"] = "UB:380/47%RM:543/58%",
["Evilvenom"] = "UB:362/45%RM:507/54%",
["Battletanker"] = "RB:410/50%RM:622/66%",
["Dudu"] = "RM:618/69%",
["Tharmos"] = "RM:525/56%",
["Faner"] = "UB:241/30%RM:548/58%",
["Naturgesetz"] = "EM:603/81%",
["Kayoz"] = "RM:540/59%",
["Orgîe"] = "EB:602/83%EM:768/84%",
["Sýn"] = "RB:313/60%EM:590/77%",
["Garrok"] = "RB:393/61%EM:598/78%",
["Osrun"] = "RB:489/68%EM:722/79%",
["Tekniker"] = "UB:377/48%EM:754/79%",
["Zioon"] = "UB:244/31%UM:375/39%",
["Waster"] = "RB:391/50%RM:691/73%",
["Cerx"] = "CB:47/4%UM:329/34%",
["Dranea"] = "UM:378/40%",
["Kajoshiin"] = "UB:326/41%EM:811/84%",
["Cerox"] = "RB:440/58%RM:654/72%",
["Ryujin"] = "RM:460/50%",
["Bullêt"] = "UM:385/40%",
["Schmerzlos"] = "UM:286/29%",
["Dompf"] = "EB:719/92%EM:924/93%",
["Cenaron"] = "EM:861/87%",
["Honeypot"] = "CB:142/17%UM:398/43%",
["Bürstenjoe"] = "EM:628/83%",
["Sollvex"] = "CB:35/2%RM:524/58%",
["Lagatar"] = "RB:468/60%EM:847/87%",
["Gibokleezz"] = "EB:699/90%EM:875/91%",
["Alizon"] = "LB:767/96%EM:922/94%",
["Magyo"] = "UM:410/44%",
["Dyuuna"] = "LB:773/97%LM:957/97%",
["Lakros"] = "UB:383/49%RM:654/68%",
["Coka"] = "UM:323/32%",
["Platzner"] = "RB:469/62%EM:765/80%",
["Wuji"] = "UM:358/38%",
["Sîxsîxsîx"] = "UB:334/42%RM:619/64%",
["Nekromongo"] = "CM:29/1%",
["Raci"] = "RT:156/59%RB:273/68%EM:506/85%",
["Dijng"] = "UM:446/48%",
["Pfaffeaffe"] = "CB:164/19%RM:478/52%",
["Zsanuel"] = "UB:254/32%",
["Mexn"] = "CB:105/12%UM:260/26%",
["Rasanzzon"] = "UM:125/25%",
["Brüller"] = "UM:412/43%",
["Aratea"] = "CM:71/6%",
["Noodlemaster"] = "RB:392/74%UM:105/42%",
["Gutripper"] = "CB:2/2%UM:263/46%",
["Lìss"] = "UM:334/34%",
["Marleandre"] = "UM:393/42%",
["Lovelyday"] = "UM:296/34%",
["Heilerkuh"] = "RM:618/69%",
["Justpriest"] = "UM:369/39%",
["Desala"] = "RM:401/63%",
["Colleks"] = "EB:571/81%EM:798/90%",
["Futzemann"] = "RM:537/57%",
["Nekyia"] = "CM:32/2%",
["Szenjin"] = "CM:76/9%",
["Feilong"] = "EB:645/87%EM:728/86%",
["Nathanel"] = "RB:437/57%UM:354/35%",
["Marukal"] = "EB:529/79%EM:766/86%",
["Toriem"] = "EB:628/81%EM:756/79%",
["Dracar"] = "RB:341/55%RM:419/64%",
["Tapaler"] = "EB:461/78%EM:577/80%",
["Eislutscher"] = "RB:481/64%EM:819/87%",
["Raziel"] = "RB:450/57%EM:780/81%",
["Stormstriké"] = "EM:653/78%",
["Soschka"] = "RM:349/63%",
["Dragedog"] = "RM:489/52%",
["Ahpex"] = "UM:443/48%",
["Hotlikeice"] = "RM:654/70%",
["Chilililly"] = "LB:759/96%EM:857/90%",
["Smü"] = "RM:607/68%",
["Miesebriese"] = "RB:430/56%RM:680/72%",
["Thralf"] = "CM:56/7%",
["Sêrina"] = "EM:758/80%",
["Graboss"] = "EB:627/81%RM:698/74%",
["Cronîxx"] = "CM:25/0%",
["Movement"] = "RB:569/72%EM:782/82%",
["Sheepuhard"] = "UM:270/27%",
["Grellskin"] = "RB:458/63%EM:703/77%",
["Corde"] = "EB:614/80%EM:811/84%",
["Chikita"] = "RB:464/59%RM:573/61%",
["Shinnay"] = "RB:453/62%RM:594/65%",
["Trioks"] = "EB:739/94%EM:798/85%",
["Condorman"] = "RB:519/72%EM:749/82%",
["Kallarina"] = "CB:142/16%CM:216/21%",
["Trollshin"] = "RM:558/59%",
["Xylion"] = "EB:593/82%EM:777/85%",
["Flexxa"] = "RB:212/56%RM:253/57%",
["Mozrog"] = "RB:521/72%EM:785/84%",
["Shael"] = "CM:9/10%",
["Agilea"] = "RB:517/66%EM:760/80%",
["Alorya"] = "RB:450/62%RM:513/56%",
["Zyji"] = "UB:293/38%RM:609/68%",
["Osme"] = "UM:231/43%",
["Beefledger"] = "LB:726/96%EM:838/94%",
["Felhorn"] = "RM:374/59%",
["Mallowburn"] = "EB:595/77%EM:773/80%",
["Oetty"] = "EB:694/93%EM:904/94%",
["Souleatr"] = "CB:105/13%UM:453/46%",
["Chelseatank"] = "RM:473/68%",
["Gragul"] = "UM:203/41%",
["Mordeus"] = "UB:270/35%UM:330/34%",
["Kattnerjoe"] = "CB:50/5%CM:31/1%",
["Ganjjapanda"] = "RM:522/55%",
["Encephalon"] = "CB:105/12%RM:688/73%",
["Féarsbrosnan"] = "RM:686/71%",
["Yóndu"] = "RM:628/67%",
["Airbornemuga"] = "UB:327/44%RM:629/70%",
["Layynee"] = "UM:315/32%",
["Gnorke"] = "UB:214/26%EM:864/91%",
["Ysaac"] = "RM:524/73%",
["Ryúu"] = "UB:344/44%EM:860/88%",
["Layane"] = "CB:52/5%CM:173/16%",
["Sejii"] = "EB:720/91%EM:890/91%",
["Gondar"] = "RB:462/59%EM:868/89%",
["Ranok"] = "RM:620/56%",
["Tzane"] = "RM:539/70%",
["Bastion"] = "RB:347/56%EM:564/76%",
["Akwa"] = "EB:543/75%EM:786/85%",
["Gedii"] = "UB:213/26%RM:635/70%",
["Prollgerina"] = "UB:290/32%CM:195/20%",
["Wansi"] = "UM:352/36%",
["Amodi"] = "SB:856/99%SM:1008/99%",
["Glorix"] = "RM:640/71%",
["Ww"] = "RB:525/69%EM:830/86%",
["Gemmagemma"] = "EB:667/91%EM:812/88%",
["Deontay"] = "UM:336/33%",
["Cruzi"] = "RB:557/73%EM:718/75%",
["Grabakh"] = "EB:713/91%EM:910/94%",
["Delícious"] = "UB:362/45%UM:311/32%",
["Vegancow"] = "CB:173/20%RM:272/60%",
["Littlemadame"] = "CB:198/24%CM:54/4%",
["Cornu"] = "UB:280/48%RM:483/69%",
["Rasanzz"] = "RB:423/58%UM:405/43%",
["Kotzbrocken"] = "CB:54/5%",
["Drlieni"] = "RB:533/70%RM:664/71%",
["Shinogi"] = "CB:185/22%UM:409/43%",
["Spritzfurz"] = "UB:115/31%UM:222/27%",
["Dreijtjuscha"] = "CM:59/5%",
["Joda"] = "EB:382/81%RM:640/74%",
["Draalnu"] = "UB:303/41%UM:269/27%",
["Shestok"] = "CM:6/8%",
["Unbalanced"] = "UM:425/46%",
["Juvi"] = "RB:489/64%RM:512/52%",
["Ogy"] = "EB:633/86%UM:441/48%",
["Schickeria"] = "UB:373/48%RM:650/69%",
["Kimbalance"] = "LB:755/95%EM:858/88%",
["Zunaba"] = "EB:564/85%EM:611/80%",
["Ipman"] = "EB:707/90%EM:745/77%",
["Jolira"] = "CB:195/24%EM:801/86%",
["Hathri"] = "RB:500/64%RM:479/51%",
["Iolwoot"] = "UM:455/42%",
["Smackzz"] = "RM:507/53%",
["Squîre"] = "EB:577/76%UM:448/49%",
["Aranschia"] = "EB:682/87%EM:787/82%",
["Shootyadown"] = "UB:350/45%UM:408/42%",
["Eldryon"] = "EB:684/93%EM:797/87%",
["Natzume"] = "EB:737/93%EM:825/85%",
["Paradon"] = "CM:112/9%",
["Kja"] = "EB:718/91%EM:835/86%",
["Lightfeet"] = "EB:568/79%RM:623/69%",
["Beauty"] = "EB:568/79%EM:783/85%",
["Lillia"] = "RM:476/69%",
["Knödelboy"] = "EB:676/90%LM:945/97%",
["Koraa"] = "LB:731/95%EM:903/93%",
["Aufjedsten"] = "UM:465/48%",
["Scarpi"] = "RB:530/69%RM:683/71%",
["Zikani"] = "RM:495/54%",
["Sylvanâ"] = "CM:61/5%",
["Trtak"] = "CM:46/4%",
["Seraia"] = "RT:471/64%RB:529/67%EM:848/88%",
["Nielpferd"] = "UT:204/27%EB:418/76%EM:799/86%",
["Valyne"] = "RB:479/71%EM:759/80%",
["Brummli"] = "RB:417/54%EM:721/76%",
["Lorainê"] = "LB:736/97%LM:975/98%",
["Guffeltuff"] = "RM:665/73%",
["Savinu"] = "CM:83/6%",
["Haxlwaxl"] = "CB:42/4%RM:590/63%",
["Waldén"] = "EB:664/93%EM:830/94%",
["Zypres"] = "RB:512/66%EM:855/88%",
["Leosasmo"] = "EB:635/80%LM:933/95%",
["Autoshoot"] = "UM:315/31%",
["Sharpiro"] = "CM:114/11%",
["Lîla"] = "UM:388/42%",
["Abraxaz"] = "EB:615/81%EM:822/87%",
["Tanysha"] = "RB:516/71%RM:657/72%",
["Shurtàl"] = "EB:606/84%EM:880/93%",
["Gnomefurry"] = "UB:247/26%RM:546/58%",
["Nyala"] = "RM:563/60%",
["Suza"] = "LB:753/97%EM:852/90%",
["Swoledemort"] = "EM:629/80%",
["Nanawa"] = "LB:756/95%EM:924/94%",
["Volo"] = "RM:476/52%",
["Gedärmezupfa"] = "RM:489/52%",
["Heartattack"] = "CM:29/1%",
["Dirok"] = "UM:400/41%",
["Sanchez"] = "UM:135/34%",
["Bmo"] = "UM:387/41%",
["Phyton"] = "EB:725/92%EM:892/92%",
["Symphony"] = "EB:725/91%EM:864/88%",
["Amenra"] = "EB:637/88%EM:816/88%",
["Harrisonhord"] = "RM:542/56%",
["Davmito"] = "RB:501/67%EM:758/82%",
["Kanyewestfal"] = "UB:376/49%RM:577/63%",
["Scari"] = "RB:398/51%RM:641/66%",
["Azorah"] = "EB:677/92%LM:946/97%",
["Holymaster"] = "CT:154/17%RB:456/65%EM:768/84%",
["Rolloh"] = "RM:531/56%",
["Oprahwinfrey"] = "RM:489/51%",
["Aremi"] = "CM:119/11%",
["Jenjiyana"] = "UB:223/27%EM:717/76%",
["Tyrio"] = "EB:723/91%EM:898/92%",
["Zergus"] = "EB:731/92%EM:874/90%",
["Hässlor"] = "EB:666/90%EM:757/86%",
["Kisin"] = "RB:517/68%RM:672/70%",
["Brunobär"] = "EB:638/90%EM:799/91%",
["Wipen"] = "EB:572/82%RM:453/63%",
["Xranyo"] = "EB:652/85%EM:804/85%",
["Schnupfen"] = "CM:84/8%",
["Shiraiyuki"] = "CB:126/15%CM:198/19%",
["Kohhorte"] = "EB:621/87%EM:718/83%",
["Tingolf"] = "CB:26/0%UM:306/30%",
["Aritan"] = "UB:259/33%RM:596/66%",
["Nichtsyrius"] = "RB:505/66%RM:579/60%",
["Apfelmuslady"] = "CM:61/5%",
["Rattnpack"] = "RB:418/53%EM:712/75%",
["Bonebee"] = "RB:553/70%RM:491/52%",
["Xaim"] = "LB:756/95%EM:781/82%",
["Peterklopper"] = "RB:490/62%RM:536/57%",
["Memmphis"] = "CM:209/20%",
["Bully"] = "EB:664/93%LM:968/98%",
["Pawn"] = "CM:197/18%",
["Nahéniel"] = "UM:273/28%",
["Brudicarrell"] = "UM:427/46%",
["Farmgodx"] = "EB:632/83%EM:861/90%",
["Zhani"] = "CB:170/20%RM:568/61%",
["Yune"] = "RB:407/63%RM:402/62%",
["Jaymoo"] = "EB:604/79%EM:837/86%",
["Powlinchen"] = "RB:274/54%EM:734/86%",
["Vodkaenergy"] = "CM:101/12%",
["Furies"] = "EB:673/90%EM:847/94%",
["Eisenmaid"] = "UB:321/39%RM:419/70%",
["Evoceed"] = "EB:670/86%RM:735/72%",
["Perios"] = "CM:7/8%",
["Kinker"] = "RM:569/60%",
["Coolsen"] = "UM:432/45%",
["Taleana"] = "EB:698/88%EM:752/79%",
["Kuhnimuuhn"] = "EB:657/89%LM:930/96%",
["Rindeastwòód"] = "EB:580/80%EM:844/88%",
["Musoko"] = "EB:598/82%EM:869/91%",
["Nixxey"] = "EB:685/92%EM:872/94%",
["Seekheal"] = "UM:431/46%",
["Ragnarosha"] = "UB:284/37%EM:741/81%",
["Rhodancassy"] = "RB:279/57%RM:488/70%",
["Coccklock"] = "RB:435/59%RM:642/67%",
["Locokurwa"] = "CM:179/17%",
["Testament"] = "UM:289/29%",
["Bêrt"] = "EM:802/86%",
["Dreckhecke"] = "CM:119/11%",
["Morsel"] = "RM:591/66%",
["Bullweith"] = "UB:294/33%EM:647/81%",
["Karllie"] = "CM:186/18%",
["Nathanian"] = "RB:494/63%RM:583/62%",
["Shítonu"] = "EB:689/92%RM:614/68%",
["Scorpok"] = "CM:34/2%",
["Talear"] = "RB:516/72%EM:707/78%",
["Druidicaa"] = "UM:118/45%",
["Susto"] = "CM:202/19%",
["Hêrôfant"] = "CM:26/0%",
["Electric"] = "CB:93/9%RM:650/72%",
["Arthosh"] = "CT:5/7%UB:264/29%UM:323/32%",
["Ferdii"] = "EM:768/88%",
["Mageyaya"] = "RM:556/60%",
["Shotgunmaus"] = "UM:437/45%",
["Hazeblaze"] = "CB:86/8%RM:529/58%",
["Qtk"] = "RM:626/67%",
["Boidl"] = "EB:653/84%EM:838/86%",
["Gtø"] = "RM:527/56%",
["Benawi"] = "EB:564/86%SM:969/99%",
["Lôrdôfpaîn"] = "UB:392/49%EM:835/86%",
["Agama"] = "SB:791/99%SM:1046/99%",
["Berco"] = "CM:228/21%",
["Notevenclose"] = "EM:722/85%",
["Slavemaster"] = "EB:675/86%EM:926/94%",
["Hesoke"] = "EM:694/76%",
["Donodor"] = "RM:407/59%",
["Jaymazing"] = "EB:537/77%EM:744/87%",
["Miio"] = "UB:364/46%RM:553/57%",
["Tirishi"] = "CB:25/0%UM:331/34%",
["Dimmuborgir"] = "EB:708/93%EM:868/91%",
["Orchunt"] = "CM:105/9%",
["Cinoo"] = "CM:235/24%",
["Drera"] = "CM:180/19%",
["Slotty"] = "RB:433/53%EM:745/79%",
["Gropius"] = "CB:73/8%CM:98/10%",
["Aamira"] = "EB:684/87%EM:848/88%",
["Maaya"] = "EB:736/93%LM:952/96%",
["Klempsen"] = "RB:473/63%",
["Doranor"] = "UB:363/46%RM:626/65%",
["Roggark"] = "UM:220/41%",
["Zbory"] = "UB:365/43%RM:586/63%",
["Zenpai"] = "CB:204/24%EM:729/77%",
["Kanalbetrieb"] = "CB:126/15%UM:413/42%",
["Shyrina"] = "RB:257/55%RM:538/74%",
["Herrenklo"] = "RB:468/65%EM:734/80%",
["Zj"] = "EB:603/79%EM:803/83%",
["Zancrow"] = "EB:622/81%EM:835/86%",
["Shaola"] = "CB:160/20%RM:677/70%",
["Laflare"] = "UB:335/45%RM:655/72%",
["Schockfrost"] = "UM:263/27%",
["Kinderheld"] = "CM:107/8%",
["Hotbutton"] = "RB:373/73%EM:667/86%",
["Arkangel"] = "UM:394/42%",
["Phillyg"] = "CM:228/23%",
["Raako"] = "EM:710/75%",
["Deathbringar"] = "RB:485/62%RM:634/68%",
["Zunder"] = "UB:211/26%EM:572/77%",
["Shaopan"] = "CM:165/16%",
["Kufe"] = "EB:588/75%RM:621/66%",
["Gnuzieh"] = "UB:204/42%EM:689/87%",
["Gothgf"] = "EB:578/87%EM:569/78%",
["Sitiveni"] = "RM:503/53%",
["Rüdigger"] = "UM:419/43%",
["Ganok"] = "RM:502/55%",
["Muhrri"] = "EB:629/80%EM:788/82%",
["Mechatig"] = "RB:198/50%UM:353/37%",
["Exakt"] = "EM:769/81%",
["Coldminded"] = "RB:545/71%RM:617/64%",
["Muhx"] = "EM:664/84%",
["Kzarka"] = "RM:170/51%",
["Damaru"] = "CB:153/18%RM:631/70%",
["Whiishoo"] = "RM:600/66%",
["Xadun"] = "LB:773/97%LM:971/98%",
["Sativà"] = "RB:376/66%RM:496/71%",
["Hexentrude"] = "CM:102/10%",
["Thomage"] = "EB:597/79%RM:552/61%",
["Snabbacash"] = "RM:651/71%",
["Schelleningo"] = "UB:360/46%EM:738/78%",
["Hrozz"] = "EB:625/86%EM:790/89%",
["Rédbull"] = "EB:651/88%EM:850/90%",
["Sorban"] = "RB:444/55%EM:718/76%",
["Lupercaal"] = "EB:728/92%EM:800/83%",
["Beldaran"] = "EB:690/89%EM:728/79%",
["Meleys"] = "RB:537/70%CM:217/22%",
["Chargymcbstn"] = "RB:343/55%EM:583/77%",
["Wettertroll"] = "UM:73/28%",
["Losmuertos"] = "CM:251/24%",
["Traubeminze"] = "RB:413/54%EM:718/78%",
["Junara"] = "RB:479/66%EM:835/89%",
["Minzpriese"] = "EM:637/82%",
["Emmamae"] = "EB:635/82%UM:267/27%",
["Harramasch"] = "RB:461/62%RM:679/64%",
["Satyrícon"] = "CM:221/21%",
["Kaba"] = "CB:105/11%LM:974/98%",
["Fiksy"] = "UM:342/34%",
["Meduse"] = "CB:212/22%UM:387/39%",
["Winzigweich"] = "CM:192/19%",
["Brokenarrow"] = "EB:612/80%UM:398/40%",
["Zukujomi"] = "CB:26/0%CM:174/17%",
["Cip"] = "RB:506/66%EM:851/88%",
["Mafih"] = "UB:274/34%RM:487/51%",
["Gorngrim"] = "EB:725/91%LM:994/98%",
["Krâll"] = "RB:488/62%EM:706/75%",
["Rakarun"] = "EB:584/75%RM:669/71%",
["Affliction"] = "EB:703/89%RM:547/56%",
["Arula"] = "UM:271/27%",
["Fantastiico"] = "CM:64/8%",
["Trendtberry"] = "CT:66/7%UB:248/30%UM:455/48%",
["Frostica"] = "CM:127/11%",
["Kron"] = "RB:488/65%RM:676/74%",
["Najah"] = "UB:209/26%CM:172/16%",
["Alabaer"] = "EB:636/83%EM:778/83%",
["Divika"] = "UB:237/29%RM:568/60%",
["Baalol"] = "EB:579/80%EM:684/76%",
["Gadir"] = "RB:449/62%RM:493/55%",
["Pämbäm"] = "RB:456/60%EM:798/85%",
["Thargun"] = "EB:683/87%EM:781/81%",
["Shary"] = "EB:748/94%EM:909/93%",
["Dargo"] = "UB:238/30%EM:715/78%",
["Mespada"] = "UB:359/45%RM:650/69%",
["Orbabi"] = "RM:629/67%",
["Jetblast"] = "RM:486/54%",
["Kloqu"] = "RM:559/60%",
["Fzick"] = "RM:650/69%",
["Urgoz"] = "EM:733/77%",
["Calivoi"] = "EB:660/85%EM:818/85%",
["Krogah"] = "UM:417/43%",
["Àpexs"] = "UM:321/33%",
["Vescu"] = "RM:356/68%",
["Vamoz"] = "EB:609/84%RM:565/63%",
["Xeek"] = "SB:782/99%SM:1041/99%",
["Selenex"] = "EB:731/92%LM:965/97%",
["Nachtkatze"] = "EB:607/84%EM:803/87%",
["Golagg"] = "RB:436/60%LM:972/98%",
["Xîîstealth"] = "EB:744/93%LM:936/95%",
["Gnollop"] = "UM:292/30%",
["Zelectra"] = "UM:400/43%",
["Morolock"] = "RB:531/69%EM:903/93%",
["Aradi"] = "CB:145/15%UM:460/48%",
["Sensenman"] = "RB:528/68%EM:766/80%",
["Thraex"] = "EB:693/92%LM:935/96%",
["Moroez"] = "RB:481/62%EM:777/81%",
["Sauvignon"] = "RB:480/63%EM:842/87%",
["Moody"] = "CB:84/9%CM:171/16%",
["Gaza"] = "EB:631/87%LM:912/96%",
["Brontu"] = "UB:274/30%CM:184/19%",
["Madprof"] = "CM:186/18%",
["Hathéy"] = "UM:441/48%",
["Psychedelic"] = "RB:398/52%EM:784/84%",
["Linksanwalt"] = "CB:34/3%UM:413/42%",
["Rybi"] = "UB:270/34%RM:488/53%",
["Sapoh"] = "RB:261/62%EM:786/85%",
["Swarmex"] = "EB:608/77%EM:851/87%",
["Ðjyn"] = "CM:46/6%",
["Tangotarzan"] = "UM:211/25%",
["Gnölb"] = "RM:569/63%",
["Nuniel"] = "EB:714/90%LM:929/95%",
["Ronjena"] = "RB:446/60%CM:59/5%",
["Leriana"] = "LB:765/96%LM:955/97%",
["Lanapopana"] = "CB:136/17%RM:658/68%",
["Zorkan"] = "UM:361/36%",
["Napra"] = "CB:72/8%RM:670/73%",
["Euphemya"] = "EB:608/79%EM:806/84%",
["Siliasqt"] = "UB:342/45%RM:656/72%",
["Odingorgon"] = "LB:767/96%LM:940/96%",
["Mayday"] = "LB:754/95%EM:900/92%",
["Zerky"] = "EB:746/94%LM:943/95%",
["Danziger"] = "UB:373/44%RM:550/59%",
["Xorva"] = "EB:643/81%RM:700/74%",
["Cheekbuster"] = "RB:518/68%EM:774/80%",
["Lyndi"] = "RB:426/55%EM:774/80%",
["Talinia"] = "EB:668/87%EM:773/83%",
["Zarruk"] = "EB:700/88%EM:888/91%",
["Yukî"] = "EB:682/88%EM:838/88%",
["Barrosch"] = "EB:746/94%EM:915/93%",
["Attila"] = "LB:727/96%EM:849/90%",
["Rka"] = "EM:698/77%",
["Botfather"] = "RB:510/70%EM:727/79%",
["Cesi"] = "CM:235/24%",
["Spooner"] = "CM:146/13%",
["Rogyo"] = "EB:702/88%EM:921/93%",
["Mardeg"] = "LB:725/95%EM:846/89%",
["Xoa"] = "EB:636/81%RM:703/74%",
["Andruin"] = "UB:244/31%RM:596/66%",
["Wipwap"] = "UM:426/46%",
["Aiutide"] = "EB:424/84%EM:666/76%",
["Nitrogen"] = "EB:611/80%EM:711/77%",
["Fii"] = "EM:764/83%",
["Normalor"] = "CM:135/15%",
["Sahgosh"] = "EB:589/77%EM:800/83%",
["Wulfchant"] = "CM:27/0%",
["Hacklberg"] = "UM:312/31%",
["Alvinia"] = "CM:227/23%",
["Mostfrage"] = "RB:527/70%EM:827/87%",
["Bätzen"] = "CM:152/15%",
["Hearo"] = "CM:170/15%",
["Klabaudamann"] = "UM:247/25%",
["Vadra"] = "CB:32/2%CM:232/23%",
["Charmander"] = "RM:480/50%",
["Tkaine"] = "CM:76/6%",
["Dârkanima"] = "EB:597/83%EM:888/94%",
["Sheqer"] = "CM:88/9%",
["Bauapaua"] = "UM:343/35%",
["Dregosh"] = "CM:162/16%",
["Guzu"] = "UM:321/33%",
["Expect"] = "RM:584/64%",
["Shalamea"] = "EB:728/91%LM:934/95%",
["Yvo"] = "LB:734/97%LM:960/98%",
["Koronia"] = "UM:433/47%",
["Ugul"] = "UM:312/31%",
["Shocks"] = "EB:671/90%LM:935/96%",
["Alukah"] = "RB:464/59%RM:599/64%",
["Priestpower"] = "EB:593/82%RM:465/51%",
["Bomedu"] = "RB:456/63%RM:615/68%",
["Drofa"] = "CB:190/23%RM:509/53%",
["Babydaddy"] = "CB:108/12%UM:378/38%",
["Leanija"] = "EB:688/88%EM:876/90%",
["Abti"] = "RB:540/72%EM:749/81%",
["Mailie"] = "UB:330/41%RM:652/69%",
["Kazuk"] = "UB:288/36%EM:781/82%",
["Remos"] = "EB:593/82%EM:876/92%",
["Twiks"] = "EB:622/79%LM:930/95%",
["Shortì"] = "EB:743/94%SM:1025/99%",
["Papaschatten"] = "RM:472/50%",
["Kazzuk"] = "RB:379/52%EM:748/81%",
["Drekthár"] = "CB:36/2%UM:402/43%",
["Ayue"] = "UM:393/40%",
["Gazefstronof"] = "RB:424/55%RM:633/67%",
["Vulcany"] = "CB:136/16%RM:556/60%",
["Khalidda"] = "EB:738/93%EM:833/86%",
["Jalinor"] = "EB:706/90%EM:839/87%",
["Zantho"] = "EB:635/82%EM:876/90%",
["Kerda"] = "RB:514/66%EM:773/81%",
["Mashs"] = "UM:340/36%",
["Gaskarth"] = "CB:96/9%RM:535/59%",
["Druxx"] = "RB:436/70%EM:784/88%",
["Daphnix"] = "UB:103/25%RM:479/52%",
["Elsy"] = "UM:347/36%",
["Lubrika"] = "RT:211/68%EB:601/78%EM:552/85%",
["Ohnebutter"] = "EB:609/80%EM:916/93%",
["Qws"] = "RB:258/55%RM:360/62%",
["Worldwar"] = "UM:322/33%",
["Gridr"] = "CM:69/5%",
["Kamalama"] = "CM:158/15%",
["Schorschl"] = "EB:494/77%EM:674/82%",
["Systec"] = "EB:641/81%EM:768/80%",
["Icetomeetu"] = "EB:596/79%RM:679/74%",
["Teufelslady"] = "UB:250/31%UM:365/39%",
["Aceita"] = "CB:54/5%UM:441/48%",
["Smisi"] = "RB:435/57%RM:456/50%",
["Sentenz"] = "UB:365/43%UM:339/34%",
["Ramada"] = "CM:233/22%",
["Hackl"] = "RB:472/60%RM:498/53%",
["Donzen"] = "UB:315/40%CM:80/7%",
["Slift"] = "EB:674/87%LM:942/96%",
["Darodian"] = "EB:703/93%EM:778/84%",
["Slatflappy"] = "RB:584/74%EM:808/84%",
["Lightknight"] = "RB:288/64%EM:721/85%",
["Nemaja"] = "EM:825/88%",
["Asgarr"] = "UM:389/39%",
["Huntolas"] = "RB:521/69%RM:651/69%",
["Mallet"] = "RM:485/53%",
["Yelas"] = "UB:282/36%RM:540/59%",
["Kaotik"] = "EB:684/92%EM:848/90%",
["Mcbonz"] = "UB:258/28%UM:468/49%",
["Myiol"] = "RB:493/64%EM:720/75%",
["Draah"] = "CB:32/2%CM:25/0%",
["Zweschge"] = "RB:500/66%EM:789/82%",
["Sächsmachine"] = "CB:62/5%UM:382/41%",
["Quoth"] = "RB:469/65%EM:815/87%",
["Nasenkaffeé"] = "RM:592/66%",
["Hotmebaby"] = "UB:213/26%RM:580/65%",
["Nightshifts"] = "CB:106/12%CM:227/23%",
["Usa"] = "CM:192/18%",
["Rotom"] = "UB:343/46%RM:607/67%",
["Doomsdây"] = "UB:241/30%RM:525/58%",
["Knugs"] = "RM:509/71%",
["Rhasik"] = "RB:445/57%RM:694/73%",
["Ammeral"] = "EB:667/90%EM:781/84%",
["Chicko"] = "CB:187/23%UM:346/36%",
["Donotwant"] = "RB:584/74%EM:886/91%",
["Zultrok"] = "EM:837/83%",
["Malbeth"] = "EB:691/89%EM:901/93%",
["Kimizia"] = "CM:103/10%",
["Mcconnel"] = "RT:256/70%EB:403/82%RM:444/67%",
["Rogers"] = "UM:362/37%",
["Nakari"] = "EB:642/83%EM:841/87%",
["Korosh"] = "RB:558/73%RM:697/72%",
["Clownfear"] = "RM:485/70%",
["Ticeis"] = "CM:191/18%",
["Asteron"] = "UB:365/43%UM:368/37%",
["Aratok"] = "EB:626/79%EM:795/83%",
["Kramps"] = "UB:277/30%RM:535/57%",
["Nabále"] = "RM:235/57%",
["Lessi"] = "CB:84/10%EM:827/85%",
["Chabam"] = "UB:252/32%UM:372/39%",
["Madmotion"] = "RB:549/70%RM:571/61%",
["Sanecio"] = "RB:330/54%EM:598/78%",
["Etheniel"] = "EB:614/85%EM:756/83%",
["Neresto"] = "EB:618/90%EM:802/91%",
["Nafis"] = "EB:566/78%EM:752/82%",
["Icewürfel"] = "UM:277/28%",
["Ulfric"] = "EB:633/82%RM:690/67%",
["Duud"] = "UB:351/47%RM:605/67%",
["Vanadin"] = "RB:514/71%EM:728/79%",
["Kvasir"] = "RB:554/72%RM:692/72%",
["Ysa"] = "EB:605/84%RM:630/70%",
["Rivana"] = "RB:531/70%RM:622/66%",
["Deadlyfire"] = "CB:86/10%CM:26/0%",
["Nalah"] = "UB:289/36%UM:412/42%",
["Aikó"] = "CB:130/16%UM:332/33%",
["Fingo"] = "ET:330/92%EB:722/92%EM:872/91%",
["Guralesko"] = "EB:571/79%EM:755/82%",
["Flokitaure"] = "RB:513/71%EM:806/86%",
["Shantira"] = "EB:672/86%EM:813/84%",
["Trib"] = "EB:603/78%RM:651/67%",
["Mengarus"] = "EB:607/80%RM:589/65%",
["Gch"] = "EB:726/92%LM:957/97%",
["Jaxed"] = "RB:525/73%RM:641/70%",
["Mclovìn"] = "UM:187/49%",
["Jinntonic"] = "EB:656/84%EM:718/75%",
["Rackljane"] = "RB:461/58%UM:325/33%",
["Fabi"] = "UB:295/33%CM:149/16%",
["Csnuebi"] = "EB:667/85%EM:733/76%",
["Bronxbomber"] = "RB:484/67%RM:631/70%",
["Steroidcow"] = "RB:424/65%EM:642/81%",
["Scorp"] = "EB:667/84%EM:762/80%",
["Retardomilos"] = "RB:518/66%RM:524/56%",
["Esmiralda"] = "UM:347/36%",
["Saturas"] = "UB:283/37%RM:449/53%",
["Maco"] = "UM:83/25%",
["Bláckpearl"] = "CT:130/17%EB:632/80%UM:372/39%",
["Racklpeter"] = "EB:698/90%LM:949/96%",
["Merâlu"] = "UM:395/42%",
["Weltenesser"] = "RM:307/50%",
["Caino"] = "RB:424/54%RM:557/60%",
["Brancò"] = "EB:448/75%RM:561/72%",
["Gondra"] = "UM:430/46%",
["Detlef"] = "EB:687/86%LM:937/95%",
["Ekaterina"] = "EB:735/93%LM:926/95%",
["Thornus"] = "EB:725/92%EM:917/93%",
["Saphiir"] = "CM:139/13%",
["Kairos"] = "RB:341/60%RM:555/71%",
["Zaevia"] = "CM:211/20%",
["Sahy"] = "CM:88/7%",
["Toffifeenom"] = "CM:155/14%",
["Jordrak"] = "CM:129/11%",
["Cruuz"] = "UB:336/43%RM:731/74%",
["Phoenîx"] = "CB:79/7%RM:614/68%",
["Çlaire"] = "RB:518/67%RM:693/73%",
["Wespasia"] = "UM:279/28%",
["Manî"] = "RM:553/59%",
["Niaki"] = "RB:409/56%RM:508/56%",
["Griesnockerl"] = "CM:163/17%",
["Elaris"] = "CB:115/11%RM:263/63%",
["Liebelein"] = "EB:747/94%EM:851/86%",
["Hîkari"] = "CB:150/18%UM:267/25%",
["Livó"] = "RM:639/68%",
["Owalyn"] = "RB:407/53%EM:778/83%",
["Felixx"] = "RM:325/55%",
["Engrol"] = "EB:687/88%EM:815/85%",
["Endoval"] = "EB:669/84%EM:828/86%",
["Viskovaunzi"] = "EB:698/90%EM:748/81%",
["Eritlux"] = "LB:752/97%LM:954/97%",
["Kapotschlan"] = "RM:571/61%",
["Hâsslîebe"] = "EB:696/88%LM:933/95%",
["Scorxo"] = "UM:236/44%",
["Angosh"] = "EB:529/77%UM:273/49%",
["Yenlo"] = "RM:484/54%",
["Ushug"] = "UM:254/45%",
["Behemathras"] = "CM:32/3%",
["Luminal"] = "UM:378/38%",
["Kêtzêr"] = "EB:551/77%RM:466/51%",
["Schnellweg"] = "UM:281/28%",
["Sothyr"] = "UB:93/35%UM:285/48%",
["Barne"] = "RM:407/63%",
["Daice"] = "UM:435/47%",
["Rommi"] = "UM:286/48%",
["Renki"] = "CM:28/2%",
["Torema"] = "ET:449/79%EB:538/82%EM:654/82%",
["Gnolli"] = "RM:586/60%",
["Mercyi"] = "RM:595/65%",
["Oedimoto"] = "CB:59/5%RM:513/57%",
["Belstaff"] = "CB:28/1%UM:385/39%",
["Basiliskt"] = "RB:475/60%EM:702/75%",
["Zischke"] = "CM:35/3%",
["Fexxz"] = "RB:562/73%RM:715/74%",
["Zakraf"] = "LB:757/97%SM:1003/99%",
["Margoth"] = "EB:590/78%EM:856/90%",
["Matteø"] = "CM:94/9%",
["Muchlove"] = "RB:530/68%EM:854/88%",
["Sentosa"] = "UM:50/41%",
["Noki"] = "UM:261/47%",
["Drib"] = "EB:665/92%EM:804/92%",
["Schurim"] = "RB:515/71%EM:786/84%",
["Lykria"] = "RB:373/50%RM:568/63%",
["Myon"] = "LB:763/96%LM:971/98%",
["Sime"] = "UM:446/48%",
["Makon"] = "LB:712/95%LM:946/97%",
["Magecrankx"] = "RM:502/55%",
["Eltranor"] = "EM:740/88%",
["Theiss"] = "CM:25/0%",
["Son"] = "UB:237/29%RM:522/53%",
["Arandiel"] = "RM:600/64%",
["Jakub"] = "EB:609/78%EM:851/87%",
["Liltug"] = "EB:711/91%EM:885/92%",
["Lilhead"] = "EB:628/82%EM:713/77%",
["Kuhunter"] = "RB:415/54%UM:416/43%",
["Krazara"] = "UB:362/47%RM:589/65%",
["Durai"] = "CB:216/23%RM:557/59%",
["Critric"] = "UM:206/39%",
["Nitemary"] = "CB:34/1%CM:86/6%",
["Eviscera"] = "CB:54/5%RM:549/59%",
["Farmarina"] = "RB:547/73%RM:650/71%",
["Haggys"] = "RM:652/69%",
["Riso"] = "RB:487/67%EM:797/86%",
["Bruzzler"] = "LB:755/95%LM:963/97%",
["Icetomeetyou"] = "RB:559/74%EM:688/75%",
["Narcotnix"] = "EB:646/83%EM:820/85%",
["Schobiwan"] = "RB:487/72%EM:668/83%",
["Kardamöwchen"] = "CB:118/13%CM:111/13%",
["Thedrude"] = "LB:704/95%LM:872/95%",
["Nizo"] = "RM:533/57%",
["Anderesufer"] = "EB:587/75%EM:823/85%",
["Sharazo"] = "CB:121/13%UM:407/43%",
["Kalli"] = "EB:655/89%EM:871/92%",
["Zekka"] = "EB:454/78%EM:707/88%",
["Kelen"] = "RM:669/73%",
["Wichtel"] = "EB:719/91%EM:801/83%",
["Goldenerlöwe"] = "CM:69/9%",
["Gamba"] = "UM:407/44%",
["Arkon"] = "EB:727/92%EM:895/91%",
["Namenslos"] = "UB:353/41%RM:312/53%",
["Vraska"] = "EB:660/91%EM:797/91%",
["Otrova"] = "CB:130/15%UM:250/25%",
["Irdosíl"] = "UM:378/38%",
["Sreyx"] = "CB:170/21%RM:496/54%",
["Lamiya"] = "LB:763/96%LM:950/96%",
["Roudini"] = "EB:647/84%EM:889/92%",
["Attax"] = "EB:660/83%EM:901/92%",
["Gandowar"] = "CM:90/12%",
["Warush"] = "LB:738/96%SM:974/99%",
["Brombeereis"] = "RM:539/58%",
["Cobax"] = "RB:399/66%EM:646/78%",
["Knallbüchse"] = "UB:292/36%EM:482/82%",
["Strive"] = "RM:501/51%",
["Altana"] = "UM:412/44%",
["Kahn"] = "UM:270/27%",
["Bramdal"] = "UB:381/45%RM:694/74%",
["Kaisergott"] = "EB:659/85%EM:862/88%",
["Scootsie"] = "EB:650/84%EM:812/84%",
["Liyana"] = "RM:654/68%",
["Keinengrüßen"] = "RM:319/51%",
["Thool"] = "UB:282/36%RM:379/63%",
["Zargas"] = "UM:430/46%",
["Sombra"] = "EB:626/79%EM:845/87%",
["Quiz"] = "CB:40/4%UM:447/48%",
["Satchmo"] = "CM:25/0%",
["Vaapo"] = "RM:597/64%",
["Goggi"] = "CB:29/2%UM:272/48%",
["Tyrmond"] = "RM:740/69%",
["Jonwars"] = "UB:357/44%RM:646/69%",
["Levius"] = "UM:401/42%",
["Affemitkaffe"] = "CM:129/12%",
["Adan"] = "UB:298/38%UM:383/41%",
["Rezitos"] = "CM:231/23%",
["Sergios"] = "RM:410/65%",
["Athinuvíel"] = "CM:53/3%",
["Talonius"] = "CM:147/15%",
["Grifith"] = "CT:26/8%UM:360/36%",
["Vollhässlich"] = "CM:245/24%",
["Myn"] = "EB:572/83%LM:965/98%",
["Lòótschwamm"] = "EM:725/76%",
["Grocknar"] = "EB:706/90%EM:858/88%",
["Zekiso"] = "UM:365/37%",
["Cinderellá"] = "CM:30/1%",
["Rysja"] = "UB:309/35%RM:488/51%",
["Eiswetter"] = "CM:164/15%",
["Darkor"] = "RM:420/60%",
["Tayzy"] = "CB:27/1%EM:715/76%",
["Tharisa"] = "CM:39/2%",
["Marvorange"] = "EB:675/92%EM:860/94%",
["Portbitch"] = "CM:216/22%",
["Ódîn"] = "CM:131/15%",
["Lillu"] = "CB:124/15%RM:457/50%",
["Moskov"] = "RT:195/56%RB:419/70%EM:696/84%",
["Cipio"] = "UB:264/33%RM:557/59%",
["Gaston"] = "UB:394/47%RM:513/54%",
["Cowtabak"] = "UB:293/49%RM:462/67%",
["Grubbler"] = "EB:659/89%EM:825/88%",
["Rosalindää"] = "UM:330/34%",
["Biggym"] = "RB:525/67%RM:597/64%",
["Gesahaha"] = "CB:50/3%RM:627/69%",
["Dôntworry"] = "RM:575/63%",
["Izzix"] = "UB:368/48%RM:574/63%",
["Berom"] = "CB:67/5%UM:432/47%",
["Necrorezz"] = "RB:556/73%RM:525/54%",
["Luftpumper"] = "RM:660/70%",
["Schwendrik"] = "EB:624/79%EM:828/85%",
["Justkiddin"] = "CB:104/12%EM:836/88%",
["Gryphos"] = "RB:455/58%EM:747/78%",
["Xardmage"] = "CM:241/24%",
["Lliwt"] = "EB:596/77%EM:722/75%",
["Stikmoo"] = "ET:419/94%EB:745/94%LM:967/97%",
["Angoran"] = "RB:494/68%EM:857/92%",
["Obeylixx"] = "UM:231/43%",
["Laile"] = "EB:613/81%EM:766/82%",
["Buj"] = "EB:420/75%EM:520/75%",
["Arwenai"] = "UB:239/29%UM:463/49%",
["Ezsix"] = "RB:578/74%EM:885/90%",
["Sneppo"] = "CB:78/7%CM:240/23%",
["Kirosoul"] = "CM:26/0%",
["Bigbootyzion"] = "UB:374/47%UM:392/41%",
["Deadpooline"] = "RB:515/68%EM:793/85%",
["Guccibre"] = "RT:509/68%RB:480/65%EM:732/78%",
["Gerste"] = "CB:65/5%RM:157/52%",
["Dereisenhans"] = "RM:489/50%",
["Spacetribe"] = "EB:678/87%EM:844/87%",
["Faroli"] = "UM:221/41%",
["Stealthezeal"] = "UM:345/36%",
["Golîath"] = "RB:480/71%EM:774/88%",
["Julé"] = "UB:297/37%RM:492/51%",
["Braveheart"] = "CB:190/20%RM:483/51%",
["Woschtperle"] = "UB:362/48%RM:671/74%",
["Larsion"] = "RM:272/55%",
["Genêsis"] = "RB:356/57%EM:620/79%",
["Arkandi"] = "CM:97/8%",
["Pudo"] = "RB:497/69%RM:617/69%",
["Diamontech"] = "CB:67/6%UM:311/32%",
["Stunislova"] = "UB:236/30%EM:687/75%",
["Xirta"] = "UM:372/39%",
["Orba"] = "LB:739/96%LM:944/97%",
["Daimajin"] = "UB:241/30%UM:310/32%",
["Scripus"] = "EB:670/84%EM:789/82%",
["Seffo"] = "RB:398/50%CM:92/9%",
["Kêssi"] = "CB:129/15%",
["Glorya"] = "RB:414/56%EM:744/81%",
["Hhodor"] = "UB:272/34%UM:439/45%",
["Craftý"] = "LB:757/95%EM:878/90%",
["Shadowtears"] = "EB:693/88%EM:779/81%",
["Vulkana"] = "UB:292/38%EM:785/84%",
["Oq"] = "RM:625/67%",
["Shiftyy"] = "RB:399/62%EM:565/76%",
["Grombart"] = "UB:285/37%UM:437/47%",
["Shektar"] = "UM:390/46%",
["Saru"] = "RB:339/63%RM:539/74%",
["Specknacken"] = "EB:660/85%EM:767/80%",
["Feran"] = "EB:667/89%EM:763/88%",
["Reflexz"] = "EB:488/78%EM:617/80%",
["Elyana"] = "RB:514/71%EM:681/75%",
["Devine"] = "CB:153/19%UM:252/34%",
["Brummbard"] = "RB:243/54%RM:328/60%",
["Zuggzugg"] = "EB:372/79%RM:500/55%",
["Telena"] = "RB:317/69%RM:486/72%",
["Apfelmusman"] = "RB:534/71%EM:683/75%",
["Kasari"] = "UB:259/33%UM:259/26%",
["Kabor"] = "CB:143/15%",
["Brande"] = "ET:560/82%EB:575/83%EM:673/83%",
["Wòdan"] = "CB:94/10%CM:165/17%",
["Jurina"] = "CM:30/1%",
["Zukras"] = "UM:86/29%",
["Tozzla"] = "UB:350/45%UM:399/40%",
["Nuramon"] = "CB:145/17%UM:373/37%",
["Robheal"] = "EB:667/91%LM:920/96%",
["Draudinur"] = "RM:315/63%",
["Fantastiic"] = "EB:639/84%EM:807/86%",
["Pädiater"] = "UB:229/28%RM:562/63%",
["Junkface"] = "RB:437/58%EM:735/79%",
["Erica"] = "UB:215/43%RM:368/66%",
["Bít"] = "UM:297/30%",
["Syrî"] = "UB:188/36%EM:577/76%",
["Frostgirl"] = "CM:115/10%",
["Rumbledore"] = "UM:301/30%",
["Exsequtor"] = "UM:326/33%",
["Reepers"] = "EB:737/92%LM:979/98%",
["Prankenhieb"] = "RM:504/74%",
["Esco"] = "CT:145/18%EB:578/76%EM:717/76%",
["Crastus"] = "CB:67/7%UM:248/25%",
["Dyon"] = "RB:560/71%EM:864/89%",
["Losgulaschos"] = "EB:561/77%RM:665/74%",
["Denari"] = "RB:551/71%UM:273/28%",
["Humi"] = "RB:515/67%EM:757/79%",
["Alestria"] = "EM:770/84%",
["Leýla"] = "UM:266/25%",
["Xavroar"] = "RM:579/56%",
["Driped"] = "CB:57/6%CM:35/2%",
["Vidoco"] = "RM:495/54%",
["Firén"] = "CM:241/23%",
["Çarmorra"] = "UM:303/31%",
["Artzgor"] = "RM:436/62%",
["Zogzog"] = "CM:232/23%",
["Garmosh"] = "UM:273/27%",
["Sava"] = "CM:159/15%",
["Varios"] = "RB:414/54%EM:756/81%",
["Yù"] = "UM:454/47%",
["Melu"] = "EB:546/75%LM:905/97%",
["Fatso"] = "EB:599/83%EM:808/87%",
["Oniji"] = "LB:773/97%LM:951/96%",
["Bootleg"] = "RB:423/74%EM:686/83%",
["Torgesmut"] = "CM:131/12%",
["Trinia"] = "CB:83/10%UM:386/40%",
["Hádarok"] = "UB:363/46%RM:499/52%",
["Rytrius"] = "RM:349/61%",
["Rhazzazor"] = "UM:270/27%",
["Resistor"] = "EM:642/81%",
["Derberer"] = "UM:348/35%",
["Blazoor"] = "RB:437/60%RM:597/66%",
["Aruathor"] = "UB:376/44%RM:658/60%",
["Dercommander"] = "EM:668/85%",
["Nãñï"] = "EB:542/75%EM:766/84%",
["Watschki"] = "RB:479/60%RM:676/72%",
["Quzzle"] = "CM:212/22%",
["Moneyhustler"] = "UM:328/34%",
["Pachulia"] = "RB:492/64%RM:583/60%",
["Blitzkarate"] = "RB:508/70%UM:439/47%",
["Maijic"] = "CB:35/2%CM:130/11%",
["Shadê"] = "EB:696/88%EM:919/92%",
["Susru"] = "CB:41/4%CM:221/22%",
["Smeudi"] = "CB:25/0%RM:288/50%",
["Kariso"] = "EM:774/83%",
["Slyny"] = "CM:143/12%",
["Nandika"] = "RB:476/63%RM:652/69%",
["Bakcast"] = "RM:527/58%",
["Lyneela"] = "UM:421/45%",
["Bliny"] = "UB:308/40%RM:605/67%",
["Xevularum"] = "RM:551/61%",
["Laynerz"] = "UT:287/40%UB:334/41%RM:512/58%",
["Norgh"] = "EB:678/88%LM:949/96%",
["Trastiz"] = "CM:156/14%",
["Aggrosucht"] = "RB:516/65%EM:796/83%",
["Molefor"] = "RM:572/59%",
["Gregorgeezy"] = "UB:284/34%RM:548/59%",
["Mytok"] = "EB:624/81%EM:794/82%",
["Layziebone"] = "RB:561/74%EM:848/89%",
["Yuriq"] = "CM:148/14%",
["Wespa"] = "UM:342/36%",
["Çuts"] = "EB:703/88%EM:888/91%",
["Rüpl"] = "RB:395/53%RM:465/51%",
["Nikimagic"] = "CB:74/8%RM:699/74%",
["Darakai"] = "UM:368/39%",
["Boombomberta"] = "EM:739/80%",
["Radswid"] = "UB:365/49%UM:20/26%",
["Schmusie"] = "RB:508/65%EM:758/79%",
["Mangochutny"] = "RM:547/60%",
["Kalysis"] = "CB:134/15%RM:543/60%",
["Almanese"] = "CM:134/12%",
["Melande"] = "EM:779/84%",
["Chacha"] = "CM:124/10%",
["Xeon"] = "EB:571/79%EM:804/86%",
["Jermy"] = "RM:341/60%",
["Korderon"] = "UM:308/32%",
["Donperkun"] = "EB:657/90%EM:833/92%",
["Schranzdog"] = "UM:445/45%",
["Chaflana"] = "EB:750/94%EM:905/92%",
["Mønster"] = "CM:227/23%",
["Lylora"] = "UB:264/35%RM:538/58%",
["Dragonoid"] = "CM:80/6%",
["Syler"] = "UB:90/40%RM:291/67%",
["Alderaan"] = "CB:136/16%RM:493/54%",
["Ghosh"] = "RB:354/62%RM:584/73%",
["Calexe"] = "CB:27/1%CM:212/21%",
["Horstí"] = "CM:157/17%",
["Muêrte"] = "RB:525/69%EM:848/87%",
["Windaxe"] = "CM:32/3%",
["Zazeru"] = "RB:433/53%EM:649/81%",
["Tzsven"] = "UB:209/26%RM:569/60%",
["Silamdora"] = "UB:280/36%UM:276/28%",
["Anwalt"] = "RB:574/73%EM:773/81%",
["Paddypole"] = "UM:446/46%",
["Robínsonhuso"] = "CM:188/19%",
["Yilan"] = "RB:313/60%RM:499/55%",
["Karula"] = "UB:316/36%EM:725/77%",
["Pelya"] = "UB:242/31%EM:887/94%",
["Edelauspackr"] = "RB:424/54%EM:818/84%",
["Sandriah"] = "RB:435/56%RM:608/63%",
["Littlealbert"] = "EB:598/78%EM:871/90%",
["Somera"] = "RM:376/68%",
["Qoz"] = "RB:580/74%EM:890/91%",
["Königgeorghe"] = "RB:565/74%EM:730/76%",
["Hea"] = "LB:750/97%LM:958/98%",
["Magame"] = "CB:58/6%CM:129/12%",
["Motzl"] = "EB:578/76%EM:815/86%",
["Ragolas"] = "EM:535/76%",
["Handsup"] = "EB:568/75%EM:821/87%",
["Omeron"] = "EB:686/88%EM:859/90%",
["Miaou"] = "RB:550/73%EM:745/76%",
["Wishus"] = "EB:564/75%EM:883/92%",
["Xiggz"] = "RM:639/68%",
["Yanos"] = "LB:747/95%SM:998/99%",
["Blowup"] = "LB:773/97%LM:950/96%",
["Xelon"] = "UM:67/26%",
["Payçur"] = "RM:571/61%",
["Damenklo"] = "UB:343/40%RM:562/60%",
["Seschka"] = "UM:320/33%",
["Hauen"] = "EM:751/79%",
["Skulley"] = "CM:164/17%",
["Schüssian"] = "CM:230/21%",
["Jointstummel"] = "CM:26/0%",
["Lodmela"] = "CT:158/18%RB:437/60%EM:873/93%",
["Steroidmage"] = "CB:59/6%CM:112/10%",
["Kuhlerboy"] = "CM:185/19%",
["Christiná"] = "UB:353/47%RM:591/65%",
["Phelios"] = "CB:40/2%CM:27/0%",
["Idunis"] = "CM:211/21%",
["Melisa"] = "CB:53/5%UM:430/46%",
["Skydevil"] = "CM:141/12%",
["Marbela"] = "UM:330/34%",
["Teradina"] = "RM:506/55%",
["Syred"] = "RB:450/56%EM:728/77%",
["Skeptâ"] = "RM:243/55%",
["Parny"] = "UM:380/39%",
["Justinelolz"] = "UB:276/33%RM:614/66%",
["Totemizer"] = "RB:428/73%EM:776/90%",
["Sukkushug"] = "UB:216/27%CM:204/21%",
["Todchamp"] = "CB:48/3%RM:566/63%",
["Gammagrunter"] = "UM:428/44%",
["Tomex"] = "CM:203/21%",
["Skelletar"] = "UB:332/41%EM:720/76%",
["Ugotpwnd"] = "EB:737/93%LM:988/98%",
["Zer"] = "LB:766/96%SM:1018/99%",
["Nasinimest"] = "RB:532/69%RM:688/71%",
["Djavo"] = "EB:655/83%EM:864/89%",
["Tiuz"] = "EB:740/93%LM:936/95%",
["Simsa"] = "CM:30/1%",
["Cuwai"] = "RB:495/63%EM:751/79%",
["Wilfer"] = "CM:32/1%",
["Robboss"] = "UM:392/42%",
["Bitesize"] = "EB:569/75%EM:702/76%",
["Tysonfury"] = "CM:125/14%",
["Brokenobi"] = "CM:35/2%",
["Yahya"] = "UM:294/30%",
["Kataros"] = "RM:610/68%",
["Rihya"] = "CB:154/17%CM:225/22%",
["Jimchain"] = "RB:530/73%LM:933/96%",
["Mamster"] = "EB:574/79%EM:739/80%",
["Xandalee"] = "EB:659/85%RM:543/57%",
["Wuakata"] = "EB:668/87%EM:808/86%",
["Willarius"] = "RB:513/68%EM:760/80%",
["Leisi"] = "CB:124/15%UM:363/38%",
["Furian"] = "RB:420/57%EM:751/81%",
["Ratscha"] = "EB:642/81%EM:834/82%",
["Gléipnir"] = "RB:393/53%RM:547/60%",
["Lemonhead"] = "RB:439/58%RM:456/50%",
["Luftikuss"] = "EB:570/75%RM:493/52%",
["Altane"] = "EB:458/78%EM:782/93%",
["Neshy"] = "EB:690/89%EM:879/91%",
["Maryproblems"] = "EB:506/80%RM:446/67%",
["Mfz"] = "UB:256/30%EM:678/75%",
["Criticalhaze"] = "UB:264/32%UM:457/48%",
["Airflare"] = "CB:30/2%",
["Mexdu"] = "RM:539/60%",
["Haslicek"] = "CB:65/5%CM:113/15%",
["Richu"] = "CB:131/16%UM:374/40%",
["Abraxsas"] = "UB:160/47%RM:271/56%",
["Tibbit"] = "CM:98/9%",
["Dasbüffel"] = "RB:357/67%EM:618/84%",
["Skali"] = "RB:394/70%RM:428/68%",
["Paincake"] = "UB:369/46%RM:595/64%",
["Takeros"] = "EB:543/78%EM:722/86%",
["Moschtu"] = "UB:331/41%UM:420/44%",
["Rilyana"] = "RB:404/55%UM:384/41%",
["Rosalinde"] = "UB:244/31%UM:54/44%",
["Trygolon"] = "RB:362/58%RM:310/53%",
["Morfing"] = "EB:622/82%EM:861/90%",
["Roktakk"] = "CM:31/1%",
["Itorak"] = "RB:486/67%EM:518/84%",
["Miedo"] = "UM:435/44%",
["Sdmorn"] = "EB:654/84%LM:926/95%",
["Talyon"] = "RB:504/65%RM:690/73%",
["Blockzer"] = "EB:673/90%EM:804/92%",
["Mangara"] = "RB:487/67%EM:766/83%",
["Daîdalos"] = "CB:61/7%UM:465/49%",
["Kessaya"] = "CM:130/12%",
["Brody"] = "CB:91/19%EM:558/75%",
["Kampffzwerg"] = "CM:98/12%",
["Xyrios"] = "RB:225/52%RM:511/72%",
["Gigo"] = "CM:39/3%",
["Riotmaker"] = "EB:637/81%EM:778/81%",
["Maruna"] = "RB:463/65%RM:614/67%",
["Cremissimo"] = "RB:420/58%EM:836/88%",
["Xio"] = "CM:162/17%",
["Fancypriest"] = "RB:478/66%RM:651/72%",
["Xorr"] = "UB:383/48%EM:840/82%",
["Dawoka"] = "RB:415/52%EM:912/91%",
["Skiplegdayz"] = "RM:600/62%",
["Molin"] = "RB:468/64%EM:782/85%",
["Môora"] = "RM:454/72%",
["Psyx"] = "EM:814/87%",
["Escarmo"] = "RM:387/61%",
["Odrian"] = "RB:328/59%RM:501/67%",
["Lookley"] = "EB:689/87%EM:921/94%",
["Oldlaf"] = "UM:259/25%",
["Plesia"] = "UM:288/29%",
["Elandil"] = "UB:224/27%EM:566/79%",
["Tarn"] = "CB:40/4%UM:338/35%",
["Crúnch"] = "UB:282/36%",
["Tholandor"] = "EB:565/78%RM:648/72%",
["Swä"] = "RM:572/61%",
["Cologne"] = "RM:563/60%",
["Yosee"] = "RM:690/73%",
["Trissell"] = "RB:563/72%EM:777/81%",
["Flokikrieger"] = "CM:90/11%",
["Xplodius"] = "UM:332/35%",
["Canute"] = "EB:570/79%EM:714/78%",
["Ebenrauchen"] = "UM:399/43%",
["Frischetheke"] = "CB:153/17%RM:478/53%",
["Kéllox"] = "EM:704/77%",
["Ollymustdie"] = "RM:516/55%",
["Nightblood"] = "UM:249/25%",
["Crytec"] = "EB:649/82%EM:733/77%",
["Quantix"] = "EB:692/88%EM:893/92%",
["Lykrar"] = "EB:606/77%EM:902/92%",
["Ajia"] = "EB:553/76%RM:595/66%",
["Pâxit"] = "UM:355/37%",
["Eypi"] = "LB:757/95%SM:1022/99%",
["Sanny"] = "LB:778/97%SM:1010/99%",
["Xàrdás"] = "UM:341/34%",
["Freezeya"] = "EB:724/92%EM:822/87%",
["Synthás"] = "UB:299/39%RM:672/74%",
["Müller"] = "UB:401/48%EM:635/80%",
["Darkanima"] = "RB:538/70%EM:794/82%",
["Lirá"] = "RB:490/68%EM:828/89%",
["Ronba"] = "CB:82/8%UM:287/29%",
["Tuca"] = "UB:214/26%RM:604/67%",
["Handrasa"] = "CM:84/7%",
["Noxiana"] = "EM:783/89%",
["Énaa"] = "EM:757/79%",
["Peebee"] = "EB:705/90%LM:923/95%",
["Jolodea"] = "CM:27/0%",
["Chestbrah"] = "RB:570/73%EM:773/81%",
["Lythrania"] = "EB:605/88%EM:675/85%",
["Nazak"] = "EB:693/92%EM:858/90%",
["Tamkmaster"] = "UB:249/44%RM:467/68%",
["Phreakshow"] = "EB:684/90%LM:933/96%",
["Larahil"] = "RB:400/50%RM:680/72%",
["Heinzkarl"] = "RM:441/66%",
["Satany"] = "RB:533/68%EM:805/83%",
["Transboi"] = "CM:132/13%",
["Kinncrimson"] = "RM:590/61%",
["Etepetete"] = "CM:51/3%",
["Finstergrins"] = "RB:435/72%EM:647/81%",
["Skyzon"] = "CB:72/8%CM:104/9%",
["Killefiq"] = "EM:750/79%",
["Merys"] = "RM:557/59%",
["Moreal"] = "UM:282/29%",
["Lurke"] = "CB:35/3%UM:305/31%",
["Tedraliel"] = "EB:639/88%LM:911/95%",
["Scnt"] = "UM:275/28%",
["Octo"] = "EB:589/77%RM:653/68%",
["Klopfgeist"] = "UB:300/36%RM:600/64%",
["Arrowhail"] = "LB:767/96%LM:968/97%",
["Vuitton"] = "EM:801/85%",
["Kobax"] = "CM:100/10%",
["Vertreter"] = "EB:708/89%EM:927/94%",
["Yobebi"] = "CB:63/6%RM:324/73%",
["Shanraz"] = "CM:199/19%",
["Magestrix"] = "CM:242/24%",
["Klarebrühe"] = "CM:92/8%",
["Frume"] = "UB:201/25%UM:437/47%",
["Bomewarr"] = "RM:405/62%",
["Ndugu"] = "UM:247/45%",
["Mellty"] = "RB:394/52%RM:615/68%",
["Highliger"] = "UM:341/34%",
["Salvator"] = "UB:308/40%UM:368/39%",
["Himbeerbär"] = "RM:261/59%",
["Freezy"] = "CM:159/15%",
["Gormasch"] = "UB:274/30%UM:373/38%",
["Houyi"] = "RB:214/51%RM:265/56%",
["Deadmen"] = "UB:227/28%UM:461/47%",
["Greenin"] = "CM:186/18%",
["Bohen"] = "RB:503/70%EM:753/82%",
["Mailand"] = "EB:694/93%LM:981/98%",
["Alessah"] = "CM:102/9%",
["Cl"] = "UB:344/44%RM:703/74%",
["Sinuhe"] = "CM:82/6%",
["Schnübbl"] = "UB:300/36%RM:662/70%",
["Alessândra"] = "RM:362/58%",
["Braah"] = "CB:38/4%CM:96/11%",
["Tiringor"] = "EM:617/79%",
["Hackyo"] = "CM:103/9%",
["Gorefist"] = "RM:361/58%",
["Totine"] = "CM:173/16%",
["Corpsêbride"] = "RB:243/54%RM:434/67%",
["Tuladi"] = "RM:201/54%",
["Gyanrosling"] = "CB:127/15%CM:231/23%",
["Anubisgeist"] = "EB:655/84%EM:826/86%",
["Goaris"] = "EM:781/77%",
["Deadpol"] = "CM:63/4%",
["Peacemaker"] = "UM:273/28%",
["Rura"] = "CM:30/1%",
["Azacel"] = "RB:473/63%RM:590/65%",
["Trollhulk"] = "EB:665/85%EM:738/78%",
["Priestyaya"] = "RM:647/71%",
["Stitchy"] = "CM:25/0%",
["Grammagamma"] = "UM:253/46%",
["Fookmie"] = "UB:241/30%RM:576/59%",
["Akuroth"] = "UM:306/31%",
["Botty"] = "CB:60/5%CM:50/3%",
["Ivyvl"] = "RB:514/67%RM:699/73%",
["Anukk"] = "RB:494/68%EM:686/76%",
["Cresher"] = "UB:376/45%UM:362/37%",
["Strifes"] = "UM:323/33%",
["Trarrior"] = "CB:198/21%UM:252/25%",
["Haldoor"] = "EB:543/75%RM:679/70%",
["Lubix"] = "EB:630/87%EM:823/89%",
["Moscht"] = "CM:53/6%",
["Tarvalon"] = "CB:156/19%UM:263/27%",
["Wollmilchsaû"] = "RB:522/68%RM:606/63%",
["Ótzen"] = "UM:346/43%",
["Tangazulu"] = "CB:15/8%CM:17/14%",
["Retail"] = "EB:643/84%EM:837/88%",
["Streuner"] = "EB:674/86%EM:828/86%",
["Zpz"] = "RB:581/74%EM:717/76%",
["Süffig"] = "EB:610/79%EM:717/76%",
["Genesìs"] = "EM:638/80%",
["Bibblé"] = "UM:450/47%",
["Flatulenzor"] = "RB:464/60%RM:657/68%",
["Crazylegz"] = "CM:59/4%",
["Jellyphiz"] = "EB:723/91%EM:923/94%",
["Violana"] = "CB:36/3%CM:47/4%",
["Mayzy"] = "EB:560/78%RM:574/63%",
["Degene"] = "UB:231/29%RM:518/57%",
["Maroja"] = "RB:404/51%EM:813/84%",
["Boombalasch"] = "CM:78/6%",
["Rösiwarri"] = "RB:559/71%EM:763/80%",
["Lotte"] = "EB:668/87%EM:804/85%",
["Vaska"] = "LB:763/96%LM:963/97%",
["Asharra"] = "UM:400/43%",
["Coja"] = "RM:334/55%",
["Brownîe"] = "RM:474/52%",
["Octane"] = "RM:502/53%",
["Highline"] = "UB:233/29%RM:610/67%",
["Libbes"] = "EB:530/84%EM:710/86%",
["Okath"] = "EB:601/78%LM:929/95%",
["Filthy"] = "EM:559/79%",
["Kerdoras"] = "EB:592/75%EM:891/91%",
["Shyom"] = "CM:120/10%",
["Tursos"] = "CB:30/2%UM:224/42%",
["Frieden"] = "CM:146/13%",
["Palvi"] = "CB:176/20%UM:435/48%",
["Uuwe"] = "CM:128/11%",
["Paya"] = "UM:434/45%",
["Allmar"] = "EB:663/89%EM:829/88%",
["Perti"] = "RB:337/70%RM:403/69%",
["Shinshan"] = "EB:718/90%SM:1005/99%",
["Tornadoküken"] = "UM:304/31%",
["Snorris"] = "CM:198/20%",
["Pieksa"] = "CM:54/4%",
["Suq"] = "EB:672/85%LM:952/95%",
["Celandra"] = "EB:692/87%EM:831/86%",
["Xuzzle"] = "RB:384/50%RM:551/61%",
["Merbine"] = "EB:654/84%LM:953/96%",
["Brandogar"] = "CM:100/8%",
["Sesor"] = "RM:333/60%",
["Quigon"] = "EB:601/78%EM:860/89%",
["Aktivinger"] = "RM:631/70%",
["Blutlos"] = "UB:227/28%UM:453/46%",
["Ogstanley"] = "CB:84/24%RM:223/61%",
["Healia"] = "RB:403/56%RM:602/64%",
["Sminem"] = "UB:367/47%EM:752/79%",
["Tiida"] = "EB:552/77%EM:699/75%",
["Tova"] = "RM:579/64%",
["Föky"] = "CB:118/14%UM:328/33%",
["Oouch"] = "RB:299/50%EM:717/85%",
["Grünbard"] = "RB:559/73%RM:704/74%",
["Smallstone"] = "CB:36/1%UM:400/43%",
["Pâdpâd"] = "CM:66/4%",
["Fanadrin"] = "RB:383/71%EM:562/79%",
["Narfer"] = "RB:558/71%EM:823/85%",
["Barbiegirl"] = "CB:73/8%UM:459/48%",
["Xintoras"] = "RB:420/55%RM:672/74%",
["Sháddi"] = "RM:678/74%",
["Nerathôr"] = "CM:213/21%",
["Faxo"] = "UB:229/49%RM:577/73%",
["Menatalic"] = "RB:508/67%RM:616/66%",
["Poyski"] = "UM:295/30%",
["Ràgusa"] = "EB:576/79%EM:857/90%",
["Noxxys"] = "EB:692/91%EM:884/94%",
["Maktarosh"] = "EB:614/84%EM:806/86%",
["Goldgabi"] = "CB:116/14%",
["Phi"] = "EB:653/82%EM:839/86%",
["Tulsadum"] = "RB:318/66%RM:449/67%",
["Dele"] = "LB:767/96%LM:951/96%",
["Maß"] = "EB:662/89%RM:591/66%",
["Trudno"] = "RM:418/65%",
["Edondriel"] = "LB:721/95%EM:899/94%",
["Askannon"] = "CB:75/8%CM:40/2%",
["Aleera"] = "RM:589/65%",
["Mafubá"] = "RB:394/52%RM:624/69%",
["Nesih"] = "UM:432/44%",
["Diviolae"] = "UM:93/28%",
["Blueffyuffi"] = "EM:551/78%",
["Sengala"] = "CM:26/0%",
["Liesi"] = "EB:656/90%LM:917/96%",
["Igitibäh"] = "EB:639/88%LM:941/97%",
["Hotomat"] = "UB:291/37%UM:280/29%",
["Rednoxx"] = "UM:388/39%",
["Sakanos"] = "EB:568/79%EM:875/93%",
["Jayjojane"] = "EB:594/82%EM:868/92%",
["Luciliu"] = "RB:514/71%EM:812/86%",
["Beadz"] = "CM:157/17%",
["Bartholomeow"] = "CM:138/12%",
["Silias"] = "EB:641/83%EM:724/75%",
["Vozsush"] = "CM:126/11%",
["Assitoni"] = "EB:728/93%LM:930/95%",
["Rebornzz"] = "RB:584/74%EM:749/79%",
["Melforx"] = "EB:597/76%EM:792/83%",
["Holzmichl"] = "RB:477/66%EM:741/81%",
["Donorcman"] = "CB:146/15%EM:772/81%",
["Raverd"] = "CB:70/6%EM:791/85%",
["Syte"] = "RB:521/67%EM:765/80%",
["Raken"] = "CM:122/11%",
["Nius"] = "UB:278/47%RM:437/65%",
["Twysla"] = "CM:225/23%",
["Leylà"] = "EB:664/90%EM:682/75%",
["Aryona"] = "EB:715/90%EM:929/94%",
["Maryka"] = "RB:532/68%RM:634/68%",
["Lausa"] = "EB:585/82%EM:772/88%",
["Bohemia"] = "EM:738/88%",
["Hordakk"] = "EB:599/76%EM:808/84%",
["Zuhnar"] = "EB:612/80%EM:819/87%",
["Keen"] = "EB:541/84%EM:739/86%",
["Genfox"] = "UM:208/41%",
["Arames"] = "RB:495/63%CM:242/24%",
["Kappenkarl"] = "EB:732/92%EM:897/92%",
["Ctf"] = "EM:832/89%",
["Brabbl"] = "CB:72/8%UM:442/47%",
["Hortoba"] = "CB:72/8%UM:425/44%",
["Shynra"] = "RB:493/63%EM:806/83%",
["Braxel"] = "RB:513/71%CM:71/5%",
["Grga"] = "LB:780/97%SM:995/99%",
["Fallacha"] = "EB:672/91%SM:977/99%",
["Pomian"] = "RB:507/70%RM:600/66%",
["Hops"] = "UM:390/39%",
["Wundn"] = "CM:244/24%",
["Prinzadam"] = "RM:594/65%",
["Missterry"] = "EM:723/76%",
["Daline"] = "RM:433/66%",
["Hani"] = "RB:500/69%EM:767/80%",
["Praist"] = "UB:272/35%UM:442/48%",
["Darzul"] = "UB:370/47%RM:636/66%",
["Robina"] = "LT:544/97%EB:685/88%EM:814/84%",
["Cuz"] = "CM:100/8%",
["Castoríus"] = "LB:772/98%LM:963/98%",
["Seiles"] = "LB:748/95%LM:988/98%",
["Cienfleur"] = "UB:259/32%RM:459/51%",
["Leiman"] = "EB:621/86%EM:754/80%",
["Aorta"] = "RM:524/56%",
["Durin"] = "EM:687/75%",
["Machschnell"] = "CM:60/4%",
["Kaffegon"] = "UM:308/31%",
["Flyin"] = "RM:650/69%",
["Apophia"] = "CB:99/10%UM:249/25%",
["Aulé"] = "CM:78/6%",
["Dahrinia"] = "UM:322/33%",
["Until"] = "UB:185/45%UM:129/36%",
["Towelie"] = "EB:577/76%EM:892/92%",
["Kabelbrand"] = "RM:661/71%",
["Qwertx"] = "CM:206/19%",
["Spökes"] = "EM:383/78%",
["Lawless"] = "CB:177/22%UM:253/25%",
["Ahpéxx"] = "EM:687/84%",
["Wanzora"] = "CB:150/16%EM:802/84%",
["Jâyzn"] = "EB:608/83%EM:696/85%",
["Borakultor"] = "CM:67/5%",
["Draufhau"] = "UB:241/26%UM:465/48%",
["Boglasch"] = "EB:625/91%EM:631/83%",
["Boomofdoom"] = "CM:122/14%",
["Abadshur"] = "EB:649/83%EM:760/79%",
["Headbänger"] = "EB:671/86%EM:826/85%",
["Philzes"] = "RM:510/56%",
["Libidinis"] = "RM:573/63%",
["Shapiro"] = "RM:572/63%",
["Moskovodkaya"] = "CM:28/1%",
["Schmekel"] = "RM:638/68%",
["Goosefraba"] = "EM:841/90%",
["Ashtarias"] = "CM:224/22%",
["Krawuzi"] = "RB:482/63%EM:733/77%",
["Wolowïzard"] = "CB:160/20%UM:336/35%",
["Melián"] = "UM:340/36%",
["Ailfar"] = "RB:504/67%EM:684/75%",
["Gorschok"] = "RB:143/52%RM:267/58%",
["Invisibly"] = "CM:233/23%",
["Stompdahoof"] = "EB:644/81%EM:900/92%",
["Drom"] = "UB:264/34%RM:514/56%",
["Krock"] = "RB:518/69%UM:449/49%",
["Fernwärme"] = "EB:617/85%EM:867/93%",
["Kaiza"] = "UB:403/49%EM:709/75%",
["Sogge"] = "UB:228/28%EM:737/78%",
["Pangpang"] = "RB:392/53%EM:758/83%",
["Gróbi"] = "CB:169/18%UM:438/45%",
["Syniom"] = "UB:390/47%RM:699/74%",
["Relaxmode"] = "UM:370/37%",
["Shinbolt"] = "EB:587/78%LM:970/97%",
["Herrkuba"] = "CM:82/7%",
["Foaly"] = "RM:575/64%",
["Kulsain"] = "RM:529/54%",
["Urtika"] = "CB:61/6%UM:350/35%",
["Geric"] = "RB:429/59%EM:810/88%",
["Horzon"] = "RB:452/59%EM:842/87%",
["Deathbody"] = "RB:440/60%RM:573/63%",
["Screen"] = "UM:363/37%",
["Zipzap"] = "UB:200/25%RM:523/57%",
["Cliffex"] = "RB:457/58%RM:593/63%",
["Vineyards"] = "CM:191/19%",
["Hubî"] = "UM:368/44%",
["Ridly"] = "CM:185/19%",
["Sanadoria"] = "RM:579/64%",
["Beleg"] = "RM:688/73%",
["Jelissa"] = "RM:497/54%",
["Elchapo"] = "EB:505/81%EM:773/90%",
["Yvarr"] = "CM:105/12%",
["Locki"] = "RB:550/72%EM:781/81%",
["Hoax"] = "EB:596/76%RM:671/72%",
["Kaodas"] = "CB:133/15%UM:301/31%",
["Aenne"] = "UM:361/42%",
["Vitan"] = "RB:530/69%",
["Einhart"] = "LB:731/96%LM:954/98%",
["Hektik"] = "CM:96/8%",
["Seju"] = "RB:467/61%UM:421/43%",
["Buo"] = "RM:483/50%",
["Müsliman"] = "CM:80/8%",
["Todundseuche"] = "UB:225/28%UM:480/49%",
["Setibos"] = "EB:649/82%EM:911/93%",
["Psychonaut"] = "RB:434/59%RM:556/61%",
["Paincraft"] = "EB:615/85%EM:777/85%",
["Captnchaos"] = "EB:578/81%EM:651/81%",
["Barthl"] = "CB:186/23%CM:89/7%",
["Redrock"] = "EB:642/88%RM:670/73%",
["Redrockine"] = "RB:481/62%RM:688/73%",
["Miraktos"] = "RB:529/73%RM:651/69%",
["Xor"] = "EB:620/80%EM:861/89%",
["Salariea"] = "UB:361/46%RM:734/71%",
["Xaylie"] = "EB:678/85%EM:891/91%",
["Montii"] = "EB:618/84%EM:829/86%",
["Razegar"] = "UB:333/44%RM:492/54%",
["Discotits"] = "CB:96/11%UM:305/30%",
["Makarovv"] = "UB:211/47%RM:402/59%",
["Erbutoldr"] = "CB:100/12%UM:306/31%",
["Stach"] = "UB:251/30%RM:601/64%",
["Tiberian"] = "UB:228/29%RM:562/62%",
["Nowuseeme"] = "CB:93/11%UM:404/42%",
["Mirozaro"] = "CM:135/13%",
["Zacharias"] = "UB:143/40%RM:431/61%",
["Dermuhtige"] = "RB:430/59%RM:599/66%",
["Mördöör"] = "CB:46/5%UM:269/27%",
["Braunerdino"] = "RB:314/52%RM:461/67%",
["Rahim"] = "CB:29/1%UM:427/45%",
["Neki"] = "RM:462/50%",
["Tasdar"] = "CM:40/3%",
["Restinpeace"] = "RB:514/71%EM:724/79%",
["Maldun"] = "CB:168/21%RM:579/64%",
["Xardaras"] = "RB:463/60%RM:657/68%",
["Mcflyers"] = "RM:291/57%",
["Chriios"] = "CM:26/0%",
["Dalagaran"] = "RM:475/52%",
["Lissiira"] = "EB:595/82%EM:849/90%",
["Takal"] = "CM:153/15%",
["Thonur"] = "RB:502/64%EM:776/81%",
["Tobbles"] = "CB:29/1%CM:211/21%",
["Komasutra"] = "CM:64/10%",
["Alsric"] = "EB:604/83%EM:709/77%",
["Ultima"] = "EB:613/88%LM:899/95%",
["Xanfiret"] = "UB:240/26%CM:236/24%",
["Pontos"] = "RT:190/64%EB:626/81%RM:552/61%",
["Zeltic"] = "CM:198/20%",
["Crânk"] = "CM:100/9%",
["Rowenaa"] = "UB:342/43%UM:438/44%",
["Rubeldiekatz"] = "CM:36/2%",
["Boshi"] = "UB:223/27%RM:697/74%",
["Demonyas"] = "RB:459/60%EM:805/83%",
["Nirokosh"] = "EB:646/90%EM:823/90%",
["Genshin"] = "RB:481/62%EM:754/79%",
["Spiritofmage"] = "EB:742/94%LM:955/97%",
["Sang"] = "LB:760/95%LM:948/96%",
["Elber"] = "RB:580/74%EM:706/75%",
["Rakh"] = "UM:307/31%",
["Elrinini"] = "CM:206/20%",
["Lathurida"] = "CB:117/14%RM:489/50%",
["Taelon"] = "RB:396/72%EM:765/91%",
["Skaz"] = "EM:774/88%",
["Ápexs"] = "RM:558/57%",
["Bubblebóy"] = "UB:263/33%UM:439/47%",
["Nimrodd"] = "RM:488/66%",
["Schagal"] = "CB:158/19%RM:571/61%",
["Peepie"] = "CM:92/8%",
["Xiaoniu"] = "RM:513/57%",
["Bndjax"] = "CM:28/1%",
["Zsu"] = "UB:309/41%RM:649/72%",
["Vancleavage"] = "UB:214/26%RM:481/51%",
["Bullwhip"] = "UM:415/45%",
["Vuk"] = "EB:539/75%EM:704/77%",
["Blitzcrank"] = "RM:486/53%",
["Alwiso"] = "RB:466/64%EM:693/76%",
["Weren"] = "EB:658/83%LM:935/95%",
["Raazul"] = "ET:312/88%LB:763/97%LM:976/98%",
["Laeya"] = "ET:348/87%EB:666/92%EM:664/93%",
["Blueline"] = "CB:69/7%CM:229/23%",
["Schamane"] = "RM:608/63%",
["Hennejin"] = "CB:68/18%UM:132/44%",
["Sandoria"] = "CB:55/4%",
["Wakanda"] = "EB:596/77%UM:474/48%",
["Ochi"] = "EB:581/81%UM:348/37%",
["Mcgragger"] = "UB:224/27%UM:369/38%",
["Sylvanash"] = "RB:444/58%UM:419/42%",
["Krummzahn"] = "CB:72/19%UM:68/26%",
["Thorhall"] = "UB:125/26%RM:335/56%",
["Fexmon"] = "UB:372/44%UM:436/45%",
["Zulyanna"] = "CB:70/8%CM:41/2%",
["Mondjägerin"] = "RB:446/58%RM:623/66%",
["Boriel"] = "UM:128/33%",
["Tulkas"] = "UB:254/27%",
["Nuki"] = "RB:492/64%RM:594/58%",
["Icute"] = "UM:257/26%",
["Täx"] = "CB:28/1%RM:300/52%",
["Septix"] = "RB:472/63%RM:594/65%",
["Mayem"] = "CB:119/13%UM:231/25%",
["Shicarita"] = "RB:524/67%RM:655/70%",
["Xran"] = "CB:42/6%EM:580/77%",
["Æxxon"] = "CB:28/1%RM:590/63%",
["Swaglord"] = "UM:299/31%",
["Gugus"] = "UM:376/38%",
["Heiltuch"] = "CM:170/15%",
["Athani"] = "CB:173/20%UM:396/43%",
["Nidras"] = "EB:599/78%EM:809/84%",
["Bettsi"] = "UM:433/47%",
["Homiefresh"] = "RB:414/56%RM:473/52%",
["Quetschtitte"] = "CM:104/12%",
["Backstubb"] = "UM:342/35%",
["Shoruzul"] = "EB:683/87%EM:843/87%",
["Axímand"] = "EB:736/93%LM:979/98%",
["Kurwi"] = "UM:148/45%",
["Headspin"] = "LB:762/96%LM:984/98%",
["Tankboss"] = "EB:620/85%EM:838/92%",
["Armaní"] = "UM:416/45%",
["Unlogísch"] = "EB:623/79%EM:860/89%",
["Soullink"] = "EB:683/87%EM:905/93%",
["Anko"] = "CM:199/20%",
["Azûna"] = "EB:700/88%EM:938/94%",
["Syllvain"] = "RB:573/73%EM:816/85%",
["Dagorius"] = "RM:459/50%",
["Nelta"] = "CB:31/3%UM:260/26%",
["Eisgold"] = "CB:41/4%CM:152/15%",
["Kassime"] = "CM:62/24%",
["Legolatz"] = "CB:88/10%CM:251/24%",
["Kalevi"] = "UB:361/42%RM:489/51%",
["Gladiartur"] = "UM:257/26%",
["Lämbo"] = "CB:77/9%CM:105/9%",
["Tinderbella"] = "UB:305/39%RM:647/71%",
["Saquad"] = "RM:636/70%",
["Briannaxoxo"] = "UM:260/26%",
["Felìx"] = "EM:763/80%",
["Steingestalt"] = "EB:591/75%EM:766/81%",
["Shaido"] = "CB:46/3%EM:627/79%",
["Chrais"] = "CM:90/7%",
["Yakwe"] = "EB:603/79%EM:835/88%",
["Cardie"] = "RM:519/55%",
["Shorux"] = "UM:328/34%",
["Rolfert"] = "CM:29/1%",
["Mayquel"] = "EB:666/92%LM:906/96%",
["Kiraona"] = "RM:556/59%",
["Gàmmlí"] = "CB:119/13%RM:541/59%",
["Klâbauter"] = "EB:627/79%EM:801/84%",
["Grantelbär"] = "UM:248/25%",
["Manra"] = "RB:389/50%RM:592/61%",
["Spiritdruid"] = "SB:814/99%SM:1108/99%",
["Xiris"] = "EB:751/94%LM:933/95%",
["Kanrethad"] = "RT:81/55%RB:248/55%RM:570/73%",
["Schwaller"] = "RM:522/69%",
["Xenixo"] = "UB:230/41%RM:459/67%",
["Crunchtimé"] = "UM:371/39%",
["Degged"] = "LB:731/96%LM:927/96%",
["Autarii"] = "UM:373/38%",
["Felun"] = "EB:558/78%EM:844/89%",
["Crugeth"] = "RB:541/72%EM:831/88%",
["Xaoc"] = "RM:581/52%",
["Ló"] = "CM:30/1%",
["Pfünfeinhalb"] = "CM:44/4%",
["Xawa"] = "UM:218/41%",
["Khaled"] = "CM:77/6%",
["Throx"] = "CB:178/21%EM:676/75%",
["Babbared"] = "RM:343/56%",
["Promeiestro"] = "EM:707/77%",
["Testaccount"] = "UM:346/36%",
["Dunklemagie"] = "CM:206/20%",
["Marbuel"] = "CM:60/4%",
["Believe"] = "LB:758/95%LM:980/98%",
["Spiritus"] = "EB:669/89%EM:856/89%",
["Cølâ"] = "EM:742/78%",
["Tiibash"] = "CB:116/12%UM:254/25%",
["Fatze"] = "RM:486/74%",
["Frenzelmann"] = "LB:763/97%EM:882/92%",
["Powermilch"] = "EB:667/89%EM:768/80%",
["Naturjoghurt"] = "EB:665/91%EM:907/94%",
["Kaoz"] = "EB:704/94%EM:810/88%",
["Blackcrusade"] = "RB:403/62%RM:480/69%",
["Almo"] = "UB:375/49%RM:677/74%",
["Ernaya"] = "EM:696/77%",
["Rastamán"] = "RB:388/73%RM:307/66%",
["Talentfrei"] = "RB:423/53%RM:697/74%",
["Slagie"] = "RB:479/60%RM:692/74%",
["Ariy"] = "CB:62/6%CM:194/18%",
["Jugin"] = "EB:625/81%EM:815/84%",
["Xandu"] = "RB:527/68%LM:944/95%",
["Isilock"] = "RB:395/51%RM:674/70%",
["Terranya"] = "UB:310/35%UM:406/38%",
["Ragduhl"] = "EB:683/91%EM:738/80%",
["Lunexion"] = "CM:94/8%",
["Ulyxs"] = "CM:174/16%",
["Magetress"] = "EB:665/86%EM:826/87%",
["Wîtchcraft"] = "CM:146/15%",
["Insanè"] = "CB:190/23%UM:317/33%",
["Magieursel"] = "RB:440/58%EM:754/81%",
["Aufqainsten"] = "EB:580/83%LM:931/97%",
["Dunstkeule"] = "RB:543/69%EM:735/78%",
["Marjhan"] = "RM:474/51%",
["Láhey"] = "RB:560/72%EM:874/89%",
["Estaga"] = "EB:716/90%EM:882/90%",
["Boros"] = "RB:395/53%RM:505/58%",
["Sifco"] = "RB:562/74%EM:835/88%",
["Zaraa"] = "RB:467/58%RM:598/64%",
["Seekar"] = "EB:587/77%EM:866/90%",
["Tamis"] = "RB:310/51%EM:599/78%",
["Dulliana"] = "CB:129/16%UM:404/43%",
["Baumkopf"] = "RB:414/64%RM:387/61%",
["Ellowayne"] = "UM:336/34%",
["Jagsmirfix"] = "CM:133/12%",
["Kvn"] = "RB:488/64%EM:817/85%",
["Dieselbart"] = "EB:651/88%EM:740/80%",
["Edmonton"] = "EB:643/88%RM:674/74%",
["Yodameister"] = "CB:66/7%RM:576/61%",
["Illililli"] = "LM:933/96%",
["Bomoheelz"] = "UM:293/29%",
["Gammagramma"] = "UM:360/37%",
["Xotlvii"] = "CM:27/0%",
["Xotli"] = "CM:56/4%",
["Xotlili"] = "CM:55/4%",
["Xotliv"] = "CM:27/0%",
["Fridy"] = "UB:307/39%UM:413/44%",
["Praha"] = "UM:261/26%",
["Urtican"] = "RB:534/74%EM:694/77%",
["Blasebalg"] = "UB:247/31%RM:584/64%",
["Namika"] = "EB:583/81%EM:888/94%",
["Deyara"] = "EB:632/86%LM:867/95%",
["Zebria"] = "EB:732/92%EM:921/94%",
["Seljana"] = "EB:632/83%EM:887/90%",
["Jägermäster"] = "RM:698/74%",
["Bastor"] = "RB:426/58%EM:770/84%",
["Lightfire"] = "CM:84/6%",
["Marikka"] = "CB:50/5%CM:171/16%",
["Bolego"] = "RB:528/69%EM:771/80%",
["Kikuchi"] = "EB:657/83%EM:854/88%",
["Blinkí"] = "EB:562/75%RM:580/64%",
["Roguess"] = "RB:550/70%EM:723/76%",
["Blackwatcher"] = "UB:381/49%RM:538/55%",
["Miana"] = "RB:455/62%",
["Cathal"] = "UB:223/27%CM:150/15%",
["Smoheal"] = "RB:276/57%RM:384/63%",
["Shclamdsa"] = "RB:463/72%RM:574/73%",
["Kelven"] = "LB:773/98%SM:984/99%",
["Princê"] = "RB:220/56%EM:557/76%",
["Almgandu"] = "CB:194/24%RM:661/72%",
["Verroq"] = "EB:644/87%EM:857/90%",
["Sadores"] = "RB:332/65%EM:700/84%",
["Leiferiksson"] = "RM:283/50%",
["Thesaja"] = "CM:101/9%",
["Saniya"] = "CB:35/3%CM:170/17%",
["Siloren"] = "CB:129/16%UM:344/35%",
["Mysternia"] = "CB:26/0%CM:87/7%",
["Shojo"] = "RB:512/65%EM:761/80%",
["Aggrofrosti"] = "EB:589/78%EM:724/78%",
["Milchbaronin"] = "EB:590/77%RM:603/64%",
["Aquantra"] = "RB:441/61%EM:772/83%",
["Mostwanted"] = "EB:640/81%EM:913/93%",
["Togurix"] = "RB:484/67%RM:675/74%",
["Nessuno"] = "LB:722/96%EM:907/94%",
["Laktoras"] = "EB:615/80%EM:926/94%",
["Sumie"] = "RB:507/66%EM:921/94%",
["Toxinas"] = "CB:99/10%CM:85/7%",
["Toshuiyama"] = "RB:573/73%EM:911/93%",
["Scharjah"] = "CM:126/12%",
["Negiri"] = "EM:717/76%",
["Bælieve"] = "EM:760/82%",
["Colâqt"] = "CM:31/1%",
["Widgity"] = "EB:579/77%EM:688/75%",
["Lafaiyette"] = "RB:429/59%RM:639/70%",
["Tekka"] = "RB:577/74%EM:867/86%",
["Krachtdrüber"] = "RM:438/68%",
["Xotlkv"] = "CM:192/18%",
["Shusej"] = "RB:524/72%EM:769/83%",
["Kentessa"] = "CB:118/14%UM:357/38%",
["Coilliah"] = "EB:740/93%LM:945/96%",
["Karatekidney"] = "UB:281/34%UM:421/44%",
["Dobri"] = "EB:627/79%EM:820/85%",
["Mephaisto"] = "UB:404/49%CM:35/4%",
["Zwergengeist"] = "UB:353/47%CM:197/18%",
["Mogdalos"] = "RB:415/56%RM:569/63%",
["Tymmae"] = "EB:549/76%RM:648/71%",
["Tìna"] = "UM:267/27%",
["Mogdalwan"] = "UM:260/25%",
["Gótthard"] = "CB:127/14%CM:178/16%",
["Dernjo"] = "RB:525/73%RM:630/70%",
["Asanji"] = "RB:376/50%LM:859/96%",
["Bawsheal"] = "RB:465/64%UM:294/30%",
["Lucyna"] = "CM:143/14%",
["Podboq"] = "CM:161/16%",
["Nóisi"] = "RM:239/57%",
["Vomak"] = "RM:303/60%",
["Felstorm"] = "RB:455/59%RM:673/70%",
["Intense"] = "EB:711/93%EM:871/91%",
["Meatwall"] = "UM:176/34%",
["Dyria"] = "EB:733/93%LM:962/97%",
["Wenigerdavon"] = "UM:27/32%",
["Padlinx"] = "UM:267/27%",
["Yenniferlove"] = "UB:320/41%RM:533/58%",
["Joksix"] = "CM:119/10%",
["Springer"] = "CB:48/4%CM:160/23%",
["Maloona"] = "RB:542/71%EM:779/81%",
["Wulfger"] = "RB:447/57%EM:888/91%",
["Bigbowner"] = "RB:509/67%EM:761/80%",
["Erisun"] = "UM:388/40%",
["Mariische"] = "UM:298/30%",
["Vexal"] = "UM:303/31%",
["Wuusaa"] = "UM:281/29%",
["Acer"] = "UM:313/33%",
["Pü"] = "CM:104/8%",
["Zulfari"] = "CM:34/2%",
["Owapi"] = "CM:49/23%",
["Drashe"] = "CM:93/9%",
["Jankos"] = "RM:653/69%",
["Ardeyâ"] = "RB:508/64%EM:703/75%",
["Sneakysnitch"] = "EB:597/78%RM:569/63%",
["Cralinae"] = "CM:196/19%",
["Heji"] = "CM:26/0%",
["Skeptikx"] = "UB:313/40%RM:599/66%",
["Furobil"] = "CM:220/22%",
["Gunrod"] = "EB:685/86%EM:847/87%",
["Yyvo"] = "UB:286/37%EM:798/85%",
["Ultrox"] = "EB:560/77%EM:786/84%",
["Lamyra"] = "RM:560/62%",
["Freazor"] = "EM:632/80%",
["Rigari"] = "UB:266/36%UM:357/38%",
["Mörlin"] = "EM:734/76%",
["Gephrek"] = "UM:399/41%",
["Fipyna"] = "EM:760/80%",
["Biohunter"] = "RM:698/74%",
["Lilbronko"] = "RM:464/68%",
["Delêy"] = "UB:360/42%RM:586/63%",
["Caby"] = "UM:412/42%",
["Artherisa"] = "CM:31/1%",
["Ariyu"] = "EM:877/90%",
["Câtweazle"] = "EM:666/86%",
["Abbelmus"] = "RM:550/59%",
["Jawgrinder"] = "CM:149/14%",
["Holymoly"] = "RM:619/68%",
["Bohemund"] = "RM:435/62%",
["Ayedotter"] = "RB:553/72%EM:852/88%",
["Neferoth"] = "EM:628/79%",
["Moglie"] = "EB:522/92%EM:626/93%",
["Executor"] = "RB:541/71%UM:323/33%",
["Thecook"] = "CM:166/16%",
["Xatisa"] = "UB:270/34%RM:533/56%",
["Tankereya"] = "CB:101/11%RM:622/67%",
["Natural"] = "UM:406/44%",
["Slev"] = "UM:410/43%",
["Thizi"] = "CB:192/23%RM:499/55%",
["Lmntrix"] = "EB:659/86%EM:909/94%",
["Wildematilde"] = "CB:168/21%UM:415/45%",
["Dogwoggle"] = "EB:553/79%EM:620/79%",
["Montberger"] = "CB:74/8%RM:682/74%",
["Clickador"] = "UM:438/45%",
["Raschwääg"] = "EB:551/84%EM:723/85%",
["Äyver"] = "RB:453/58%EM:709/75%",
["Shàdôw"] = "UB:177/48%RM:339/60%",
["Diken"] = "UM:449/46%",
["Zielwasser"] = "RB:400/52%RM:668/71%",
["Kozuna"] = "RB:464/64%EM:724/79%",
["Seryna"] = "CM:213/22%",
["Dakrah"] = "UB:370/44%RM:606/65%",
["Becel"] = "EB:640/88%EM:757/83%",
["Schâgâl"] = "RB:477/60%EM:783/82%",
["Trayli"] = "CB:109/11%UM:430/47%",
["Luckbert"] = "RM:485/54%",
["Ravendave"] = "EM:829/87%",
["Abasobaba"] = "CB:34/2%CM:197/19%",
["Fantast"] = "CB:133/16%UM:437/47%",
["Moonroe"] = "RB:136/50%RM:412/65%",
["Pure"] = "RB:537/69%RM:620/66%",
["Tahriem"] = "UB:314/40%UM:375/40%",
["Actiongary"] = "CB:38/3%RM:664/71%",
["Dogoscha"] = "CM:108/9%",
["Jûne"] = "UM:419/45%",
["Dantalion"] = "UM:201/39%",
["Freddykusi"] = "CM:75/7%",
["Alexislove"] = "RM:224/54%",
["Ratsfatz"] = "UM:436/45%",
["Kuzo"] = "EB:678/91%LM:917/97%",
["Bagrar"] = "LB:761/97%LM:962/98%",
["Pattex"] = "RB:569/72%EM:752/79%",
["Garnulk"] = "EB:637/86%EM:842/89%",
["Karakov"] = "RB:534/68%EM:708/75%",
["Kyusa"] = "CB:204/24%RM:533/57%",
["Jiucen"] = "CB:147/17%CM:221/21%",
["Bema"] = "UM:121/32%",
["Beldargas"] = "CB:111/24%RM:549/74%",
["Walladion"] = "CB:229/24%CM:171/18%",
["Dotmieze"] = "UB:302/38%RM:539/55%",
["Savety"] = "RB:373/50%RM:562/62%",
["Thmvaz"] = "CB:64/7%UM:333/34%",
["Parryhotterr"] = "UB:255/32%UM:368/39%",
["Driude"] = "EB:609/84%EM:833/89%",
["Selelle"] = "UB:323/42%RM:516/57%",
["Nazariah"] = "UB:210/25%UM:378/39%",
["Léék"] = "RB:535/71%RM:543/60%",
["Ghanto"] = "RB:424/56%EM:828/88%",
["Kelor"] = "EB:619/79%EM:901/92%",
["Chesterx"] = "UM:257/26%",
["Tiandra"] = "RB:361/72%EM:767/83%",
["Todt"] = "EB:601/76%EM:809/84%",
["Do"] = "ET:640/94%LB:746/97%LM:966/98%",
["Shootyourmum"] = "EM:907/92%",
["Dooky"] = "CM:27/0%",
["Norshi"] = "CB:116/12%RM:77/54%",
["Glossus"] = "EM:868/88%",
["Aureola"] = "UM:259/26%",
["Peeka"] = "CB:83/10%CM:240/24%",
["Kurtnocow"] = "UM:440/46%",
["Krautiwursti"] = "RM:175/53%",
["Petfood"] = "UM:202/39%",
["Tühp"] = "CM:202/20%",
["Teradun"] = "EM:545/77%",
["Pistolero"] = "UM:308/30%",
["Stealtheheal"] = "RB:483/67%RM:594/66%",
["Narbenjoe"] = "CB:80/8%UM:168/33%",
["Zoura"] = "CB:34/23%UM:252/45%",
["Neckcheck"] = "UB:346/40%RM:533/57%",
["Venador"] = "CM:234/22%",
["Plus"] = "CB:75/9%",
["Nomora"] = "UB:354/47%UM:390/42%",
["Wunderheiler"] = "CB:178/21%UM:258/26%",
["Arogarn"] = "RM:294/60%",
["Ostaka"] = "EB:670/91%EM:775/84%",
["Fenguri"] = "CM:194/18%",
["Intercepter"] = "RB:444/67%EM:683/83%",
["Gurbal"] = "UM:105/31%",
["Schleichy"] = "CM:30/1%",
["Kaetzle"] = "RB:451/62%EM:790/86%",
["Beadzarre"] = "RB:535/70%RM:610/63%",
["Geneth"] = "EB:579/80%EM:716/79%",
["Tirana"] = "RB:465/60%UM:391/42%",
["Fröschlein"] = "UB:397/48%RM:523/55%",
["Kheldar"] = "RB:411/63%RM:396/62%",
["Søe"] = "EB:577/76%EM:741/80%",
["Veged"] = "RB:388/52%RM:482/53%",
["Kukok"] = "EB:687/88%RM:692/72%",
["Malice"] = "RB:482/66%EM:761/81%",
["Aggrocruel"] = "RB:406/51%RM:684/73%",
["Haynk"] = "RB:580/74%EM:822/85%",
["Shanraya"] = "EB:597/78%EM:735/77%",
["Helmuht"] = "EB:552/76%EM:776/84%",
["Zheranox"] = "RB:528/73%RM:616/68%",
["Zulema"] = "CB:59/6%",
["Svä"] = "EM:896/89%",
["Luranda"] = "CB:27/1%CM:200/20%",
["Junshi"] = "UM:381/40%",
["Inovatu"] = "EB:635/90%EM:871/94%",
["Nexaras"] = "CM:56/5%",
["Tarell"] = "RM:475/50%",
["Deyaria"] = "CM:60/4%",
["Mosch"] = "UM:283/28%",
["Lalib"] = "RB:406/51%RM:699/74%",
["Egghead"] = "UB:354/46%RM:584/64%",
["Minipic"] = "CB:27/1%RM:474/50%",
["Zucchinibrot"] = "UB:301/40%CM:229/23%",
["Painfull"] = "RB:556/74%EM:713/77%",
["Evenaar"] = "EB:635/82%EM:748/79%",
["Valen"] = "UB:302/39%RM:558/61%",
["Zelsior"] = "EB:582/82%EM:696/84%",
["Mahdude"] = "RM:642/70%",
["Jolandy"] = "UM:60/43%",
["Trollinda"] = "RM:437/65%",
["Blazee"] = "CM:191/19%",
["Motokk"] = "CM:29/1%",
["Niriita"] = "RM:269/58%",
["Stümmelchen"] = "CM:223/23%",
["Zaladirne"] = "CM:32/1%",
["Chaosoracle"] = "CB:31/2%CM:207/20%",
["Acererak"] = "CB:57/4%CM:220/21%",
["Sôma"] = "EB:422/76%EM:600/81%",
["Warrenßuffet"] = "RM:628/67%",
["Yesakore"] = "RM:602/67%",
["Mightymoo"] = "RM:507/71%",
["Athacor"] = "CM:241/24%",
["Azen"] = "UM:450/47%",
["Schürings"] = "RM:349/61%",
["Dakkabad"] = "RM:627/67%",
["Lexxana"] = "UM:63/25%",
["Xfaith"] = "RB:503/65%EM:809/84%",
["Jôlene"] = "RB:510/67%EM:849/87%",
["Kuhtreiber"] = "CB:59/6%RM:667/69%",
["Shiwoon"] = "EB:606/80%EM:932/94%",
["Reginor"] = "RB:562/74%EM:832/86%",
["Quadehar"] = "CB:55/5%UM:361/36%",
["Dylaria"] = "RB:423/55%EM:825/85%",
["Jousy"] = "RM:528/56%",
["Bullmann"] = "RB:395/52%EM:802/85%",
["Qlesauqt"] = "EB:621/80%RM:715/74%",
["Destrø"] = "EB:603/77%EM:873/86%",
["Catelynn"] = "EB:598/83%LM:943/97%",
["Daymion"] = "UB:344/44%RM:567/58%",
["Chadgar"] = "CM:96/9%",
["Storrm"] = "RB:528/73%EM:852/91%",
["Moschkopp"] = "EB:653/88%EM:840/88%",
["Neptunez"] = "UB:274/35%EM:797/86%",
["Kennard"] = "UB:198/25%UM:403/43%",
["Manaroth"] = "UB:203/25%UM:324/33%",
["Pulsè"] = "EB:672/90%EM:756/88%",
["Sintho"] = "EB:664/85%EM:761/79%",
["Msjackson"] = "EB:638/82%RM:707/73%",
["Nyzé"] = "CB:156/18%CM:195/19%",
["Svejah"] = "EB:613/89%EM:767/92%",
["Bapmaster"] = "EB:601/87%LM:943/97%",
["Nobilis"] = "EB:669/91%EM:732/80%",
["Szammy"] = "RB:571/73%EM:851/87%",
["Jumije"] = "CM:13/19%",
["Ynariah"] = "EB:448/77%",
["Vesslan"] = "UB:255/32%RM:527/62%",
["Bedy"] = "RM:611/65%",
["Aleziana"] = "LB:756/95%EM:920/93%",
["Solaranlage"] = "CB:51/5%CM:193/19%",
["Bjenie"] = "CB:174/18%UM:247/25%",
["Creep"] = "CB:138/17%RM:594/61%",
["Meanie"] = "UM:197/38%",
["Delicíous"] = "RB:358/65%RM:530/73%",
["Torgorn"] = "LB:762/96%LM:966/97%",
["Moffaner"] = "EB:549/83%EM:878/94%",
["Zuldar"] = "UM:294/30%",
["Mefistu"] = "UM:385/41%",
["Ickenf"] = "EB:622/79%EM:830/86%",
["Élfmann"] = "RM:379/68%",
["Ajam"] = "RB:509/64%EM:850/88%",
["Damaege"] = "EB:676/87%EM:912/94%",
["Alwisa"] = "LB:724/95%EM:842/90%",
["Hadriamens"] = "RB:411/69%EM:640/80%",
["Raschonice"] = "CM:25/0%",
["Tonimahonii"] = "CM:247/24%",
["Daddynash"] = "RB:507/64%RM:631/68%",
["Deckesel"] = "UB:237/29%EM:717/76%",
["Oí"] = "CB:54/6%UM:367/37%",
["Hupuderelf"] = "CB:38/2%",
["Zokiam"] = "RB:517/69%EM:872/91%",
["Korks"] = "EB:704/94%EM:838/90%",
["Ammerall"] = "UB:309/39%RM:511/52%",
["Lepraboy"] = "CM:145/15%",
["Aanks"] = "CM:125/10%",
["Lark"] = "EB:628/86%EM:848/90%",
["Spaceq"] = "UM:311/32%",
["Karq"] = "CM:217/22%",
["Janucs"] = "CM:231/23%",
["Kashsnop"] = "RM:384/57%",
["Rukasu"] = "RB:479/60%EM:828/80%",
["Necrodedz"] = "RM:534/55%",
["Mekarios"] = "CM:110/9%",
["Relaxus"] = "CM:244/24%",
["Cgi"] = "RM:531/57%",
["Tszven"] = "UM:218/42%",
["Lôckslav"] = "UM:445/45%",
["Halfdead"] = "UM:366/37%",
["Malîcar"] = "CB:27/0%CM:226/22%",
["Mojong"] = "CM:72/7%",
["Urg"] = "RM:503/73%",
["Zudo"] = "UM:459/47%",
["Kràsch"] = "CB:26/0%UM:398/41%",
["Frazen"] = "UB:310/40%UM:405/44%",
["Sippe"] = "UB:346/46%RM:629/69%",
["Albinor"] = "EB:680/91%EM:885/93%",
["Weggesmaeckt"] = "UB:342/43%RM:585/62%",
["Bejameun"] = "RM:539/57%",
["Dopesoul"] = "CB:41/4%RM:740/72%",
["Carsonne"] = "RM:491/52%",
["Betharja"] = "RM:504/55%",
["Didelmings"] = "UM:376/40%",
["Malil"] = "RM:587/62%",
["Gabel"] = "RM:477/50%",
["Radaboy"] = "CB:162/19%RM:645/69%",
["Olas"] = "CM:95/7%",
["Viji"] = "EM:707/75%",
["Megalebendig"] = "CB:73/8%UM:412/43%",
["Vegana"] = "RM:491/51%",
["Vexmus"] = "RM:523/55%",
["Hirden"] = "UM:454/49%",
["Icetomeetyah"] = "RM:675/74%",
["Randinger"] = "EB:571/75%RM:622/66%",
["Archon"] = "EB:596/82%EM:709/78%",
["Schmutzorc"] = "CM:53/3%",
["Craawly"] = "CB:33/1%EM:713/88%",
["Díckefrau"] = "UB:365/46%RM:668/69%",
["Dämonica"] = "CM:39/3%",
["Ximty"] = "UB:145/29%UM:205/39%",
["Plooder"] = "EB:525/78%LM:879/95%",
["Kardiayn"] = "UM:442/49%",
["Fregvird"] = "UB:249/31%CM:237/24%",
["Arkune"] = "UB:273/33%RM:551/59%",
["Tyre"] = "RB:440/54%RM:520/55%",
["Braxl"] = "RB:474/60%RM:583/62%",
["Darthdickus"] = "RM:243/52%",
["Opelcorsa"] = "CM:120/11%",
["Toper"] = "CT:61/16%EB:548/76%EM:732/80%",
["Langohrsaph"] = "RB:344/56%RM:390/61%",
["Snurf"] = "EB:548/84%EM:733/88%",
["Mustermann"] = "RB:373/59%EM:568/76%",
["Bullwaiy"] = "UB:274/30%RM:745/70%",
["Fletch"] = "CM:97/9%",
["Heinzedgar"] = "UM:288/29%",
["Influenz"] = "UB:345/40%UM:428/44%",
["Hypnotizedx"] = "RB:410/56%RM:538/59%",
["Sukura"] = "RB:436/58%",
["Payi"] = "UB:391/49%RM:640/68%",
["Cranky"] = "EB:570/79%EM:749/78%",
["Kaspar"] = "RB:534/68%EM:784/82%",
["Fluutschi"] = "CM:166/15%",
["Thulanar"] = "UB:364/49%UM:266/36%",
["Xulu"] = "RB:552/73%EM:856/88%",
["Delphïne"] = "RB:469/60%RM:656/70%",
["Wildghost"] = "CM:39/2%",
["Zsn"] = "RB:204/50%RM:393/64%",
["Diviku"] = "CB:46/3%RM:491/54%",
["Kiwid"] = "RM:502/53%",
["Tâcker"] = "RB:380/51%UM:358/45%",
["Leradim"] = "UM:276/28%",
["Gárgamél"] = "CM:28/0%",
["Isendem"] = "UB:303/39%EM:929/94%",
["Tulgan"] = "RB:451/62%RM:487/53%",
["Dopingbaron"] = "CT:27/1%UM:388/40%",
["Lucyinthesky"] = "CB:112/13%CM:208/19%",
["Drdoomm"] = "RB:276/57%RM:450/68%",
["Alrikdarben"] = "RB:436/66%RM:435/65%",
["Turark"] = "UB:212/28%UM:302/34%",
["Knusperelf"] = "RB:397/51%",
["Vanlar"] = "RB:212/59%UM:268/27%",
["Spòók"] = "UB:291/49%UM:364/37%",
["Oneidavar"] = "RB:503/66%UM:451/46%",
["Davê"] = "RB:476/63%RM:602/64%",
["Omá"] = "CM:114/18%",
["Grollbringer"] = "RB:489/67%RM:438/52%",
["Zebaoth"] = "RB:523/68%RM:544/56%",
["Hallin"] = "RB:464/64%UM:219/27%",
["Prizzi"] = "RB:374/66%RM:519/72%",
["Evabaum"] = "RT:336/54%RB:307/60%RM:333/64%",
["Nàshor"] = "UB:259/33%CM:63/4%",
["Bern"] = "CM:60/4%",
["Imperiá"] = "CM:32/1%",
["Toastex"] = "CM:93/9%",
["Batilda"] = "CM:60/5%",
["Lilalaune"] = "RM:244/58%",
["Fellfetzen"] = "RM:279/60%",
["Ihat"] = "UM:362/38%",
["Rostigeangel"] = "UM:122/45%",
["Eepunklax"] = "CM:37/2%",
["Fieseforelle"] = "UM:127/33%",
["Pixelzz"] = "EM:747/85%",
["Robb"] = "CB:26/0%RM:410/65%",
["Tarwok"] = "EM:687/85%",
["Tsaijo"] = "CM:109/9%",
["Tomselleck"] = "CM:166/17%",
["Xalov"] = "RB:250/61%RM:526/72%",
["Gump"] = "EM:636/83%",
["Kuhauge"] = "EM:750/82%",
["Bruning"] = "RB:429/58%UM:423/46%",
["Extor"] = "CB:41/4%UM:282/27%",
["Yobuhqt"] = "CB:36/3%RM:676/70%",
["Twicey"] = "UM:356/37%",
["Babaganoush"] = "CM:96/8%",
["Schliff"] = "RB:432/53%RM:679/72%",
["Parason"] = "RB:421/68%EM:671/80%",
["Draebi"] = "CT:66/24%EB:612/80%EM:913/94%",
["Grobos"] = "RB:376/50%EM:724/79%",
["Joani"] = "UM:111/48%",
["Bebbô"] = "RB:522/66%EM:758/80%",
["Tokototo"] = "UB:291/35%RM:510/54%",
["Shadowmoony"] = "CM:199/20%",
["Cocobien"] = "UB:322/41%CM:77/6%",
["Austos"] = "CM:89/7%",
["Arygós"] = "EB:682/91%EM:907/94%",
["Barlor"] = "CM:169/17%",
["Claudette"] = "RB:521/68%RM:669/69%",
["Nyyuu"] = "EB:601/78%EM:888/91%",
["Narindrella"] = "CB:190/23%UM:428/46%",
["Redir"] = "UM:355/36%",
["Milchschaum"] = "RB:393/51%EM:892/91%",
["Lederlumpi"] = "RM:524/55%",
["Mobydig"] = "UB:355/47%RM:468/51%",
["Löwenfreund"] = "CM:146/16%",
["Kistee"] = "RM:297/62%",
["Meisteryo"] = "RM:363/58%",
["Urblitz"] = "RB:417/57%RM:645/71%",
["Hanzø"] = "EB:623/79%EM:892/92%",
["Pasta"] = "RB:492/68%EM:703/77%",
["Deggad"] = "RM:334/62%",
["Hexyrexy"] = "UM:323/32%",
["Androido"] = "UM:387/42%",
["Atomkraft"] = "CB:99/11%UM:306/31%",
["Druidomat"] = "RM:180/52%",
["Bogo"] = "CM:92/7%",
["Röx"] = "EB:656/91%LM:914/97%",
["Bierzerker"] = "RB:574/73%EM:776/81%",
["Donnerbart"] = "EB:594/82%RM:649/72%",
["Opotojoe"] = "RB:563/74%EM:921/94%",
["Haihappen"] = "RM:593/61%",
["Dondarrion"] = "RB:375/73%RM:316/63%",
["Happyface"] = "CB:27/1%CM:36/3%",
["Roor"] = "CM:63/8%",
["Liriel"] = "UM:281/27%",
["Kacer"] = "UB:247/31%RM:510/56%",
["Gaschinger"] = "UM:176/47%",
["Nimnul"] = "CM:120/12%",
["Shadees"] = "RM:477/51%",
["Fawrik"] = "CM:103/9%",
["Bibô"] = "RM:340/65%",
["Bombie"] = "EB:654/85%LM:963/97%",
["Einsam"] = "CM:144/13%",
["Kickmybull"] = "RB:519/72%EM:678/75%",
["Lattenzaun"] = "UB:253/27%UM:414/42%",
["Rexgildo"] = "CB:65/7%UM:289/29%",
["Preachery"] = "UB:225/28%UM:373/40%",
["Dinturion"] = "UB:273/47%RM:307/52%",
["Jägor"] = "CM:131/11%",
["Nme"] = "RB:443/59%RM:679/74%",
["Jules"] = "RM:179/52%",
["Regentänz"] = "EB:512/82%EM:776/90%",
["Chrillzz"] = "RM:566/62%",
["Mykeme"] = "RB:375/50%RM:658/73%",
["Identity"] = "RB:569/73%EM:783/81%",
["Nepherepitou"] = "UB:201/25%UM:367/39%",
["Keltset"] = "EB:548/84%EM:567/79%",
["Philomele"] = "CB:38/3%EM:693/76%",
["Reci"] = "UT:69/26%CB:29/1%CM:60/8%",
["Karlie"] = "RB:556/71%EM:932/94%",
["Bloodyhéll"] = "UB:322/42%RM:548/60%",
["Krest"] = "RB:479/60%RM:544/58%",
["Imstalkêr"] = "RB:535/74%RM:616/68%",
["Colazero"] = "UB:376/47%RM:506/54%",
["Specki"] = "EB:521/76%EM:574/76%",
["Kuhlcha"] = "UB:295/37%RM:516/54%",
["Asunis"] = "RB:428/54%EM:834/86%",
["Ragzul"] = "EB:499/79%SM:990/99%",
["Shaina"] = "EB:597/82%EM:740/81%",
["Chewbaca"] = "EB:540/85%EM:814/93%",
["Redshire"] = "EB:635/83%EM:830/88%",
["Shahrzar"] = "RB:507/67%EM:763/82%",
["Niterocks"] = "CM:25/0%",
["Sýnh"] = "UM:303/31%",
["Dornboeschen"] = "UM:412/44%",
["Bevelle"] = "CM:238/24%",
["Aflexus"] = "UM:381/40%",
["Düsterklinge"] = "CM:42/3%",
["Shelaia"] = "CB:36/2%CM:151/13%",
["Yy"] = "UM:308/31%",
["Hellagun"] = "RM:477/50%",
["Stabbygal"] = "CM:69/6%",
["Ærperx"] = "UM:120/34%",
["Szardek"] = "CM:235/23%",
["Dkeyy"] = "UB:330/42%UM:331/33%",
["Kuchenmafia"] = "CB:109/11%UM:353/37%",
["Pápa"] = "CB:70/6%UM:275/28%",
["Neelu"] = "CB:90/10%CM:66/5%",
["Fimo"] = "LB:770/98%SM:982/99%",
["Nikuya"] = "RB:400/52%UM:453/47%",
["Xidan"] = "EB:519/76%EM:675/83%",
["Highwind"] = "EB:627/85%RM:583/65%",
["Lejorin"] = "UB:198/25%CM:131/12%",
["Novon"] = "CM:37/2%",
["Fuma"] = "EB:697/94%EM:797/86%",
["Hotnurse"] = "CM:163/15%",
["Pipipriest"] = "UB:363/49%RM:554/61%",
["Magemyday"] = "CM:66/5%",
["Layzi"] = "RM:472/55%",
["Quasel"] = "EB:669/89%EM:811/90%",
["Duduterror"] = "RM:255/58%",
["Annar"] = "CM:114/13%",
["Wichtelwicht"] = "CM:237/24%",
["Anvilarium"] = "EB:695/93%LM:922/95%",
["Mitti"] = "CM:133/12%",
["Karin"] = "RB:209/50%UM:425/46%",
["Howhigh"] = "EB:748/94%LM:984/98%",
["Scarlette"] = "UB:368/49%RM:567/62%",
["Inina"] = "CB:26/0%UM:369/39%",
["Taludien"] = "UM:253/28%",
["Zanem"] = "CB:93/11%CM:133/13%",
["Hundi"] = "UB:288/37%RM:469/52%",
["Mordux"] = "UM:416/45%",
["Viirsouel"] = "CB:53/4%RM:539/60%",
["Hinaui"] = "UB:192/46%RM:326/52%",
["Wickeed"] = "RB:503/66%EM:799/83%",
["Chhob"] = "EB:638/81%EM:931/93%",
["Idontcare"] = "UB:62/46%RM:371/61%",
["Fáyé"] = "RB:430/59%CM:146/13%",
["Radament"] = "RB:476/62%EM:831/86%",
["Sme"] = "UM:457/47%",
["Absolem"] = "CB:63/5%CM:131/11%",
["Hirngespinst"] = "EM:692/83%",
["Garm"] = "UB:386/49%EM:756/79%",
["Brunô"] = "CM:49/3%",
["Evangelium"] = "RB:371/73%LM:887/96%",
["Levyn"] = "EB:633/87%EM:802/87%",
["Holyshiät"] = "RB:428/58%EM:743/81%",
["Garond"] = "UM:296/29%",
["Lolalady"] = "CM:154/14%",
["Blackcarma"] = "EB:629/85%EM:859/89%",
["Twilek"] = "UB:331/42%RM:496/52%",
["Êman"] = "UB:366/48%EM:701/76%",
["Fleischberg"] = "LB:747/95%LM:925/96%",
["Mojoê"] = "EB:586/77%EM:781/82%",
["Hodor"] = "RB:362/67%EM:606/83%",
["Newhorizons"] = "CB:31/2%UM:329/34%",
["Dippz"] = "EB:714/91%LM:961/97%",
["Ksbaroness"] = "RB:537/71%EM:757/79%",
["Flayz"] = "EB:478/75%LM:916/96%",
["Dernatonia"] = "RM:483/53%",
["Thalés"] = "CM:9/12%",
["Paranøid"] = "CB:130/16%RM:500/55%",
["Polynia"] = "UM:306/31%",
["Tiduan"] = "RB:487/61%RM:640/68%",
["Gnomad"] = "EB:591/78%EM:866/90%",
["Undeadcookie"] = "CB:119/14%RM:503/55%",
["Jadda"] = "UB:164/32%UM:204/39%",
["Aderlass"] = "CM:143/13%",
["Chabalaya"] = "UM:156/47%",
["Mileydyrus"] = "UB:264/33%RM:584/60%",
["Tagelf"] = "EM:655/83%",
["Gaiapi"] = "CM:203/20%",
["Qio"] = "CB:31/2%UM:381/40%",
["Darja"] = "UM:272/27%",
["Zabpor"] = "UB:320/39%RM:638/68%",
["Rândalff"] = "CB:97/11%RM:651/69%",
["Jandariel"] = "RB:237/57%RM:491/72%",
["Helela"] = "CB:55/5%UM:256/26%",
["Cattibrie"] = "RM:251/53%",
["Quantúm"] = "EB:444/75%RM:272/55%",
["Thedarkside"] = "RB:402/71%EM:645/82%",
["Emme"] = "UT:175/26%EB:409/79%RM:670/61%",
["Draggore"] = "RM:168/52%",
["Besenwesen"] = "CM:27/0%",
["Douchebek"] = "RB:429/73%LM:956/98%",
["Apolleye"] = "UB:41/32%RM:241/55%",
["Dagorina"] = "RB:444/59%RM:674/69%",
["Zerâk"] = "EB:661/89%EM:896/94%",
["Araleia"] = "EB:650/88%EM:752/82%",
["Tibbels"] = "RB:538/69%RM:683/72%",
["Ironstorm"] = "EB:645/81%EM:766/80%",
["Stewié"] = "CB:31/2%CM:187/19%",
["Oohway"] = "CB:179/22%UM:312/30%",
["Wést"] = "EB:718/91%LM:940/95%",
["Anticheater"] = "UB:270/35%RM:485/53%",
["Rockatary"] = "RM:575/57%",
["Naizuruu"] = "UB:98/27%UM:470/49%",
["Strazn"] = "UM:394/42%",
["Hundehändler"] = "CM:119/10%",
["Sweeta"] = "UB:230/27%UM:418/44%",
["Thunderaxe"] = "RB:323/53%RM:453/67%",
["Pinko"] = "EB:595/78%EM:868/91%",
["Bachel"] = "EB:708/89%LM:966/97%",
["Triga"] = "CM:214/20%",
["Adramalech"] = "UM:286/29%",
["Rávén"] = "RB:443/58%RM:628/67%",
["Einzauberer"] = "RB:478/63%EM:765/78%",
["Priester"] = "RM:686/74%",
["Neytirî"] = "UM:355/37%",
["Evocator"] = "UM:128/33%",
["Brônan"] = "RM:570/61%",
["Saxxas"] = "RB:432/60%RM:622/69%",
["Laischor"] = "RM:544/59%",
["Arna"] = "CB:110/12%RM:450/63%",
["Cazí"] = "UT:339/44%RB:512/69%EM:762/80%",
["Lackii"] = "CB:161/19%CM:101/8%",
["Sadsong"] = "CB:44/4%CM:125/13%",
["Lamea"] = "UB:374/48%RM:684/71%",
["Gambey"] = "CM:142/16%",
["Zittse"] = "CB:149/18%RM:606/64%",
["Melowrld"] = "UM:318/32%",
["Derri"] = "EB:662/84%EM:856/88%",
["Ecco"] = "CM:193/19%",
["Íl"] = "RB:492/73%EM:613/79%",
["Regitoof"] = "RM:680/72%",
["Dollbohrer"] = "CB:67/7%UM:173/25%",
["Natsumeè"] = "CM:196/19%",
["Chamija"] = "RM:508/52%",
["Asgarothe"] = "UM:420/44%",
["Dimok"] = "CB:121/14%UM:372/37%",
["Craphunt"] = "RB:439/54%CM:161/19%",
["Lochhannes"] = "RB:365/72%EM:616/83%",
["Shavok"] = "UB:328/37%RM:577/62%",
["Zerron"] = "RB:231/62%RM:305/62%",
["Krümeltee"] = "CB:177/22%RM:286/65%",
["Rathgar"] = "UB:351/45%EM:774/81%",
["Fizzio"] = "UM:280/28%",
["Metatronos"] = "EB:672/91%EM:888/93%",
["Penetratoor"] = "UM:310/32%",
["Tastingoo"] = "EB:610/79%EM:809/84%",
["Demonix"] = "CB:137/16%UM:463/49%",
["Zulxar"] = "UB:301/39%RM:619/68%",
["Speg"] = "EB:673/92%LM:888/95%",
["Naleia"] = "CM:220/22%",
["Asunasan"] = "EB:667/86%LM:956/96%",
["Kronós"] = "EB:587/75%EM:760/80%",
["Niribor"] = "UB:293/37%RM:686/73%",
["Sevay"] = "UM:276/27%",
["Natsumee"] = "EB:656/88%EM:841/94%",
["Regyus"] = "EB:683/93%EM:784/85%",
["Sharechpar"] = "SB:779/99%LM:923/95%",
["Janne"] = "LB:748/97%LM:958/98%",
["Calay"] = "CB:27/0%",
["Kloppe"] = "CM:34/1%",
["Birne"] = "RB:416/55%RM:711/73%",
["Qxd"] = "CB:157/19%UM:339/35%",
["Dargos"] = "CB:53/5%UM:138/27%",
["Beronson"] = "UB:265/33%RM:629/67%",
["Chiox"] = "RB:429/59%RM:621/68%",
["Eefje"] = "CB:26/0%UM:436/45%",
["Vjosa"] = "UB:243/31%EM:796/86%",
["Alzura"] = "EB:608/84%EM:738/81%",
["Aicon"] = "RM:644/69%",
["Djuzi"] = "EB:581/76%EM:872/88%",
["Flag"] = "LB:707/95%LM:954/97%",
["Smud"] = "EB:677/86%EM:909/93%",
["Renarin"] = "EB:602/83%EM:787/85%",
["Thusa"] = "RM:495/51%",
["Wõnda"] = "UM:444/48%",
["Forsetics"] = "RB:201/50%RM:488/70%",
["Wolfgang"] = "RM:409/70%",
["Herrfischer"] = "UM:351/36%",
["Pömpel"] = "CM:205/20%",
["Krochi"] = "CM:103/21%",
["Mòrrìgan"] = "RB:485/64%EM:786/84%",
["Thelman"] = "CM:192/19%",
["Sadkiwi"] = "UM:292/29%",
["Sijn"] = "CM:143/13%",
["Everli"] = "RM:486/51%",
["Genja"] = "EB:677/91%LM:966/98%",
["Plattenhorst"] = "EB:638/87%EM:853/92%",
["Basler"] = "CB:183/22%RM:500/53%",
["Cowkîng"] = "RB:456/63%EM:866/91%",
["Sukina"] = "CM:136/12%",
["Unbreakable"] = "RB:447/56%EM:554/75%",
["Helpster"] = "RB:408/55%RM:650/72%",
["Nindi"] = "RM:622/56%",
["Darkzilla"] = "RB:552/72%EM:721/75%",
["Rôbkill"] = "UM:411/42%",
["Drux"] = "RB:421/53%EM:758/79%",
["Agroatze"] = "UB:350/45%RM:618/68%",
["Ollek"] = "RB:532/68%EM:842/87%",
["Kartum"] = "CM:200/20%",
["Yellor"] = "UB:252/27%RM:488/51%",
["Ømen"] = "CB:177/22%UM:454/49%",
["Zanko"] = "RB:541/71%EM:782/82%",
["Chaozz"] = "CM:43/6%",
["Natrium"] = "RM:521/53%",
["Finocolus"] = "UB:335/43%EM:749/81%",
["Tarnumi"] = "CM:65/5%",
["Terrycrews"] = "EB:591/75%EM:862/88%",
["Lysla"] = "EB:615/78%EM:810/84%",
["Sneese"] = "RB:414/56%RM:537/59%",
["Norm"] = "UM:416/44%",
["Ðpain"] = "RM:686/65%",
["Schænder"] = "UB:273/30%UM:334/33%",
["Ademar"] = "UB:281/35%RM:635/68%",
["Vulgrosch"] = "RB:279/54%RM:530/69%",
["Miscreated"] = "RM:608/65%",
["Nesreca"] = "UM:380/40%",
["Vinjoin"] = "UB:334/43%RM:594/65%",
["Umdoreel"] = "RM:511/54%",
["Jeffjay"] = "UB:394/47%RM:655/70%",
["Doomdruid"] = "UB:308/40%CM:140/13%",
["Ashaya"] = "RM:496/52%",
["Fâfnir"] = "RB:439/56%EM:831/81%",
["Eärendil"] = "UM:296/30%",
["Aggrokrank"] = "CB:120/14%",
["Mcchickeen"] = "UM:131/46%",
["Harhuck"] = "EB:597/83%RM:477/69%",
["Bummsi"] = "RB:520/72%EM:783/81%",
["Stunbert"] = "CB:86/10%UM:279/28%",
["Shaprie"] = "CM:101/8%",
["Cosentyx"] = "EB:584/81%EM:772/82%",
["Trellari"] = "CM:227/22%",
["Çøçåîñçøçø"] = "CB:61/7%UM:436/44%",
["Jésús"] = "CM:91/8%",
["Yoey"] = "UB:280/34%UM:432/45%",
["Maexshaman"] = "RB:252/58%",
["Dyrael"] = "RB:325/64%EM:720/89%",
["Lyuba"] = "CM:79/10%",
["Kassierer"] = "CB:57/6%CM:64/10%",
["Bratva"] = "EB:548/76%RM:647/71%",
["Rixor"] = "RB:466/60%EM:816/84%",
["Topkek"] = "CB:166/20%UM:397/42%",
["Desomalia"] = "RB:536/74%RM:499/55%",
["Zaubaclown"] = "EB:683/88%EM:854/90%",
["Tscharline"] = "CB:41/4%CM:150/13%",
["Kolga"] = "RB:490/68%EM:690/76%",
["Dombledore"] = "CM:58/4%",
["Arkanael"] = "RB:441/58%CM:54/4%",
["Charusar"] = "EB:550/84%EM:646/79%",
["Duderini"] = "EM:723/87%",
["Schlurke"] = "RB:445/57%RM:588/63%",
["Razzer"] = "UB:229/27%RM:618/66%",
["Holzklotz"] = "EB:624/85%EM:746/88%",
["Grisha"] = "CM:175/16%",
["Olfert"] = "RB:525/69%EM:884/90%",
["Oldiron"] = "EB:617/85%EM:774/84%",
["Faceless"] = "RB:537/69%EM:897/91%",
["Moes"] = "UB:284/37%EM:705/77%",
["Wengzakrit"] = "EB:597/78%EM:886/91%",
["Druidjana"] = "EB:643/87%EM:801/86%",
["Ikaroso"] = "CB:145/16%RM:484/54%",
["Voone"] = "UM:344/36%",
["Platano"] = "RM:660/72%",
["Hecke"] = "RM:336/62%",
["Albanovich"] = "CM:124/11%",
["Vozh"] = "UB:251/32%EM:725/79%",
["Casius"] = "EB:695/87%LM:944/95%",
["Mephy"] = "RM:334/60%",
["Mirakuru"] = "CB:125/15%RM:475/50%",
["Schwinger"] = "UB:349/40%RM:657/70%",
["Machslochov"] = "RB:415/54%RM:633/67%",
["Ansaran"] = "UB:296/36%EM:705/75%",
["Stunislav"] = "RB:492/63%EM:848/87%",
["Itsnogoody"] = "ET:387/92%RB:442/62%RM:533/66%",
["Xara"] = "CM:26/0%",
["Vegancook"] = "CM:36/3%",
["Assuan"] = "CM:59/7%",
["Wryyýyy"] = "CB:28/1%UM:305/31%",
["Sturmnichte"] = "RM:453/68%",
["Onomoje"] = "CM:91/11%",
["Mock"] = "EB:691/92%EM:880/92%",
["Brasco"] = "EB:622/84%EM:837/88%",
["Maxiboo"] = "UB:249/32%RM:640/70%",
["Mefjus"] = "RB:436/60%RM:518/56%",
["Dolvar"] = "RB:491/68%EM:758/82%",
["Fieber"] = "EB:626/81%EM:845/84%",
["Efvier"] = "UB:368/47%RM:580/62%",
["Yixx"] = "CB:223/24%UM:472/49%",
["Gremory"] = "RB:320/73%RM:265/62%",
["Launebär"] = "EB:559/78%RM:662/73%",
["Páff"] = "CM:32/2%",
["Poindexter"] = "RB:415/51%RM:523/55%",
["Emelya"] = "CB:198/24%UM:387/42%",
["Aleha"] = "EB:628/81%EM:814/84%",
["Bubaz"] = "RB:203/50%RM:335/60%",
["Nefertenia"] = "EB:586/82%EM:561/75%",
["Vaelestra"] = "EB:724/94%EM:908/94%",
["Mansdingo"] = "RB:558/71%EM:750/90%",
["Zratex"] = "RB:438/57%RM:635/66%",
["Fjörgin"] = "EB:635/80%EM:889/91%",
["Meloboss"] = "UB:344/45%EM:921/93%",
["Hanskasper"] = "UB:320/42%RM:239/52%",
["Melkfett"] = "UB:314/40%RM:612/63%",
["Thedy"] = "EB:538/75%RM:619/68%",
["Soras"] = "EB:547/76%EM:807/87%",
["Audhumla"] = "UB:355/47%UM:421/46%",
["Moshoxx"] = "RB:138/50%UM:271/45%",
["Telamon"] = "RB:312/63%RM:523/74%",
["Nèssuno"] = "UM:468/49%",
["Tenecy"] = "UB:237/29%RM:633/67%",
["Megamîlk"] = "UB:315/35%RM:685/73%",
["Mshen"] = "CB:202/24%RM:531/57%",
["Xnath"] = "RB:437/67%EM:575/76%",
["Apexias"] = "EB:665/86%EM:802/85%",
["Agathebauer"] = "RB:478/66%EM:787/86%",
["Heilgott"] = "RB:438/60%RM:613/68%",
["Fidli"] = "UB:318/36%RM:626/57%",
["Gönnjamina"] = "EB:589/78%EM:809/86%",
["Yumieko"] = "CM:62/5%",
["Bõllwerk"] = "UB:46/42%UM:70/36%",
["Songanku"] = "UB:291/37%RM:640/70%",
["Sinejay"] = "RM:337/56%",
["Fraufischer"] = "CM:65/6%",
["Bubbleboy"] = "RM:517/56%",
["Lanti"] = "CM:93/8%",
["Badaboom"] = "UB:277/35%RM:534/59%",
["Lorettchen"] = "CB:189/23%EM:787/84%",
["Adorius"] = "CM:79/7%",
["Ðelicz"] = "RB:464/74%EM:803/90%",
["Vieona"] = "RM:468/69%",
["Encor"] = "CM:57/6%",
["Mofujoe"] = "CM:74/11%",
["Ripinpeace"] = "CM:69/11%",
["Phasemelter"] = "RM:523/57%",
["Narzghul"] = "CM:67/8%",
["Yunoc"] = "CM:83/11%",
["Filliz"] = "CM:95/13%",
["Blackwind"] = "UM:96/30%",
["Priestär"] = "RM:621/68%",
["Rrhak"] = "UM:290/28%",
["Relios"] = "CM:54/4%",
["Dober"] = "CM:218/21%",
["Flyte"] = "EM:808/78%",
["Weltklasse"] = "CM:58/4%",
["Blurred"] = "CM:96/9%",
["Senioreygore"] = "RM:184/52%",
["Xaylia"] = "RB:484/64%EM:878/91%",
["Drklenkk"] = "CT:56/6%CB:55/5%RM:677/73%",
["Xaen"] = "RM:366/59%",
["Hums"] = "CB:137/16%RM:513/54%",
["Nirka"] = "UB:291/36%RM:613/65%",
["Shacal"] = "UB:373/46%EM:730/77%",
["Eboda"] = "RB:348/71%RM:436/71%",
["Danyy"] = "RM:612/66%",
["Kugelrubin"] = "EB:575/75%EM:910/93%",
["Zatch"] = "CM:205/20%",
["Jinzou"] = "CB:134/14%CM:213/20%",
["Zuber"] = "CB:61/6%UM:428/46%",
["Canibalista"] = "CB:27/1%UM:258/26%",
["Borgasch"] = "RB:259/52%RM:459/64%",
["Rollstuhl"] = "UB:283/35%UM:426/44%",
["Beeftatar"] = "RB:359/72%EM:548/78%",
["Mandikir"] = "CB:38/24%UM:276/27%",
["Shellyy"] = "UB:318/40%RM:636/66%",
["Atte"] = "RB:533/71%EM:910/92%",
["Finvara"] = "RB:508/70%RM:667/74%",
["Ohgirl"] = "CB:42/4%RM:549/58%",
["Elitekotzer"] = "UB:354/48%RM:550/61%",
["Schokocrits"] = "RB:565/74%EM:783/82%",
["Dêâd"] = "RB:411/56%EM:716/79%",
["Flodder"] = "UB:244/31%RM:511/56%",
["Tetriandoch"] = "UM:294/30%",
["Creasyx"] = "CM:167/16%",
["Fellesta"] = "RM:485/53%",
["Nassfutter"] = "UB:338/39%RM:568/61%",
["Uknowbra"] = "CM:175/23%",
["Lelif"] = "EB:587/75%EM:820/85%",
["Apøfis"] = "UB:280/34%EM:771/80%",
["Asu"] = "EB:481/80%EM:696/83%",
["Lunâ"] = "UB:252/44%RM:322/54%",
["Aristro"] = "RB:481/64%EM:855/90%",
["Rashkô"] = "UB:362/48%RM:515/56%",
["Shooxy"] = "UT:127/48%RB:496/65%EM:842/87%",
["Egei"] = "UB:232/29%RM:581/64%",
["Farquel"] = "CM:85/10%",
["Achos"] = "RB:487/65%EM:707/77%",
["Badcoow"] = "RM:342/56%",
["Dahbou"] = "RB:467/64%EM:729/80%",
["Slesker"] = "UM:339/36%",
["Schneeregen"] = "CM:90/7%",
["Pandemic"] = "UB:359/46%UM:443/45%",
["Otter"] = "RB:413/54%RM:454/52%",
["Oladin"] = "RB:523/72%RM:574/61%",
["Phaexx"] = "EB:625/86%EM:718/79%",
["Jeida"] = "CB:71/6%",
["Aberon"] = "EB:511/77%EM:732/86%",
["Underdog"] = "CB:48/16%RM:327/55%",
["Ðarkwarri"] = "CB:27/1%CM:51/0%",
["Kimí"] = "CB:150/18%RM:638/70%",
["Furiousz"] = "RB:483/63%RM:563/60%",
["Blechbüchse"] = "RB:415/64%RM:434/65%",
["Tnyx"] = "RB:469/73%EM:750/85%",
["Tzobix"] = "CM:99/8%",
["Stubbi"] = "CB:65/7%",
["Reborn"] = "RB:434/56%RM:697/72%",
["Coastinger"] = "RB:508/70%EM:805/84%",
["Vernichthor"] = "EB:504/80%EM:884/94%",
["Halogen"] = "LM:949/97%",
["Gnolly"] = "CM:105/14%",
["Serpico"] = "EM:415/77%",
["Thulwar"] = "EM:748/80%",
["Willsson"] = "EB:643/81%EM:927/94%",
["Ploix"] = "EB:409/75%EM:380/78%",
["Seyzo"] = "CM:25/0%",
["Vurac"] = "CB:126/15%RM:594/63%",
["Shesuj"] = "CM:221/22%",
["Bêelze"] = "CM:208/19%",
["Zuare"] = "CB:178/21%RM:576/64%",
["Ikeqt"] = "CB:39/3%CM:224/22%",
["Medi"] = "UB:348/46%EM:760/83%",
["Katliam"] = "CM:36/2%",
["Devilwarrior"] = "CM:26/0%",
["Weisserwolf"] = "CM:221/21%",
["Exilius"] = "UB:293/36%RM:611/65%",
["Filetsteak"] = "UM:373/40%",
["Dexxar"] = "CB:26/0%CM:97/8%",
["Zimtjoghurt"] = "CM:65/5%",
["Struggles"] = "RB:549/70%EM:767/81%",
["Jossie"] = "RM:446/67%",
["Windun"] = "UM:451/48%",
["Turican"] = "CB:60/7%CM:142/15%",
["Wappler"] = "CM:197/20%",
["Otzenknecht"] = "RM:383/63%",
["Denzel"] = "CM:146/13%",
["Kerigan"] = "CB:30/1%RM:219/50%",
["Harrakirri"] = "CM:32/2%",
["Yavannah"] = "EB:417/76%EM:673/85%",
["Sinura"] = "CB:76/8%CM:223/22%",
["Halystra"] = "RB:541/71%RM:738/72%",
["Nâno"] = "RB:321/61%RM:552/74%",
["Nuhra"] = "CB:157/19%CM:196/20%",
["Tamdhu"] = "CB:201/24%RM:622/66%",
["Meutjen"] = "CB:136/15%RM:495/54%",
["Räuberkalle"] = "EB:598/76%RM:571/61%",
["Xzr"] = "UM:325/32%",
["Noopra"] = "RM:599/64%",
["Lemke"] = "UM:336/35%",
["Vide"] = "RB:533/71%RM:668/73%",
["Nuadu"] = "UB:210/26%EM:778/81%",
["Luarneaor"] = "RB:403/55%RM:567/62%",
["Drderp"] = "RB:381/51%UM:290/30%",
["Ganko"] = "CB:116/14%RM:509/54%",
["Burein"] = "RB:459/57%EM:743/78%",
["Igotass"] = "CB:155/18%RM:253/55%",
["Ayara"] = "RM:550/61%",
["Kasala"] = "CM:29/1%",
["Blacktara"] = "RB:480/66%UM:393/42%",
["Stachelingo"] = "CB:106/11%UM:292/29%",
["Stimpack"] = "EB:709/89%LM:963/96%",
["Soulquanta"] = "RB:426/56%RM:658/72%",
["Zaika"] = "UB:87/40%RM:473/74%",
["Psy"] = "RB:301/59%EM:749/86%",
["Imbahexer"] = "UB:267/33%EM:797/79%",
["Cleriker"] = "CM:26/0%",
["Stardudu"] = "RM:468/73%",
["Lizaruh"] = "RM:313/63%",
["River"] = "RB:451/60%EM:701/76%",
["Magina"] = "RB:519/69%LM:931/95%",
["Stillé"] = "CM:165/15%",
["Melgara"] = "RB:440/54%EM:806/84%",
["Nevoo"] = "EB:668/91%EM:796/86%",
["Harrynipplez"] = "RB:489/63%EM:856/88%",
["Sinloah"] = "UB:359/46%RM:596/63%",
["Huntero"] = "CM:66/10%",
["Schoxone"] = "RM:531/57%",
["Tanker"] = "CB:56/6%UM:276/29%",
["Terone"] = "UB:66/30%UM:284/47%",
["Muhnter"] = "CB:55/8%",
["Alexia"] = "UM:388/41%",
["Oashi"] = "UB:374/48%RM:762/74%",
["Rotezora"] = "UM:432/47%",
["Sergejfährli"] = "RB:533/74%EM:817/85%",
["Tschabau"] = "CB:79/9%UM:345/35%",
["Schiripacha"] = "CB:177/21%CM:145/13%",
["Massiw"] = "CB:28/1%RM:344/57%",
["Fierna"] = "UB:290/36%UM:269/27%",
["Coolmoo"] = "RB:417/51%EM:779/82%",
["Extremoo"] = "EB:632/87%RM:568/63%",
["Wulfclaw"] = "UB:202/47%RM:442/63%",
["Peakas"] = "UM:383/40%",
["Baschtardo"] = "UB:240/30%CM:209/20%",
["Stahlfuchs"] = "CM:72/12%",
["Vynea"] = "CM:121/12%",
["Itsxijanlolg"] = "RB:477/66%EM:725/79%",
["Bakaprase"] = "UB:198/25%UM:405/43%",
["Piccololadro"] = "RB:488/63%RM:701/74%",
["Zachinger"] = "UM:273/27%",
["Nayton"] = "UM:245/25%",
["Nohope"] = "RB:465/64%EM:890/93%",
["Chúcký"] = "UM:392/40%",
["Einherier"] = "CM:98/12%",
["Nøir"] = "UM:248/25%",
["Yakuse"] = "RT:392/51%RB:441/58%RM:600/66%",
["Lahabrea"] = "RM:201/52%",
["Larothar"] = "CB:165/20%UM:326/33%",
["Cheefwiggen"] = "RB:475/63%EM:724/78%",
["Lucion"] = "EB:656/93%EM:673/94%",
["Naturalista"] = "RB:436/60%RM:535/60%",
["Keeoan"] = "RB:369/58%RM:400/62%",
["Ferkelbasher"] = "RB:421/53%RM:681/72%",
["Dvergal"] = "CB:175/21%CM:249/24%",
["Stayfree"] = "UB:341/45%EM:859/91%",
["Slickk"] = "RB:443/56%EM:765/80%",
["Kirelin"] = "CB:37/3%UM:337/33%",
["Gagatchar"] = "UB:262/45%RM:445/66%",
["Sycon"] = "CB:107/13%RM:586/63%",
["Dracó"] = "UB:203/25%UM:367/37%",
["Andî"] = "RB:492/62%EM:880/90%",
["Spiké"] = "CB:156/16%UM:339/34%",
["Ayanami"] = "RB:223/66%RM:468/73%",
["Seisma"] = "CB:169/21%CM:163/16%",
["Viperia"] = "UM:388/39%",
["Schadnus"] = "RB:402/53%EM:810/86%",
["Eaglex"] = "UB:202/25%RM:508/53%",
["Hatikwa"] = "UB:226/28%RM:525/58%",
["Colonia"] = "EB:620/85%LM:930/96%",
["Heval"] = "CB:170/20%CM:220/22%",
["Myxxz"] = "UB:332/41%EM:723/76%",
["Sèéd"] = "CM:64/8%",
["Tweef"] = "EM:636/83%",
["Velorock"] = "UB:383/46%RM:667/71%",
["Boneswirl"] = "CB:157/19%RM:613/65%",
["Cerebellum"] = "RB:505/74%EM:872/93%",
["Lachsanwalt"] = "CB:34/3%RM:586/62%",
["Aliyaeh"] = "RB:434/59%RM:663/73%",
["Khârn"] = "CB:189/23%RM:490/54%",
["Zheranya"] = "UM:400/43%",
["Mingdoh"] = "CB:66/7%UM:332/33%",
["Cruncha"] = "EM:846/85%",
["Epana"] = "RB:139/51%EM:551/78%",
["Drdead"] = "CB:114/14%RM:617/64%",
["Mevra"] = "CM:177/16%",
["Jaluka"] = "CM:173/17%",
["Zonges"] = "UM:273/28%",
["Kiranol"] = "CB:104/11%UM:333/35%",
["Bloodwalk"] = "CB:182/23%RM:516/57%",
["Rampue"] = "CB:103/11%RM:399/62%",
["Mueslee"] = "RB:429/54%EM:784/82%",
["Weickisan"] = "UM:337/35%",
["Ràphkal"] = "EM:606/78%",
["Duzk"] = "UM:289/30%",
["Glbn"] = "CM:70/9%",
["Zombilein"] = "UM:50/41%",
["Mâlia"] = "UB:302/37%EM:710/75%",
["Zamba"] = "CM:179/16%",
["Zeetox"] = "CB:128/15%UM:339/37%",
["Zonkc"] = "UM:379/39%",
["Medrac"] = "RB:439/57%RM:560/55%",
["Teliriox"] = "RB:390/51%RM:608/67%",
["Bängbus"] = "UB:260/33%RM:572/63%",
["Nekromanti"] = "CB:100/12%UM:287/29%",
["Duuh"] = "CB:33/2%CM:149/15%",
["Kampfbulle"] = "UM:514/47%",
["Inhura"] = "UB:299/38%RM:583/60%",
["Hidataru"] = "RB:460/61%RM:657/72%",
["Fratzenhans"] = "CM:207/21%",
["Nalura"] = "RB:467/64%EM:738/81%",
["Troana"] = "EB:672/90%EM:792/85%",
["Krabbenhans"] = "RB:466/61%RM:623/64%",
["Magierbub"] = "CB:152/19%EM:686/75%",
["Sternfeuer"] = "RB:540/72%LM:971/98%",
["Bandu"] = "RB:464/61%EM:832/88%",
["Atriss"] = "EB:599/79%EM:865/90%",
["Heilig"] = "CM:115/9%",
["Fleckchen"] = "UB:253/32%EM:681/75%",
["Ilyan"] = "CM:175/16%",
["Timelolx"] = "EB:672/91%LM:969/98%",
["Lifetap"] = "RM:630/61%",
["Busujima"] = "EB:605/84%LM:927/97%",
["Tschüwack"] = "UM:445/49%",
["Biubb"] = "UB:279/36%RM:508/58%",
["Wackler"] = "RB:417/55%RM:666/69%",
["Marsyas"] = "RB:452/59%EM:852/88%",
["Luaná"] = "UB:215/26%RM:516/57%",
["Runia"] = "CB:76/8%UM:264/27%",
["Shinedead"] = "EB:618/85%EM:908/94%",
["Yayo"] = "CB:164/17%UM:276/28%",
["Lilo"] = "CB:111/13%RM:514/56%",
["Zaar"] = "RB:564/74%EM:912/92%",
["Zentrion"] = "UB:146/29%RM:333/55%",
["Bloodomen"] = "CM:125/14%",
["Cochones"] = "CM:180/19%",
["Règgy"] = "RM:601/64%",
["Xago"] = "CB:30/1%UM:425/43%",
["Optik"] = "CB:57/5%RM:555/59%",
["Razael"] = "UB:72/39%RM:371/62%",
["Hugovladi"] = "CM:222/22%",
["Mordrac"] = "CM:153/15%",
["Gallan"] = "RB:453/62%EM:706/77%",
["Vik"] = "RB:307/65%EM:648/80%",
["Demain"] = "UB:344/46%UM:266/36%",
["Neptis"] = "CB:146/17%UM:449/47%",
["Pytoxx"] = "EB:403/78%EM:724/76%",
["Nu"] = "EB:582/80%RM:633/70%",
["Mowli"] = "UB:285/34%RM:582/62%",
["Xylia"] = "UM:328/34%",
["Djaxs"] = "RM:614/66%",
["Snuri"] = "UM:354/36%",
["Talash"] = "RB:525/70%EM:819/83%",
["Ditsch"] = "UB:362/42%RM:671/72%",
["Stranox"] = "EB:670/89%EM:697/77%",
["Viggo"] = "CM:82/8%",
["Haylar"] = "CM:121/10%",
["Tipid"] = "CM:187/18%",
["Hune"] = "UB:285/35%RM:700/74%",
["Morgol"] = "RB:428/55%RM:595/61%",
["Panamera"] = "CB:136/15%UM:432/47%",
["Doriana"] = "UM:386/39%",
["Spucke"] = "CB:189/22%RM:514/55%",
["Ixy"] = "EB:605/89%LM:923/98%",
["Jackâl"] = "CM:123/18%",
["Shâkêrr"] = "EB:462/79%EM:750/91%",
["Zulu"] = "RB:418/54%EM:746/78%",
["Æco"] = "UB:151/37%UM:255/30%",
["Vittorio"] = "RB:412/53%RM:622/61%",
["Donsa"] = "UB:239/30%RM:527/58%",
["Mephi"] = "CB:31/2%CM:77/7%",
["Aiween"] = "RB:553/73%RM:763/74%",
["Aweco"] = "CM:63/10%",
["Kuhpido"] = "RM:505/53%",
["Winterlove"] = "UB:290/32%UM:356/36%",
["Strudelvari"] = "RB:434/60%EM:799/83%",
["Fontanis"] = "CB:175/21%RM:541/60%",
["Gesl"] = "CB:41/4%UM:290/29%",
["Sikari"] = "CB:180/22%RM:562/62%",
["Hoggerson"] = "RB:313/52%RM:438/72%",
["Zergi"] = "CM:116/13%",
["Nuktuk"] = "CM:198/18%",
["Aggressiv"] = "CM:25/0%",
["Sergiovonrio"] = "CM:58/8%",
["Gunjah"] = "CM:62/5%",
["Pharrazon"] = "CM:38/2%",
["Gaenyrim"] = "UM:304/31%",
["Tenadris"] = "CM:172/16%",
["Larí"] = "CB:99/10%RM:484/54%",
["Gø"] = "UM:159/44%",
["Norbemi"] = "CB:57/4%RM:636/70%",
["Erdengott"] = "CM:67/5%",
["Masi"] = "UB:301/39%UM:258/26%",
["Bubbel"] = "UB:228/27%EM:732/77%",
["Snikels"] = "EB:633/86%EM:908/94%",
["Sharkha"] = "EB:586/75%EM:921/92%",
["Divinetingle"] = "EB:577/80%RM:490/53%",
["Daploy"] = "RB:455/62%RM:559/62%",
["Nicoletta"] = "UB:300/39%EM:798/81%",
["Aiwa"] = "UB:343/43%UM:409/46%",
["Kentarius"] = "EB:553/79%EM:737/87%",
["Nodamag"] = "RB:109/51%RM:322/70%",
["Mørr"] = "EB:555/77%RM:591/66%",
["Aroma"] = "EB:600/76%EM:932/93%",
["Dribra"] = "UM:329/34%",
["Nedsterben"] = "UB:342/45%RM:533/59%",
["Ikendra"] = "CB:61/7%CM:152/15%",
["Rabotki"] = "CM:189/18%",
["Irocki"] = "CM:54/3%",
["Rascallz"] = "RB:487/68%EM:835/88%",
["Vexxa"] = "UB:261/31%RM:695/74%",
["Mambi"] = "UB:354/44%RM:554/59%",
["Sanctiest"] = "RB:508/70%EM:687/76%",
["Bachél"] = "RM:514/53%",
["Riggz"] = "RB:535/70%EM:884/91%",
["Faeles"] = "EB:618/85%EM:793/86%",
["Morg"] = "RB:528/67%EM:882/87%",
["Moiraine"] = "UB:314/41%UM:265/27%",
["Lolablue"] = "CM:56/5%",
["Runedur"] = "CM:211/21%",
["Lasuna"] = "EB:668/92%LM:925/97%",
["Doroteja"] = "CT:59/5%EB:567/83%SM:983/99%",
["Lynpinyin"] = "CM:29/1%",
["Narghul"] = "RM:551/61%",
["Therok"] = "CB:160/20%",
["Flobbel"] = "UB:252/32%CM:212/20%",
["Pixiee"] = "CB:102/12%CM:124/19%",
["Raznar"] = "CB:96/11%RM:439/51%",
["Bearus"] = "RB:229/62%RM:494/73%",
["Venty"] = "RM:354/57%",
["Corvin"] = "EM:527/77%",
["Isputsftw"] = "CB:65/5%CM:200/19%",
["Scarabell"] = "CM:89/7%",
["Scárlette"] = "CM:99/10%",
["Mesterium"] = "CB:180/22%UM:363/37%",
["Zirkusaffe"] = "CM:82/7%",
["Stepbystep"] = "CB:59/6%CM:76/12%",
["Maxentius"] = "UB:289/36%RM:676/72%",
["Heix"] = "UB:300/38%EM:792/83%",
["Multiheal"] = "UB:362/49%UM:314/32%",
["Alpaka"] = "CB:166/20%RM:683/72%",
["Héman"] = "RM:693/64%",
["Tähti"] = "UM:414/45%",
["Semibah"] = "EB:722/93%SM:996/99%",
["Rubos"] = "UT:244/45%UB:175/34%RM:545/58%",
["Eleron"] = "UM:396/40%",
["Geta"] = "UM:185/27%",
["Elbiron"] = "RM:537/61%",
["Ydalia"] = "CM:31/1%",
["Butzlumbe"] = "CM:36/3%",
["Gällariewe"] = "RB:412/53%EM:805/80%",
["Krazlhuber"] = "RB:469/62%RM:659/63%",
["Lexblood"] = "CM:91/8%",
["Dergast"] = "CB:153/16%RM:601/64%",
["Friik"] = "CB:112/14%RM:557/57%",
["Gexless"] = "CM:194/18%",
["Bróx"] = "UB:381/45%RM:672/61%",
["Todesfuchs"] = "UB:314/38%UM:354/36%",
["Redc"] = "UM:157/31%",
["Braawl"] = "CB:54/6%RM:535/57%",
["Agnas"] = "CM:86/7%",
["Surang"] = "EB:475/79%EM:786/89%",
["Ronkor"] = "RB:364/68%EM:764/89%",
["Tyx"] = "UM:402/41%",
["Xordak"] = "CM:146/14%",
["Zaaja"] = "UB:132/39%RM:344/53%",
["Noobskilled"] = "UB:251/32%UM:316/33%",
["Ariv"] = "UB:249/31%UM:457/46%",
["Atohi"] = "RB:498/66%RM:683/72%",
["Húmmaa"] = "UB:292/38%RM:536/58%",
["Mimieux"] = "CM:50/4%",
["Ozujsko"] = "CB:52/5%UM:291/29%",
["Cayrae"] = "CB:149/17%EM:690/75%",
["Messerchen"] = "UB:342/42%EM:705/75%",
["Nyrak"] = "CB:88/8%EM:831/88%",
["Gloomy"] = "CM:222/22%",
["Snep"] = "UB:276/33%CM:118/17%",
["Ambrella"] = "CM:25/0%",
["Supershiva"] = "EB:605/79%EM:905/91%",
["Rony"] = "RB:498/65%UM:424/43%",
["Fianna"] = "RM:461/50%",
["Duncan"] = "CM:43/2%",
["Tjorn"] = "CB:65/7%UM:348/35%",
["Viranda"] = "RB:399/50%EM:708/75%",
["Kokolores"] = "UB:272/34%EM:881/89%",
["Hmpf"] = "CM:119/17%",
["Ghanta"] = "RM:526/52%",
["Tarlugh"] = "CM:195/18%",
["Asardin"] = "RB:399/52%RM:648/69%",
["Noppes"] = "UM:315/33%",
["Tankor"] = "UB:120/25%",
["Bohm"] = "UB:219/27%CM:193/18%",
["Darea"] = "RB:517/72%RM:527/59%",
["Uludac"] = "CB:155/19%RM:626/69%",
["Ashanti"] = "RB:492/65%EM:836/83%",
["Taras"] = "CB:94/11%RM:520/55%",
["Corfax"] = "CB:65/7%CM:66/8%",
["Garsin"] = "UM:317/31%",
["Aerthes"] = "EB:454/78%EM:772/88%",
["Gnomarit"] = "EB:575/75%EM:844/87%",
["Straly"] = "EB:591/82%LM:952/97%",
["Burnbabyburn"] = "UB:356/48%CM:231/22%",
["Pasanova"] = "CB:29/1%UM:310/32%",
["Seratox"] = "CB:107/23%RM:290/51%",
["Astrax"] = "CM:30/1%",
["Obergärig"] = "CM:141/13%",
["Môrgana"] = "UB:384/49%UM:442/45%",
["Healsusi"] = "RB:485/67%EM:841/90%",
["Chegmeg"] = "UB:300/33%EM:819/79%",
["Mikekobe"] = "RB:229/57%RM:320/61%",
["Zzmm"] = "CB:170/20%RM:467/51%",
["Swaý"] = "CB:171/20%RM:622/69%",
["Mantid"] = "RB:148/63%RM:249/71%",
["Hikomo"] = "CB:47/5%EM:801/84%",
["Jasdrib"] = "UM:311/30%",
["Cyberabit"] = "CB:97/21%EM:837/82%",
["Nyxomia"] = "UM:369/38%",
["Igsde"] = "EM:731/76%",
["Dénon"] = "CB:157/19%RM:564/62%",
["Trikzoørz"] = "CB:185/22%EM:800/83%",
["Coldhearted"] = "UB:331/43%EM:848/89%",
["Mohku"] = "RM:286/59%",
["Scabbers"] = "CM:27/0%",
["Vancleave"] = "UB:399/48%RM:519/55%",
["Vue"] = "CB:47/5%RM:505/51%",
["Tenzu"] = "CM:243/23%",
["Fabixe"] = "CB:170/21%RM:678/70%",
["Hogî"] = "UB:303/38%EM:731/77%",
["Eisfach"] = "UB:372/49%RM:581/64%",
["Ghostinside"] = "RB:417/68%SM:990/99%",
["Sén"] = "UB:74/32%UM:260/46%",
["Baroschabo"] = "CM:28/1%",
["Sahory"] = "EB:661/85%LM:951/96%",
["Bruteshot"] = "RB:395/51%EM:857/88%",
["Gornek"] = "CB:117/12%RM:71/53%",
["Kankra"] = "CB:111/13%RM:613/66%",
["Junday"] = "UM:329/34%",
["Magiclolli"] = "UM:319/41%",
["Ame"] = "UM:263/27%",
["Gsix"] = "CB:28/1%UM:289/29%",
["Icebot"] = "CM:131/12%",
["Matzorex"] = "CB:54/5%CM:194/18%",
["Freazy"] = "EB:628/86%EM:711/81%",
["Neborath"] = "RM:232/51%",
["Lindita"] = "CM:77/6%",
["Verowen"] = "RM:302/52%",
["Nazrhan"] = "RB:406/51%RM:722/69%",
["Rawrlnx"] = "EB:722/91%LM:990/98%",
["Snoogel"] = "CB:71/8%RM:524/57%",
["Syzias"] = "CM:91/8%",
["Bakterus"] = "CM:52/3%",
["Mirum"] = "UM:366/37%",
["Stinky"] = "CB:65/7%RM:511/51%",
["Stokey"] = "RM:283/57%",
["Polpot"] = "CB:158/19%CM:56/5%",
["Xerni"] = "EB:604/83%",
["Jnnestroy"] = "UB:232/29%RM:489/53%",
["Schubs"] = "CB:155/18%UM:289/48%",
["Heishin"] = "RB:471/62%RM:654/72%",
["Monchy"] = "RM:619/64%",
["Gspusi"] = "RM:534/59%",
["Badmiss"] = "CM:130/12%",
["Morêna"] = "RB:487/67%EM:772/84%",
["Sörbel"] = "EB:594/77%EM:926/94%",
["Schima"] = "CB:135/14%UM:274/28%",
["Rágnárök"] = "CB:158/17%RM:641/58%",
["Hmk"] = "CB:17/10%UM:352/37%",
["Rashgore"] = "CB:150/18%RM:554/57%",
["Designflaw"] = "RB:488/62%EM:855/84%",
["Designflaws"] = "UM:354/38%",
["Cepheus"] = "CM:30/1%",
["Louf"] = "UM:329/33%",
["Fairyo"] = "UB:230/49%RM:442/63%",
["Kolske"] = "RB:425/58%RM:484/53%",
["Pankillymon"] = "CM:145/14%",
["Kiwy"] = "EB:612/85%EM:735/80%",
["Lunté"] = "CB:66/7%UM:361/38%",
["Dirtyrodrigz"] = "RB:514/65%EM:846/88%",
["Bahari"] = "CB:205/21%RM:490/51%",
["Amoc"] = "CB:47/5%EM:868/89%",
["Cassian"] = "CB:71/6%RM:515/59%",
["Poschkel"] = "CB:56/6%UM:367/36%",
["Dirtyjoe"] = "UB:307/41%RM:632/65%",
["Rystomp"] = "RM:493/52%",
["Sheridien"] = "UB:363/45%EM:885/88%",
["Zyz"] = "UB:234/25%RM:531/56%",
["Pinkybill"] = "CM:219/20%",
["Tobias"] = "CB:29/2%EM:762/88%",
["Nocturnah"] = "CM:174/17%",
["Crystallica"] = "UM:404/43%",
["Materu"] = "UB:340/44%RM:603/66%",
["Madisson"] = "RB:391/53%RM:534/61%",
["Nao"] = "RM:480/50%",
["Cregges"] = "UM:408/43%",
["Naivs"] = "RM:208/50%",
["Tâlin"] = "CB:28/1%UM:366/37%",
["Sanno"] = "UM:281/28%",
["Milkacoo"] = "RM:480/52%",
["Gnik"] = "RB:401/53%EM:883/90%",
["Bandurash"] = "CM:85/7%",
["Jauria"] = "CB:71/8%RM:608/65%",
["Glebstar"] = "CM:62/4%",
["Laragon"] = "UB:353/47%UM:375/46%",
["Maxíme"] = "UM:184/39%",
["Sando"] = "UM:147/29%",
["Aureljia"] = "CB:33/2%UM:335/35%",
["Oldvadder"] = "CB:35/2%UM:398/43%",
["Ehllana"] = "CB:101/10%UM:390/42%",
["Andrurion"] = "RB:569/72%RM:743/70%",
["Zuendi"] = "UB:247/31%RM:581/63%",
["Dravolos"] = "RB:391/53%UM:419/45%",
["Moluke"] = "UB:276/35%RM:466/51%",
["Jacknagar"] = "CB:65/11%UM:236/43%",
["Metall"] = "RB:399/50%UM:345/35%",
["Orgrimn"] = "UM:320/33%",
["Saigona"] = "CM:182/17%",
["Numbaone"] = "RB:508/67%EM:781/82%",
["Acelot"] = "CM:146/13%",
["Roundup"] = "UB:271/34%EM:825/84%",
["Tobey"] = "CB:88/10%EM:737/75%",
["Melvyn"] = "UB:370/46%RM:662/62%",
["Rawor"] = "CM:54/4%",
["Ictur"] = "RB:480/66%EM:762/80%",
["Justfarm"] = "CM:181/17%",
["Askr"] = "RB:148/52%EM:697/88%",
["Azuel"] = "CM:74/5%",
["Freank"] = "UM:235/43%",
["Zorex"] = "CM:105/9%",
["Manîel"] = "CM:105/8%",
["Evo"] = "CB:105/12%RM:654/68%",
["Stahlsaege"] = "UM:125/25%",
["Satrena"] = "CM:25/0%",
["Lighty"] = "RB:396/53%RM:559/61%",
["Toarek"] = "UM:379/38%",
["Som"] = "CM:33/4%",
["Cyk"] = "RT:182/59%EB:485/89%EM:371/76%",
["Pawny"] = "UM:195/38%",
["Acidftw"] = "RB:516/68%EM:741/80%",
["Sterbehilfe"] = "CB:81/7%CM:120/17%",
["Granthok"] = "CB:25/0%",
["Aristasius"] = "CM:67/10%",
["Kieana"] = "CB:90/19%CM:70/12%",
["Lupi"] = "RM:522/58%",
["Arcardos"] = "CM:63/8%",
["Bévox"] = "CM:193/19%",
["Bytex"] = "CB:99/12%CM:180/18%",
["Elowen"] = "RM:616/66%",
["Evaria"] = "CB:121/13%RM:337/60%",
["Villayn"] = "CB:30/2%RM:477/50%",
["Spackî"] = "CB:64/7%",
["Frêakêzêud"] = "CB:139/17%",
["Dárk"] = "CM:244/24%",
["Manissia"] = "CM:67/14%",
["Skimmy"] = "UM:263/26%",
["Lynis"] = "EM:746/78%",
["Evendell"] = "RB:439/54%EM:840/82%",
["Ceryse"] = "UB:268/34%RM:697/73%",
["Zurana"] = "UB:90/41%UM:196/45%",
["Abû"] = "CB:51/5%",
["Colosso"] = "RB:448/61%EM:853/90%",
["Hueva"] = "CB:5/6%UM:286/48%",
["Draw"] = "UB:161/42%",
["Bronam"] = "RB:418/64%EM:769/91%",
["Fireflies"] = "UB:51/36%RM:315/54%",
["Iserack"] = "UB:263/33%EM:902/93%",
["Azrajar"] = "UB:306/34%EM:781/82%",
["Denerin"] = "UB:200/25%RM:525/54%",
["Vodon"] = "UM:190/37%",
["Cente"] = "UB:398/48%RM:635/68%",
["Athradast"] = "CB:180/21%UM:391/42%",
["Surcer"] = "RB:531/74%EM:782/83%",
["Ziljana"] = "UM:342/38%",
["Wiwalos"] = "CM:127/11%",
["Pyraser"] = "UM:248/25%",
["Aragiora"] = "CB:58/6%",
["Merthal"] = "UB:360/45%RM:665/71%",
["Dâchilla"] = "RB:469/68%RM:671/74%",
["Hautex"] = "RM:255/55%",
["Orpheuz"] = "RB:421/55%RM:602/66%",
["Melorah"] = "UB:351/47%RM:663/72%",
["Grogmash"] = "EB:558/77%EM:736/76%",
["Teldir"] = "CM:91/8%",
["Zondra"] = "RM:580/62%",
["Verixia"] = "CM:121/11%",
["Chillywilly"] = "UM:268/27%",
["Utheran"] = "EM:803/77%",
["Malee"] = "CB:37/2%UM:324/34%",
["Tejina"] = "EM:890/90%",
["Kyokushinkay"] = "CB:90/9%EM:833/87%",
["Avji"] = "RM:315/59%",
["Horm"] = "RB:415/54%RM:600/64%",
["Tesmodin"] = "UM:84/28%",
["Nightsblood"] = "RB:533/68%EM:781/81%",
["Dunin"] = "UM:288/29%",
["Chhot"] = "CM:110/13%",
["Karlek"] = "RB:332/54%EM:537/78%",
["Azrilock"] = "UM:316/32%",
["Haumichgrün"] = "CM:57/7%",
["Byakuyaa"] = "CB:51/5%EM:807/82%",
["Pumilumi"] = "CM:141/13%",
["Almaro"] = "CM:162/15%",
["Ucon"] = "RM:696/71%",
["Vinter"] = "RM:534/58%",
["Heimdali"] = "CM:247/24%",
["Liebeszauber"] = "RM:575/61%",
["Yackhammer"] = "CM:142/13%",
["Arthur"] = "RB:426/58%RM:624/68%",
["Roods"] = "RB:222/61%RM:243/57%",
["Ophelja"] = "CB:131/14%UM:442/48%",
["Hulkwüst"] = "CB:25/0%CM:64/5%",
["Swanson"] = "CB:112/12%RM:775/74%",
["Nìghtwìsh"] = "RB:385/52%RM:652/71%",
["Yûkî"] = "UB:297/39%UM:60/43%",
["Dye"] = "RB:441/60%RM:617/68%",
["Babashrimp"] = "UM:330/34%",
["Bolzen"] = "CB:117/12%EM:831/81%",
["Zwiebler"] = "UB:362/48%EM:766/83%",
["Ahmoxe"] = "RM:298/58%",
["Unkillable"] = "RM:430/62%",
["Bloodstriker"] = "CB:162/17%RM:681/73%",
["Zecks"] = "RM:652/70%",
["Gratisrasur"] = "UB:240/25%UM:433/45%",
["Coras"] = "CM:212/20%",
["Duotto"] = "UM:429/45%",
["Gumble"] = "RB:478/66%EM:768/83%",
["Saufignom"] = "UM:345/43%",
["Korio"] = "CM:28/1%",
["Tandrodor"] = "CM:54/3%",
["Axxas"] = "CM:197/18%",
["Joyce"] = "CB:2/0%RM:486/65%",
["Faden"] = "CM:32/1%",
["Ensler"] = "RM:743/71%",
["Nexuz"] = "UB:152/46%EM:665/80%",
["Pewdycat"] = "CT:29/5%CB:172/20%RM:468/55%",
["Veragnar"] = "RM:598/64%",
["Whizzo"] = "CB:29/1%UM:367/39%",
["Leonidás"] = "RM:572/63%",
["Beagle"] = "CM:111/9%",
["Kashyk"] = "CB:27/1%RM:683/62%",
["Wundbrand"] = "CB:80/9%CM:217/22%",
["Ðust"] = "EB:688/86%LM:978/97%",
["Ikaju"] = "LM:930/98%",
["Hulkita"] = "CM:100/12%",
["Magelee"] = "CM:93/8%",
["Timboslice"] = "CB:52/8%CM:86/24%",
["Fexxe"] = "EM:733/84%",
["Geras"] = "CB:109/13%CM:184/18%",
["Baumkuh"] = "CM:120/14%",
["Mumford"] = "CB:122/13%CM:26/0%",
["Aerowen"] = "RB:495/65%EM:735/77%",
["Strumpfpower"] = "CM:88/8%",
["Sonichaze"] = "RB:450/57%UM:486/48%",
["Askima"] = "CM:64/5%",
["Icêr"] = "CB:30/2%CM:108/9%",
["Stellagosa"] = "RB:483/67%EM:716/79%",
["Arkandro"] = "CB:69/5%CM:239/23%",
["Dolcemente"] = "UM:376/39%",
["Leyandra"] = "CB:91/10%UM:308/39%",
["Savoy"] = "CM:235/23%",
["Dorotja"] = "UM:382/37%",
["Làrcas"] = "CB:85/9%RM:484/51%",
["Citan"] = "UB:320/36%RM:209/51%",
["Tash"] = "UM:293/30%",
["Malea"] = "CM:26/0%",
["Nor"] = "CM:112/10%",
["Nheyana"] = "RM:417/50%",
["Sugami"] = "CB:45/3%UM:334/35%",
["Leticiia"] = "CM:55/4%",
["Bööser"] = "UB:351/47%EM:897/93%",
["Zuluzar"] = "UM:365/40%",
["Ceekay"] = "EB:589/82%EM:797/92%",
["Vandura"] = "CM:52/3%",
["Vaduras"] = "CM:73/11%",
["Hektôr"] = "CM:96/11%",
["Yoze"] = "CB:37/2%EM:344/75%",
["Freezyeasy"] = "CM:64/5%",
["Cageface"] = "UB:361/47%LM:961/97%",
["Bluemchen"] = "UM:132/46%",
["Skoroc"] = "CM:27/0%",
["Uhura"] = "RB:448/61%EM:877/92%",
["Santanya"] = "RB:424/55%EM:789/77%",
["Rooki"] = "UB:221/26%EM:873/86%",
["Evildevil"] = "CB:124/15%EM:781/79%",
["Raziellè"] = "UB:371/47%UM:484/49%",
["Jastra"] = "EB:672/90%LM:919/95%",
["Wux"] = "EB:618/81%LM:944/96%",
["Flamerlamer"] = "RB:542/70%LM:963/96%",
["Joiz"] = "UB:241/30%RM:618/65%",
["Devíl"] = "CM:241/24%",
["Anubys"] = "RB:498/64%EM:809/79%",
["Kiaa"] = "RM:537/61%",
["Bólgor"] = "CB:118/14%EM:749/81%",
["Gyozá"] = "CB:39/4%RM:724/69%",
["Feuerlachs"] = "UM:450/49%",
["Elodian"] = "CM:107/11%",
["Niils"] = "RM:221/56%",
["Aphrael"] = "CM:35/1%",
["Ultrasteak"] = "UB:293/49%RM:430/72%",
["Greenforest"] = "UB:218/27%RM:512/54%",
["Kishnon"] = "UB:328/44%RM:620/64%",
["Adalon"] = "UB:294/38%CM:215/21%",
["Grantus"] = "CB:161/20%UM:423/43%",
["Ghoststalker"] = "UM:331/34%",
["Zzonk"] = "CB:56/5%RM:549/59%",
["Multsch"] = "CB:150/18%RM:660/63%",
["Flunsbert"] = "UB:269/29%RM:609/55%",
["Ibuprohen"] = "UM:437/44%",
["Guinzzo"] = "RM:548/71%",
["Modunreal"] = "RM:548/53%",
["Turbz"] = "CB:145/17%RM:521/56%",
["Huma"] = "RB:138/50%RM:258/66%",
["Satyrius"] = "UM:393/40%",
["Pixinity"] = "CB:85/8%UM:311/32%",
["Sorrin"] = "UB:276/34%RM:661/69%",
["Irena"] = "CB:28/0%UM:355/37%",
["Yema"] = "CB:26/0%UM:392/42%",
["Ichnicht"] = "CB:29/1%UM:412/42%",
["Karjuna"] = "CB:40/4%RM:583/62%",
["Pristazie"] = "UB:336/45%EM:759/81%",
["Yawg"] = "RB:324/61%EM:706/83%",
["Zolo"] = "RB:396/52%RM:478/54%",
["Xárdaz"] = "UM:389/41%",
["Várrok"] = "CM:99/12%",
["Messerjoke"] = "CB:137/16%RM:615/66%",
["Naturjunge"] = "RB:131/51%EM:733/87%",
["Randalff"] = "LB:755/95%EM:877/90%",
["Armany"] = "UM:432/47%",
["Genkka"] = "UM:245/25%",
["Fenyala"] = "CM:141/12%",
["Heshes"] = "CM:162/19%",
["Shadowfox"] = "CM:64/6%",
["Sertorius"] = "RB:514/65%RM:489/51%",
["Yoinked"] = "CB:179/19%UM:518/47%",
["Biquick"] = "CB:75/7%UM:242/33%",
["Déxter"] = "CB:166/19%CM:183/17%",
["Skypia"] = "UM:497/49%",
["Kolkam"] = "RM:663/70%",
["Stoney"] = "UB:237/25%RM:771/73%",
["Marthrankus"] = "EM:876/88%",
["Fetznschedl"] = "UB:330/38%EM:810/84%",
["Randomize"] = "CB:73/8%RM:463/53%",
["Dragoneye"] = "RM:562/60%",
["Kumpelblasé"] = "EM:785/83%",
["Delirana"] = "CM:88/8%",
["Evý"] = "CB:222/23%RM:632/68%",
["Schmigelo"] = "CB:159/19%RM:528/56%",
["Frabor"] = "CB:76/8%UM:262/26%",
["Estonia"] = "CM:66/9%",
["Sruk"] = "RB:546/69%EM:766/80%",
["Umbracor"] = "UB:378/49%EM:828/84%",
["Warriyo"] = "UB:262/28%RM:728/68%",
["Dent"] = "CM:67/11%",
["Scarcat"] = "CM:210/21%",
["Pastens"] = "UB:265/34%RM:447/53%",
["Spyki"] = "CM:102/8%",
["Deadknife"] = "CM:64/10%",
["Grandydrui"] = "CB:34/18%EM:354/76%",
["Coldmoe"] = "CM:53/3%",
["Andrijana"] = "RM:462/68%",
["Sagat"] = "EM:818/79%",
["Taheia"] = "EM:881/87%",
["Ironflame"] = "UB:281/36%EM:889/93%",
["Nouki"] = "CB:221/23%EM:859/84%",
["Ahrschlock"] = "UB:242/30%RM:758/74%",
["Procne"] = "RM:580/65%",
["Ultraschall"] = "UB:352/47%EM:780/81%",
["Nullnummer"] = "UM:417/42%",
["Schiffy"] = "EM:898/93%",
["Razør"] = "CM:144/13%",
["Neô"] = "UB:280/36%EM:855/87%",
["Randiel"] = "CM:82/7%",
["Everlook"] = "CM:127/20%",
["Yagon"] = "CM:90/9%",
["Houwzma"] = "CM:111/9%",
["Gidlir"] = "CB:80/7%UM:438/47%",
["Raorkon"] = "CM:132/13%",
["Toastlos"] = "CB:70/8%RM:649/69%",
["Elaraa"] = "RB:430/59%UM:336/43%",
["Bongopeter"] = "UM:344/34%",
["Radisli"] = "UM:286/29%",
["Isotopia"] = "UM:327/40%",
["Eichelprinz"] = "CM:244/24%",
["Rongkongkoma"] = "EM:610/83%",
["Adres"] = "UM:327/33%",
["Bombae"] = "RM:577/63%",
["Kúpfer"] = "RM:769/73%",
["Kampari"] = "EB:545/84%EM:770/90%",
["Krassux"] = "RB:511/65%EM:874/86%",
["Kumen"] = "EB:618/79%EM:816/84%",
["Berryblack"] = "CB:132/16%",
["Scorlash"] = "CB:67/8%UM:275/31%",
["Snitchhunter"] = "CM:76/6%",
["Adohigor"] = "EB:521/82%EM:869/94%",
["Damíen"] = "CB:45/5%CM:193/19%",
["Sass"] = "UB:237/30%EM:852/87%",
["Schehsen"] = "CB:163/17%CM:172/18%",
["Magred"] = "RB:497/69%RM:554/63%",
["Stoffrotze"] = "EB:573/76%LM:942/95%",
["Kiwimanshare"] = "UB:44/26%",
["Lebowski"] = "EM:883/88%",
["Kazuke"] = "CB:55/5%UM:257/26%",
["Fearchen"] = "UM:214/46%",
["Dezarus"] = "UM:365/39%",
["Dinimeer"] = "RB:493/64%EM:785/81%",
["Slayu"] = "UM:391/41%",
["Hühler"] = "RM:530/60%",
["Zacapa"] = "RM:490/50%",
["Donnatella"] = "EM:452/79%",
["Peppina"] = "CM:110/13%",
["Nimh"] = "CM:162/20%",
["Bronzé"] = "RM:574/64%",
["Tschabo"] = "RM:472/65%",
["Hellîon"] = "RM:699/73%",
["Trickie"] = "RM:630/65%",
["Dale"] = "CB:73/7%CM:121/15%",
["Schalun"] = "CB:171/20%CM:121/15%",
["Yrrghar"] = "RB:182/57%EM:615/77%",
["Jomie"] = "EM:761/75%",
["Judgementals"] = "RM:604/64%",
["Anett"] = "RM:619/68%",
["Herausragend"] = "EM:822/80%",
["Allpounder"] = "RM:490/53%",
["Cryonic"] = "RM:695/71%",
["Etown"] = "UM:301/34%",
["Shizzei"] = "EM:647/78%",
["Goslow"] = "UM:329/42%",
["Grollos"] = "CM:50/0%",
["Loranis"] = "RM:700/72%",
["Beradun"] = "RM:502/50%",
["Zayali"] = "RM:603/67%",
["Thornado"] = "RM:667/69%",
["Librarian"] = "RM:602/59%",
["Caltor"] = "UT:179/27%RB:410/53%UM:536/49%",
["Ähnemähnemuh"] = "RM:467/53%",
["Totoriina"] = "UM:196/29%",
["Sarkhanar"] = "RM:724/71%",
["Zülkarneyn"] = "CM:142/22%",
["Toxikus"] = "UM:326/33%",
["Hauaz"] = "CT:51/16%UB:237/30%RM:624/66%",
["Ovlaz"] = "UM:339/33%",
["Chirasu"] = "UM:230/28%",
["Blyatberry"] = "RM:720/74%",
["Treelover"] = "UB:110/45%EM:566/83%",
["Creel"] = "CM:28/1%",
["Brutalius"] = "EM:833/81%",
["Hiredtofired"] = "CB:129/14%CM:88/18%",
["Ronjana"] = "UM:407/49%",
["Lampriest"] = "UM:299/39%",
["Jeilesau"] = "RM:594/53%",
["Ghend"] = "UM:45/34%",
["Salyva"] = "UB:284/35%EM:820/81%",
["Simsalabum"] = "RB:545/72%RM:473/53%",
["Owlman"] = "EM:782/81%",
["Kazing"] = "EM:850/93%",
["Flekzn"] = "UB:312/41%EM:856/90%",
["Basthord"] = "EM:875/88%",
["Novagore"] = "RM:733/70%",
["Snowflake"] = "EM:910/92%",
["Moesha"] = "CB:65/7%RM:726/71%",
["Prev"] = "UB:209/25%EM:862/91%",
["Shonx"] = "EM:684/86%",
["Shiranja"] = "EM:821/82%",
["Daán"] = "EM:897/89%",
["Rawberry"] = "EM:932/94%",
["Aellin"] = "CB:73/9%EM:912/91%",
["Gwenny"] = "UB:244/26%EM:847/83%",
["Snatter"] = "EM:824/80%",
["Hobo"] = "EM:799/77%",
["Ginsey"] = "CB:175/20%EM:906/90%",
["Gauntlet"] = "EM:882/87%",
["Seilei"] = "EM:786/75%",
["Priay"] = "LM:981/98%",
["Kalroggi"] = "LM:986/98%",
["Prestar"] = "UM:332/42%",
["Stampfmampf"] = "UM:386/37%",
["Matiro"] = "UM:374/40%",
["Eraxil"] = "RM:395/73%",
["Gerdi"] = "UM:243/29%",
["Isomatratze"] = "RM:372/67%",
["Klabâuter"] = "UB:319/36%EM:828/80%",
["Childöt"] = "EM:807/78%",
["Lilek"] = "RB:397/50%EM:888/88%",
["Ceraton"] = "RB:388/50%RM:716/74%",
["Geileschnege"] = "EM:739/75%",
["Trikzoórz"] = "RM:623/65%",
["Arashy"] = "LM:948/96%",
["Coconut"] = "UM:419/49%",
["Alatariela"] = "RB:468/64%EM:821/87%",
["Bearhunter"] = "EM:873/87%",
["Palon"] = "UM:434/48%",
["Kayona"] = "RB:422/57%EM:719/77%",
["Rysona"] = "EM:823/80%",
["Coldsword"] = "LM:892/96%",
["Torgaddon"] = "RM:587/62%",
["Iambrusco"] = "EM:793/84%",
["Vaevictis"] = "CB:20/21%EM:699/82%",
["Nickie"] = "EM:804/79%",
["Mudi"] = "RB:501/70%EM:768/86%",
["Crîx"] = "UM:298/31%",
["Pati"] = "EM:888/90%",
["Forresttrump"] = "UM:214/30%",
["Faca"] = "UT:88/27%RB:375/53%EM:820/85%",
["Rubb"] = "RM:622/59%",
["Borim"] = "EM:737/78%",
["Huntermain"] = "EB:600/78%EM:894/90%",
["Ashaa"] = "EM:787/83%",
["Ziziqi"] = "EB:634/82%EM:907/91%",
["Khaly"] = "EB:551/77%LM:976/98%",
["Canty"] = "UB:210/25%EM:828/81%",
["Solidsnek"] = "RM:552/53%",
["Criega"] = "UM:401/38%",
["Aeperios"] = "UB:244/31%EM:908/92%",
["Roshi"] = "UB:131/27%EM:759/90%",
["Liegewiese"] = "RB:513/71%LM:965/98%",
["Chairy"] = "CB:34/2%RM:442/51%",
["Aurongl"] = "CB:74/8%UM:396/40%",
["Basil"] = "RM:686/71%",
["Dotmyface"] = "CM:52/1%",
["Qberry"] = "RM:534/52%",
["Aksal"] = "CM:51/0%",
["Laisure"] = "UM:191/25%",
["Corgar"] = "RM:739/72%",
["Roccorod"] = "EM:901/90%",
["Dompromus"] = "EM:799/77%",
["Gewaltbereit"] = "RM:662/62%",
["Whitepearl"] = "EM:826/87%",
["Croalis"] = "EM:773/76%",
["Kälte"] = "RM:470/53%",
["Kelthos"] = "CM:63/13%",
["Grood"] = "EM:898/93%",
["Aev"] = "RM:577/55%",
["Suno"] = "EM:763/78%",
["Nimesis"] = "UM:391/42%",
["Karnea"] = "EM:794/84%",
["Insané"] = "EM:825/81%",
["Bvbtom"] = "EM:752/80%",
["Cazador"] = "UM:475/48%",
["Rhaegal"] = "RM:688/66%",
["Norbert"] = "CB:106/11%EM:860/90%",
["Gwyra"] = "RM:730/69%",
["Daggett"] = "RM:765/72%",
["Llorten"] = "CT:25/0%CB:28/0%RM:626/69%",
["Nitronomic"] = "EM:814/83%",
["Kikikind"] = "UM:422/44%",
["Siwa"] = "CB:45/6%EM:638/84%",
["Halbarox"] = "RM:676/73%",
["Thanøs"] = "RM:438/72%",
["Retsiemsuah"] = "RM:658/72%",
["Rohdiamant"] = "CM:64/13%",
["Torsoto"] = "CB:192/20%RM:697/64%",
["Eltumor"] = "UM:278/32%",
["Ssus"] = "UM:413/43%",
["Chons"] = "CM:55/4%",
["Veox"] = "CB:54/6%RM:574/52%",
["Kammerjäger"] = "RM:517/51%",
["Síndbad"] = "CM:51/0%",
["Eleshami"] = "RM:322/54%",
["Cindarellâ"] = "RM:498/58%",
["Thasdingo"] = "RB:504/70%EM:890/92%",
["Keltullis"] = "CM:56/5%",
["Shiftriver"] = "CB:161/18%EM:399/80%",
["Pyroka"] = "RM:679/70%",
["Pûlse"] = "EM:851/86%",
["Míilch"] = "EM:689/87%",
["Koî"] = "CM:6/10%",
["Krischa"] = "EM:804/82%",
["Wastelw"] = "CB:33/3%EM:761/90%",
["Maniac"] = "CB:35/3%LM:942/95%",
["Truhe"] = "CB:50/3%EM:719/83%",
["Bullä"] = "CB:29/2%RM:745/70%",
["Rübe"] = "RM:653/69%",
["Vespíra"] = "EM:777/75%",
["Bhairava"] = "RM:706/67%",
["Obdachlos"] = "UM:77/37%",
["Borgzul"] = "CM:213/24%",
["Imstupid"] = "CM:70/11%",
["Helferovski"] = "CM:139/21%",
["Rommy"] = "CM:65/8%",
["Brâyzee"] = "UB:288/32%RM:511/54%",
["Mefias"] = "CM:51/1%",
["Deadlyprince"] = "UM:286/36%",
["Støney"] = "RM:494/54%",
["Delsere"] = "CB:113/13%RM:523/57%",
["Marlfare"] = "LM:959/96%",
["Typhex"] = "RM:595/56%",
["Seiryuu"] = "EM:863/90%",
["Talis"] = "EM:770/81%",
["Hexdrinker"] = "EM:909/94%",
["Blutig"] = "RM:770/73%",
["Arcidel"] = "UM:366/43%",
["Gadjo"] = "RM:549/59%",
["Allasaya"] = "CM:158/20%",
["Tschizuu"] = "RM:711/66%",
["Stroly"] = "RM:693/64%",
["Vanillacøke"] = "RM:276/51%",
["Ameona"] = "CM:62/8%",
["Mirgri"] = "EM:659/79%",
["Sephiro"] = "UM:252/27%",
["Vorrn"] = "CB:37/3%UM:103/33%",
["Chybrid"] = "EB:683/92%LM:952/97%",
["Rackz"] = "CM:54/4%",
["Jimjupiter"] = "EM:860/86%",
["Zorrlon"] = "CM:170/24%",
["Tadess"] = "UM:424/49%",
["Spiritz"] = "EM:866/86%",
["Norega"] = "RM:652/71%",
["Gróshak"] = "RM:779/74%",
["Crescx"] = "EM:812/80%",
["Soeren"] = "CM:89/13%",
["Drugsrbadmka"] = "RM:676/73%",
["Cinic"] = "EM:743/76%",
["Jawas"] = "UM:395/40%",
["Schmandman"] = "EM:893/91%",
["Bréak"] = "RM:750/72%",
["Weareone"] = "RM:653/64%",
["Shilandra"] = "CB:57/4%UM:182/26%",
["Tsunai"] = "LM:901/96%",
["Thraku"] = "EM:787/82%",
["Morrohg"] = "RM:769/74%",
["Chichu"] = "RM:525/52%",
["Bangbumbang"] = "EM:843/84%",
["Komafred"] = "LM:932/96%",
["Supra"] = "EM:814/80%",
["Krackz"] = "RM:684/70%",
["Scara"] = "RM:721/67%",
["Mehlsack"] = "RM:738/71%",
["Apnotix"] = "EM:837/88%",
["Jezbel"] = "CB:34/2%EM:843/89%",
["Syntux"] = "RM:688/71%",
["Glatzel"] = "RB:462/61%",
["Bullinc"] = "EM:827/86%",
["Atharia"] = "CM:180/24%",
["Nixbesseres"] = "CB:111/11%UM:356/45%",
["Jebaitor"] = "RM:602/64%",
["Ogim"] = "CM:55/4%",
["Shainaah"] = "RT:150/55%RB:497/66%RM:626/70%",
["Victory"] = "EM:777/81%",
["Feanturi"] = "UB:300/39%LM:925/96%",
["Kaipi"] = "CB:92/20%EM:767/90%",
["Starcitizen"] = "EB:503/81%EM:571/79%",
["Gannondorf"] = "UB:272/47%EM:500/76%",
["Trâcee"] = "EM:874/86%",
["Fraegi"] = "UB:219/27%EM:828/84%",
["Wizzywuzz"] = "RM:718/73%",
["Mockery"] = "CB:140/17%RM:730/74%",
["Artósh"] = "CB:85/10%CM:128/19%",
["Mdrockz"] = "UM:248/29%",
["Jorah"] = "UM:248/42%",
["Wikisneakz"] = "UM:440/44%",
["Mordecai"] = "CB:92/10%EM:740/75%",
["Aikhjarto"] = "CM:48/5%",
["Jabbawookie"] = "LM:911/95%",
["Zeitfresser"] = "RM:233/54%",
["Epochal"] = "EM:774/79%",
["Acorus"] = "UM:238/29%",
["Permafrosty"] = "RM:641/67%",
["Enzel"] = "RM:81/53%",
["Dralina"] = "UM:236/32%",
["Invidia"] = "CM:56/4%",
["Beratyz"] = "CM:109/13%",
["Yava"] = "RM:217/60%",
["Sigon"] = "CM:50/0%",
["Thandrael"] = "UM:384/47%",
["Nâka"] = "UM:239/28%",
["Hardway"] = "RM:327/64%",
["Backside"] = "UM:413/43%",
["Xajah"] = "CM:100/13%",
["Trixeline"] = "CM:60/7%",
["Payn"] = "CM:167/19%",
["Iceandfire"] = "CM:51/0%",
["Sadona"] = "CM:108/14%",
["Feralis"] = "UM:429/45%",
["Blödername"] = "UM:435/48%",
["Haschi"] = "RM:687/67%",
["Yai"] = "RM:262/50%",
["Nietsnelees"] = "UM:201/26%",
["Haube"] = "UM:252/34%",
["Donnerhammer"] = "UM:337/33%",
["Elven"] = "UM:291/38%",
["Tjen"] = "UB:385/49%RM:737/72%",
["Tscherld"] = "UM:402/41%",
["Aers"] = "RB:518/68%EM:835/83%",
["Morung"] = "LM:932/96%",
["Enviep"] = "LM:899/95%",
["Gewürzmichl"] = "RM:592/57%",
["Nier"] = "EM:902/91%",
["Halbarad"] = "CB:63/7%RM:502/56%",
["Smóke"] = "UM:333/42%",
["Meathor"] = "UM:475/48%",
["Piolock"] = "CM:175/22%",
["Barschzumund"] = "UM:486/48%",
["Cannio"] = "EM:717/88%",
["Kuschelbärli"] = "UM:292/37%",
["Analogkid"] = "LM:987/98%",
["Miako"] = "EM:817/81%",
["Schnuckeline"] = "CM:160/23%",
["Salica"] = "EM:793/84%",
["Primetime"] = "EM:739/75%",
["Balesh"] = "RM:656/68%",
["Vangandr"] = "EM:660/85%",
["Skoux"] = "UB:282/35%EM:805/80%",
["Bórg"] = "RM:539/53%",
["Draluss"] = "RM:550/72%",
["Bajie"] = "RM:471/74%",
["Mjay"] = "UM:381/40%",
["Nandale"] = "UM:355/38%",
["Neomy"] = "CB:199/24%UM:392/48%",
["Matheo"] = "UM:451/42%",
["Cátaclysm"] = "CM:56/5%",
["Rexzhot"] = "CB:39/3%",
["Holypoly"] = "RM:434/62%",
["Veya"] = "EM:771/76%",
["Despahito"] = "RM:758/71%",
["Bachêl"] = "EM:673/80%",
["Waterboy"] = "LM:972/97%",
["Lina"] = "SM:992/99%",
["Morsch"] = "CM:187/24%",
["Trap"] = "RB:545/72%SM:1015/99%",
["Rûz"] = "LM:962/96%",
["Pheobe"] = "RB:430/57%SM:1032/99%",
["Grendel"] = "UM:177/25%",
["Suqi"] = "CB:27/0%EM:869/87%",
["Dscharls"] = "RM:456/54%",
["Lapulga"] = "UM:175/25%",
["Lokhy"] = "EM:892/89%",
["Ålucard"] = "UM:291/34%",
["Kazoo"] = "EM:885/88%",
["Nightlily"] = "RM:723/69%",
["Idokan"] = "CM:89/13%",
["Coxxi"] = "EM:747/76%",
["Turbolader"] = "RM:515/57%",
["Tassenboden"] = "RM:637/58%",
["Myballtz"] = "CB:65/7%EM:879/87%",
["Volibär"] = "UB:230/28%UM:367/44%",
["Garoah"] = "CM:173/22%",
["Ikade"] = "RM:671/71%",
["Shasuj"] = "LM:958/96%",
["Avalius"] = "CB:31/2%EM:781/79%",
["Hecht"] = "RM:435/72%",
["Kanastras"] = "RM:528/58%",
["Nirinu"] = "EM:899/91%",
["Ninio"] = "UT:72/25%EM:763/75%",
["Potthässlich"] = "RM:694/71%",
["Soyl"] = "EM:776/79%",
["Araca"] = "EM:887/92%",
["Mash"] = "EM:835/81%",
["Stachus"] = "UM:320/41%",
["Serjo"] = "EM:762/77%",
["Flüchtel"] = "EM:769/75%",
["Moinkball"] = "EM:888/88%",
["Carrow"] = "RM:672/65%",
["Sickz"] = "RM:751/71%",
["Nimdraug"] = "CB:180/22%EM:834/85%",
["Arrâs"] = "EM:874/89%",
["Krawoth"] = "RB:408/55%UM:451/49%",
["Starsky"] = "RM:665/69%",
["Nisl"] = "EM:762/86%",
["Hutch"] = "RM:755/73%",
["Sôul"] = "LM:955/96%",
["Heilíg"] = "UB:306/40%LM:912/95%",
["Legengerry"] = "EM:790/84%",
["Skillsgnom"] = "CB:179/22%LM:950/96%",
["Unlogisch"] = "RM:583/53%",
["Firststrike"] = "EM:926/93%",
["Ezgame"] = "UB:346/45%LM:972/97%",
["Inpekta"] = "UM:396/48%",
["Badrhari"] = "CB:131/15%RM:756/72%",
["Novalana"] = "RM:455/52%",
["Bobele"] = "RM:569/54%",
["Jibo"] = "RM:522/51%",
["Áleczá"] = "UM:300/39%",
["Fatfred"] = "CM:222/24%",
["Notze"] = "UM:461/43%",
["Sotec"] = "UM:188/37%",
["Tec"] = "RM:295/67%",
["Tylerlockett"] = "RM:340/52%",
["Kannte"] = "CB:32/3%RM:247/56%",
["Ferl"] = "UM:137/47%",
["Zyzz"] = "UM:194/25%",
["Bawz"] = "UM:245/29%",
["Zöpfchen"] = "UM:422/40%",
["Zso"] = "UM:225/27%",
["Blunatix"] = "UM:517/47%",
["Chadog"] = "UM:296/35%",
["Bellcranel"] = "RM:528/51%",
["Xarin"] = "CM:191/24%",
["Ziffy"] = "EM:879/89%",
["Kongstrong"] = "LM:953/98%",
["Jafar"] = "EM:737/75%",
["Nevershamx"] = "UM:303/49%",
["Cýna"] = "UM:295/34%",
["Ragen"] = "RM:744/71%",
["Elendriau"] = "CB:63/7%EM:900/90%",
["Lilimarleen"] = "RB:545/71%EM:785/78%",
["Unkraut"] = "RB:257/52%EM:793/90%",
["Oss"] = "EM:846/83%",
["Novarockz"] = "EM:911/92%",
["Crimex"] = "EM:850/88%",
["Asger"] = "RB:555/73%EM:929/94%",
["Oitsmagic"] = "CB:164/20%RM:604/64%",
["Ownalisa"] = "EM:928/93%",
["Consânesco"] = "RM:424/51%",
["Manalishi"] = "UB:332/41%EM:862/85%",
["Forensic"] = "RM:671/61%",
["Paic"] = "CM:120/10%",
["Akardis"] = "UB:251/32%RM:515/56%",
["Shusaj"] = "UM:442/41%",
["Tuhrok"] = "RM:531/56%",
["Zencruiser"] = "CM:53/3%",
["Niju"] = "CM:103/13%",
["Schamíkaze"] = "CM:14/8%",
["Gallitor"] = "UM:189/27%",
["Cheesybâlls"] = "UM:283/32%",
["Âirmaxx"] = "CM:53/3%",
["Nidana"] = "EM:837/82%",
["Thaeldrun"] = "RM:681/74%",
["Birkk"] = "EM:786/75%",
["Shinjuku"] = "CM:63/10%",
["Seishu"] = "EM:814/79%",
["Leshrac"] = "RM:607/64%",
["Xeslana"] = "RM:268/58%",
["Tiaara"] = "UM:436/45%",
["Gennesis"] = "RM:764/72%",
["Phnxx"] = "UM:440/46%",
["Olliwain"] = "EM:820/79%",
["Achefa"] = "EM:803/85%",
["Frozenkenta"] = "EM:746/76%",
["Xhadon"] = "RM:766/72%",
["Orjatar"] = "RM:696/67%",
["Asklepíos"] = "UM:375/46%",
["Jainaria"] = "CB:58/6%",
["Trübeszwickl"] = "RM:478/56%",
["Bigbore"] = "EM:729/76%",
["Cipag"] = "RM:765/72%",
["Hierox"] = "RM:635/62%",
["Drunkenfist"] = "RM:719/74%",
["Shamandalíe"] = "CM:99/12%",
["Greenm"] = "EM:620/77%",
["Icaruz"] = "EM:823/84%",
["Kaaya"] = "UM:362/45%",
["Layk"] = "RM:665/72%",
["Mianmai"] = "UM:212/30%",
["Vazeck"] = "EM:728/85%",
["Zazou"] = "RM:484/54%",
["Cojack"] = "EM:843/88%",
["Abrácadaver"] = "RM:577/62%",
["Drifftnix"] = "EM:853/85%",
["Blueburn"] = "CT:33/5%UB:278/37%RM:454/53%",
["Yikes"] = "EM:668/86%",
["Reso"] = "UM:466/43%",
["Takaa"] = "UM:122/37%",
["Px"] = "CM:51/1%",
["Kuljo"] = "UM:343/38%",
["Ellada"] = "UM:545/49%",
["Ghostie"] = "EM:508/79%",
["Sikh"] = "RM:698/72%",
["Hulkhodn"] = "CB:194/23%EM:830/87%",
["Smokey"] = "UB:366/47%EM:840/84%",
["Trayana"] = "CB:60/5%UM:337/41%",
["Cinaar"] = "RM:538/59%",
["Jahna"] = "CM:68/11%",
["Skyzz"] = "RM:615/60%",
["Shoty"] = "UM:355/37%",
["Azara"] = "EM:784/83%",
["Valur"] = "CM:178/23%",
["Kraggi"] = "UB:75/40%",
["Namica"] = "UB:246/31%",
["Drboarder"] = "RM:548/54%",
["Sâmy"] = "CM:25/0%",
["Nowayout"] = "CB:128/14%CM:206/20%",
["Eto"] = "UB:209/26%UM:380/46%",
["Schluki"] = "UB:234/29%EM:814/84%",
["Narroy"] = "RB:494/73%EM:743/87%",
["Nický"] = "RB:384/52%EM:730/79%",
["Machomei"] = "UB:287/48%RM:522/72%",
["Zernascher"] = "CB:90/10%UM:335/36%",
["Peew"] = "CB:157/19%CM:91/8%",
["Vogelscheche"] = "CB:28/1%CM:217/22%",
["Maeve"] = "UB:248/30%CM:50/0%",
["Mcduff"] = "EB:577/80%EM:833/88%",
["Sethfly"] = "CM:66/11%",
["Neonata"] = "UB:128/44%RM:403/60%",
["Dulthar"] = "RB:507/70%EM:530/80%",
["Monâc"] = "RB:491/68%EM:908/94%",
["Suplex"] = "CB:205/22%RM:567/61%",
["Criticalpew"] = "CB:49/5%CM:45/4%",
["Romgor"] = "CB:91/11%UM:280/32%",
["Brandor"] = "RM:541/59%",
["Bòóah"] = "UM:453/42%",
["Kolia"] = "CB:173/21%",
["Zauberklöte"] = "CB:126/15%RM:663/69%",
["Purgestar"] = "UB:247/32%EM:875/91%",
["Eznuk"] = "CM:57/6%",
["Rhonix"] = "RM:524/57%",
["Snig"] = "CM:57/6%",
["Oktha"] = "EM:736/85%",
["Abseitsfalle"] = "EM:828/92%",
["Delorien"] = "EM:709/76%",
["Unverfrorn"] = "UM:375/45%",
["Basicstyle"] = "EM:858/89%",
["Kazgaroth"] = "RM:406/70%",
["Thermolia"] = "RM:266/50%",
["Alane"] = "RM:477/54%",
["Twinkies"] = "RM:543/54%",
["Akram"] = "CM:70/11%",
["Kuhu"] = "EM:568/83%",
["Centrus"] = "RM:428/62%",
["Crudus"] = "UM:297/33%",
["Reaper"] = "UM:236/28%",
["Daiki"] = "RM:594/66%",
["Bügler"] = "EM:757/79%",
["Alesky"] = "CM:64/9%",
["Tzango"] = "CM:169/21%",
["Need"] = "UM:423/40%",
["Nasca"] = "EM:920/93%",
["Raxxa"] = "UM:337/38%",
["Sohirim"] = "EM:857/89%",
["Gilhalad"] = "RB:472/65%LM:964/98%",
["Yaprak"] = "RM:586/63%",
["Schrabbljoe"] = "RM:397/73%",
["Nrgparty"] = "RM:782/74%",
["Kcijones"] = "RM:781/74%",
["Camonuss"] = "RM:466/53%",
["Âx"] = "UM:246/29%",
["Morroes"] = "UB:325/37%RM:509/54%",
["Tyssa"] = "UM:443/45%",
["Dschenzi"] = "RM:505/56%",
["Sorahja"] = "EM:624/78%",
["Nonchalant"] = "LM:969/98%",
["Linali"] = "EM:911/91%",
["Blutzeuge"] = "LM:974/97%",
["Chocc"] = "CB:164/18%EM:797/84%",
["Ziegenchef"] = "SM:999/99%",
["Flobbgrim"] = "RM:674/65%",
["Schustax"] = "RM:677/72%",
["Roxxtwo"] = "UM:224/30%",
["Umbrik"] = "RM:367/58%",
["Rahzel"] = "RM:659/68%",
["Hansknecht"] = "UM:204/30%",
["Ifraah"] = "UM:338/38%",
["Chopdawop"] = "CM:58/6%",
["Lauerlenz"] = "CM:131/19%",
["Tschehp"] = "RM:684/70%",
["Thrallduin"] = "UM:217/26%",
["Kinq"] = "UM:398/41%",
["Galga"] = "CM:183/17%",
["Rubaka"] = "UM:373/40%",
["Hk"] = "RM:535/53%",
["Frecksy"] = "EM:794/79%",
["Zeeko"] = "CM:136/14%",
["Acidftl"] = "CB:40/4%RM:710/65%",
["Grünerdaumen"] = "EM:783/85%",
["Sháni"] = "RM:539/57%",
["Nyrea"] = "RM:604/57%",
["Relics"] = "EB:603/83%EM:862/91%",
["Kaiora"] = "CB:150/17%UM:254/25%",
["Purple"] = "UM:254/34%",
["Karapedia"] = "CB:38/3%RM:672/64%",
["Karagrass"] = "EM:678/82%",
["Evilaa"] = "CB:45/4%RM:594/57%",
["Hinah"] = "CM:51/1%",
["Vunn"] = "UM:343/34%",
["Ououou"] = "UM:286/37%",
["Niyori"] = "RM:488/55%",
["Ningalo"] = "CB:57/4%",
["Sivir"] = "RM:646/59%",
["Lahrinara"] = "RM:662/63%",
["Chyra"] = "UM:338/43%",
["Fireleaf"] = "UM:142/29%",
["Tosix"] = "RM:552/71%",
["Bertholdt"] = "RM:202/50%",
["Kiary"] = "EM:863/85%",
["Lewin"] = "UB:383/49%LM:967/97%",
["Tigi"] = "CB:36/3%EM:906/91%",
["Schokobär"] = "EM:778/75%",
["Hinkel"] = "RM:503/51%",
["Aedalco"] = "UM:282/32%",
["Stormstrong"] = "RM:341/55%",
["Alphaa"] = "EM:776/75%",
["Knochenkaspa"] = "EM:808/79%",
["Rhaoul"] = "UM:307/35%",
["Farmstatus"] = "CM:45/17%",
["Goldfield"] = "RM:553/57%",
["Ruka"] = "CM:73/11%",
["Lampengeist"] = "CM:175/17%",
["Heftpflaster"] = "EM:754/80%",
["Alatariel"] = "EM:836/85%",
["Crozzy"] = "EM:851/89%",
["Sêal"] = "RM:459/63%",
["Niribo"] = "EM:717/85%",
["Greul"] = "CM:67/9%",
["Runkle"] = "UB:100/42%EM:619/76%",
["Sailas"] = "CM:74/12%",
["Slait"] = "RB:408/54%EM:744/80%",
["Gnampf"] = "UM:144/41%",
["Kaíser"] = "EM:700/75%",
["Amazingjd"] = "EM:891/89%",
["Frâxx"] = "EM:619/83%",
["Cøwgirl"] = "RM:752/73%",
["Sourcemagic"] = "EM:903/91%",
["Eros"] = "UM:383/41%",
["Nivyn"] = "RM:581/62%",
["Bonobostyle"] = "RM:728/69%",
["Shinai"] = "UM:460/42%",
["Daed"] = "CM:104/12%",
["Radburn"] = "CM:41/2%",
["Dumbledead"] = "EM:874/89%",
["Rokksn"] = "UM:369/45%",
["Leony"] = "CM:61/7%",
["Scryo"] = "RM:659/68%",
["Callistus"] = "UM:339/33%",
["Bollerbob"] = "RM:530/52%",
["Kíra"] = "RM:505/51%",
["Cinpan"] = "UM:252/34%",
["Neyciri"] = "RM:413/70%",
["Avera"] = "CM:54/4%",
["Xerter"] = "EB:308/81%EM:488/75%",
["Eratig"] = "CM:78/9%",
["Possos"] = "CM:99/8%",
["Korhsingh"] = "CM:68/11%",
["Holyfire"] = "RM:504/58%",
["Einfachkrass"] = "CM:158/20%",
["Zlina"] = "CM:47/22%",
["Appetit"] = "EM:831/83%",
["Biuna"] = "CM:183/24%",
["Taissa"] = "EM:735/78%",
["Layana"] = "CM:113/11%",
["Walterzabel"] = "UM:96/30%",
["Ðambu"] = "RM:576/52%",
["Nagel"] = "CM:120/17%",
["Mickyknox"] = "UM:324/41%",
["Knorpelkalle"] = "UM:95/39%",
["Skif"] = "RM:435/50%",
["Scarpe"] = "RM:211/52%",
["Rado"] = "RM:681/70%",
["Korotus"] = "CM:147/18%",
["Clîmax"] = "UM:426/45%",
["Mukk"] = "EM:791/77%",
["Greengorilla"] = "CM:53/3%",
["Stekk"] = "UM:273/32%",
["Neqan"] = "LM:954/98%",
["Jaila"] = "CM:137/21%",
["Heydline"] = "CM:128/19%",
["Dirtyfreezer"] = "CM:52/2%",
["Hellyeah"] = "CM:54/4%",
["Boendalin"] = "UM:361/35%",
["Thepwnalisa"] = "RB:406/52%EM:780/77%",
["Sîrrom"] = "UM:345/37%",
["Noon"] = "RM:614/58%",
["Brickwall"] = "EM:699/87%",
["Brynioch"] = "RM:305/71%",
["Maveríck"] = "EB:654/88%EM:737/80%",
["Taekwandn"] = "CM:121/12%",
["Gnomtreter"] = "EM:729/89%",
["Chippykowski"] = "EM:817/85%",
["Soka"] = "RM:580/74%",
["Shingetsu"] = "UM:172/25%",
["Valkor"] = "CM:64/16%",
["Dreibein"] = "EM:843/88%",
["Flixi"] = "UM:502/46%",
["Papabaer"] = "EM:633/78%",
["Gruselig"] = "UM:172/44%",
["Vitamalz"] = "RM:499/56%",
["Feenix"] = "UM:316/35%",
["Syris"] = "UM:216/30%",
["Manafred"] = "CM:53/3%",
["Buffetfräse"] = "CM:37/5%",
["Knohmaet"] = "CM:108/15%",
["Rux"] = "RM:343/65%",
["Jaschok"] = "UM:442/47%",
["Chrîspy"] = "CM:116/17%",
["Knickebein"] = "UM:45/42%",
["Hawnz"] = "RM:459/50%",
["Tabaxx"] = "RM:466/53%",
["Malfare"] = "EM:879/92%",
["Zimti"] = "RM:438/63%",
["Løla"] = "EM:857/84%",
["Tedo"] = "EM:944/94%",
["Zuberi"] = "UM:369/36%",
["Theraz"] = "UM:178/26%",
["Healol"] = "EM:866/93%",
["Alexistexas"] = "RM:693/73%",
["Sagana"] = "RM:553/55%",
["Khalida"] = "EM:783/76%",
["Balendilin"] = "RM:345/65%",
["Buddey"] = "UM:236/28%",
["Simplysyn"] = "CM:107/13%",
["Goldberg"] = "CM:110/15%",
["Spackolyth"] = "RM:303/65%",
["Lacky"] = "CB:186/23%RM:651/68%",
["Targhan"] = "CM:50/4%",
["Wundermittel"] = "CB:152/17%RM:292/52%",
["Tehcoolman"] = "CB:26/0%UM:391/40%",
["Moonfired"] = "UB:61/37%EM:553/77%",
["Moonika"] = "RM:654/63%",
["Blayme"] = "CM:95/9%",
["Skou"] = "RM:497/52%",
["Spinetzko"] = "CB:149/18%UM:265/27%",
["Artís"] = "CM:54/3%",
["Naim"] = "CB:30/2%UM:376/39%",
["Abielle"] = "CM:67/11%",
["Lemonaid"] = "UM:183/27%",
["Painaw"] = "CB:81/9%",
["Broedl"] = "CB:84/10%UM:429/45%",
["Lêila"] = "RM:499/51%",
["Toolzs"] = "CM:14/3%",
["Âpofis"] = "CB:28/1%RM:454/52%",
["Doomheart"] = "UM:347/43%",
["Supaiku"] = "CM:142/13%",
["Nazgur"] = "CB:184/23%UM:480/49%",
["Xshindeiru"] = "CM:74/5%",
["Frizle"] = "CM:70/6%",
["Xerxs"] = "UM:229/32%",
["Kjartan"] = "UM:242/27%",
["Mufuso"] = "CM:165/24%",
["Haramza"] = "CM:167/20%",
["Dargonet"] = "RM:524/57%",
["Clach"] = "RB:470/65%EM:821/86%",
["Zuris"] = "RM:686/65%",
["Dirtysanchz"] = "CB:88/10%RM:704/72%",
["Brecheisen"] = "EM:775/91%",
["Mirano"] = "UM:276/32%",
["Gamerpîrât"] = "RM:329/74%",
["Bizzay"] = "UM:220/27%",
["Addyson"] = "CM:120/17%",
["Nuze"] = "CB:160/19%EM:772/75%",
["Strêusel"] = "UM:356/44%",
["Tuermchen"] = "RM:528/70%",
["Mushoo"] = "RM:575/57%",
["Bares"] = "CM:138/17%",
["Daspeng"] = "RM:632/65%",
["Shifdy"] = "RM:545/59%",
["Mirok"] = "RM:695/67%",
["Davio"] = "EM:769/81%",
["Cupslok"] = "RM:554/54%",
["Laverne"] = "CM:176/18%",
["Kror"] = "CM:52/2%",
["Fanum"] = "RB:516/71%CM:147/18%",
["Maxiima"] = "RM:713/69%",
["Warcry"] = "EM:752/80%",
["Jurpe"] = "EM:911/91%",
["Dimensia"] = "EM:789/80%",
["Raikaras"] = "CM:123/18%",
["Ingolenzen"] = "CM:183/24%",
["Padawahn"] = "RM:377/56%",
["Thefirebird"] = "CM:173/21%",
["Killira"] = "EM:696/75%",
["Demie"] = "RM:537/58%",
["Elfin"] = "EM:856/89%",
["Priestyo"] = "UM:342/43%",
["Astaron"] = "CM:66/8%",
["Rakiane"] = "RM:713/66%",
["Discorogue"] = "RM:759/73%",
["Skillero"] = "CM:80/12%",
["Theodota"] = "RM:724/70%",
["Siocyla"] = "CM:64/9%",
["Trador"] = "RM:546/59%",
["Lenaya"] = "RM:748/72%",
["Arjin"] = "UM:267/27%",
["Nyki"] = "RM:266/50%",
["Xeratis"] = "UM:249/34%",
["Roqueone"] = "RM:601/57%",
["Miloumia"] = "RM:554/60%",
["Gogan"] = "CM:158/20%",
["Kaliopar"] = "UM:359/37%",
["Isebrand"] = "CB:166/19%CM:7/12%",
["Youry"] = "EM:726/78%",
["Insanity"] = "RB:445/58%EM:724/75%",
["Geen"] = "EM:741/79%",
["Flor"] = "RM:664/63%",
["Xân"] = "UM:276/35%",
["Erkann"] = "EM:844/89%",
["Tululu"] = "UM:393/48%",
["Rogasus"] = "CM:111/14%",
["Márvo"] = "UM:291/33%",
["Highfive"] = "EM:875/88%",
["Ashoka"] = "EM:370/76%",
["Kasuja"] = "UM:255/30%",
["Sissa"] = "CM:77/11%",
["Devias"] = "RM:527/51%",
["Deasdemona"] = "RM:514/53%",
["Beasthunter"] = "UM:364/39%",
["Zarist"] = "RM:490/57%",
["Asgardius"] = "RM:158/60%",
["Windfury"] = "EM:653/80%",
["Bloodfang"] = "CM:239/24%",
["Billerbong"] = "CM:100/13%",
["Urlguf"] = "EM:760/88%",
["Tremor"] = "RM:637/58%",
["Lucífa"] = "CM:52/5%",
["Acnologìa"] = "CM:158/23%",
["Pixelvip"] = "CM:52/2%",
["Lineal"] = "CM:53/3%",
["Neviona"] = "CM:127/18%",
["Lihia"] = "RM:453/52%",
["Wonderbra"] = "EM:862/93%",
["Kucki"] = "UM:415/39%",
["Nôvia"] = "UM:236/32%",
["Coolbreeze"] = "CM:12/19%",
["Psychedelics"] = "EM:769/80%",
["Sterny"] = "CM:57/6%",
["Zzneko"] = "UM:188/27%",
["Jindallan"] = "CM:23/12%",
["Niomo"] = "UM:424/44%",
["Mytic"] = "UM:327/36%",
["Krollos"] = "RM:743/72%",
["Feral"] = "LM:885/95%",
["Bandita"] = "CM:121/17%",
["Minkoman"] = "EM:791/78%",
["Welock"] = "UM:140/32%",
["Wotani"] = "RM:480/51%",
["Joemama"] = "UM:335/37%",
["Gamper"] = "RB:437/58%EM:737/80%",
["Blackjackxx"] = "UM:124/26%",
["Pfleger"] = "UB:368/49%EM:747/81%",
["Shmo"] = "RM:264/72%",
["Lunnaris"] = "CM:123/18%",
["Alassar"] = "CM:7/12%",
["Míamarie"] = "RM:607/64%",
["Ghostone"] = "CM:124/18%",
["Rigeo"] = "EM:557/80%",
["Korack"] = "EM:733/76%",
["Eisblume"] = "EM:866/85%",
["Depopulator"] = "EM:787/75%",
["Nostalgia"] = "UM:224/27%",
["Allu"] = "CM:58/7%",
["Sdog"] = "RM:705/72%",
["Momentum"] = "RM:754/71%",
["Flako"] = "EM:805/79%",
["Advocate"] = "EM:770/82%",
["Retzaros"] = "RM:636/60%",
["Greasy"] = "EM:719/83%",
["Xos"] = "RM:414/59%",
["Oheilme"] = "RM:554/62%",
["Kibalol"] = "UM:476/48%",
["Halla"] = "EM:867/87%",
["Rizzlaa"] = "UM:216/29%",
["Barhul"] = "CM:63/9%",
["Nocebo"] = "EM:847/84%",
["Highvoltagez"] = "CM:54/4%",
["Røse"] = "EM:719/77%",
["Isildur"] = "RM:639/70%",
["Nenuinal"] = "CM:153/22%",
["Bofar"] = "RM:668/61%",
["Aranar"] = "RM:420/51%",
["Gaukler"] = "CM:166/21%",
["Mcbroes"] = "RM:430/50%",
["Nochmal"] = "RM:604/67%",
["Phobi"] = "CM:53/3%",
["Cik"] = "CM:113/16%",
["Naguk"] = "RM:585/60%",
["Fusellock"] = "CM:113/14%",
["Zabaji"] = "RM:636/61%",
["Waxcro"] = "UM:235/28%",
["Restosterone"] = "RM:129/58%",
["Etna"] = "RM:438/63%",
["Procrank"] = "RM:501/56%",
["Xerron"] = "UM:310/34%",
["Zelder"] = "RM:670/69%",
["Drafk"] = "UM:252/30%",
["Bifrogar"] = "RM:543/61%",
["Debiti"] = "UM:221/27%",
["Osterhase"] = "UM:338/43%",
["Yukì"] = "UM:224/31%",
["Frauzieske"] = "CM:113/15%",
["Tien"] = "CM:108/14%",
["Tormund"] = "UM:170/45%",
["Strongbube"] = "CM:159/19%",
["Ortrudzomfg"] = "RM:652/59%",
["Pirs"] = "UM:237/31%",
["Atomstäbchen"] = "EM:432/75%",
["Mexim"] = "RM:612/68%",
["Holigano"] = "RM:456/52%",
["Misayaki"] = "RM:589/53%",
["Dinooxsan"] = "CM:133/19%",
["Bludlust"] = "RM:488/51%",
["Patrone"] = "CM:119/16%",
["Temudjin"] = "UM:117/34%",
["Enohla"] = "RM:561/60%",
["Felyine"] = "RM:602/54%",
["Knoppers"] = "RM:516/51%",
["Mfdoom"] = "EM:866/87%",
["Seiphe"] = "RM:322/50%",
["Arges"] = "CM:142/12%",
["Heagen"] = "RM:599/54%",
["Charlotte"] = "CM:135/19%",
["Mizuchi"] = "EM:729/90%",
["Telendor"] = "RM:645/61%",
["Gorgel"] = "UM:210/26%",
["Fappy"] = "EM:674/80%",
["Budenei"] = "EM:586/75%",
["Xàrór"] = "RM:715/73%",
["Djessi"] = "CM:52/2%",
["Rezzmeplz"] = "RM:737/69%",
["Sinthoran"] = "UM:348/38%",
["Silvern"] = "UM:211/38%",
["Kahuna"] = "CM:94/12%",
["Jeudirec"] = "RM:472/50%",
["Piong"] = "CM:53/3%",
["Nysa"] = "UM:185/26%",
["Pestbringer"] = "RM:578/57%",
["Ratpak"] = "EM:772/78%",
["Tsushima"] = "CM:76/12%",
["Mandora"] = "EM:804/78%",
["Gunju"] = "RM:646/62%",
["Xcheffo"] = "RM:563/63%",
["Priestio"] = "UB:189/49%EM:690/81%",
["Tikojin"] = "UM:370/37%",
["Matschkanone"] = "CB:60/7%CM:196/20%",
["Somah"] = "CB:32/1%EM:867/91%",
["Norea"] = "CB:31/2%EM:860/87%",
["Shanqarani"] = "CB:42/4%RM:528/53%",
["Manzke"] = "CM:208/21%",
["Vixi"] = "CB:131/17%",
["Lúthien"] = "CB:114/12%",
["Mey"] = "CB:39/4%",
["Suysuy"] = "RM:590/58%",
["Procer"] = "CB:32/1%",
["Îroh"] = "UM:430/44%",
["Grüezi"] = "CB:32/3%CM:162/19%",
["Blackcow"] = "CB:12/7%",
["Rascals"] = "CM:137/19%",
["Chakka"] = "RM:565/55%",
["Immodestia"] = "CB:79/7%UM:328/37%",
["Muxinger"] = "EB:677/87%EM:913/93%",
["Cerebralbore"] = "RM:583/64%",
["Mariasabina"] = "UM:331/35%",
["Alna"] = "CB:27/0%CM:27/0%",
["Iixil"] = "CB:39/2%UM:194/28%",
["Arraya"] = "CB:173/20%RM:681/74%",
["Bulwar"] = "CB:157/17%UM:419/47%",
["Newoss"] = "CB:16/17%",
["Symtax"] = "CM:53/23%",
["Morfane"] = "CB:108/12%RM:561/51%",
["Rhená"] = "CB:72/6%EM:758/80%",
["Lyggi"] = "EM:894/89%",
["Eklyps"] = "EM:746/79%",
["Knuddler"] = "RM:382/68%",
["Stabil"] = "CM:32/3%",
["Arthjom"] = "EM:756/81%",
["Dshe"] = "EM:831/93%",
["Søkrat"] = "EM:741/85%",
["Ressie"] = "EM:885/90%",
["Abraxxa"] = "RT:269/65%RB:405/70%UM:246/49%",
["Lazren"] = "CM:167/21%",
["Pafu"] = "CM:32/2%",
["Curedarling"] = "CM:13/20%",
["Xba"] = "UM:241/33%",
["Ovolo"] = "CM:120/16%",
["Christelmeff"] = "CM:13/20%",
["Sîlver"] = "UM:359/39%",
["Kiku"] = "CM:65/9%",
["Ðeliczz"] = "CM:124/17%",
["Gamscha"] = "UM:140/48%",
["Galaxy"] = "CM:131/16%",
["Cassiel"] = "CM:183/22%",
["Metzgi"] = "UM:59/36%",
["Aregos"] = "RM:524/51%",
["Latura"] = "RM:715/70%",
["Chippy"] = "UM:330/42%",
["Sorduna"] = "EM:714/88%",
["Chaz"] = "UM:356/39%",
["Lozhar"] = "RM:753/73%",
["Stormspeaker"] = "UM:387/42%",
["Baidur"] = "RM:615/65%",
["Seriouz"] = "UM:308/34%",
["Niwo"] = "UM:277/37%",
["Pøx"] = "CM:56/5%",
["Karot"] = "UM:314/40%",
["Ezekial"] = "RM:636/70%",
["Onk"] = "CM:79/20%",
["Arlog"] = "UM:489/49%",
["Resuerecta"] = "RM:415/61%",
["Brainkopf"] = "CM:39/0%",
["Flekzfreez"] = "CM:56/5%",
["Braîn"] = "UM:222/27%",
["Hoshino"] = "RM:494/57%",
["Tracee"] = "RM:655/68%",
["Jaxstar"] = "RM:378/56%",
["Psylord"] = "RM:650/63%",
["Kyræ"] = "UM:166/35%",
["Arika"] = "UM:248/42%",
["Fjaak"] = "CM:169/21%",
["Crashkazuya"] = "UM:282/47%",
["Brandax"] = "RM:424/51%",
["Betablock"] = "CM:121/16%",
["Kaladorn"] = "CM:178/22%",
["Nóobskilled"] = "UM:306/39%",
["Daywalker"] = "RM:481/66%",
["Ironshot"] = "CM:36/14%",
["Bangela"] = "CM:57/6%",
["Arakthaar"] = "CM:82/21%",
["Taulio"] = "UM:188/48%",
["Torenga"] = "UM:243/29%",
["Cold"] = "RM:620/65%",
["Nestroy"] = "EM:823/84%",
["Flobbl"] = "RM:669/63%",
["Telron"] = "EM:398/80%",
["Imorian"] = "EM:698/75%",
["Sazamel"] = "RM:443/53%",
["Semiaramis"] = "UM:191/49%",
["Carlgustava"] = "EM:846/92%",
["Madd"] = "CM:52/1%",
["Petrus"] = "CM:170/24%",
["Dirtydeeds"] = "CM:113/14%",
["Winnifred"] = "UB:307/40%",
["Gunzerker"] = "EM:906/91%",
["Raxx"] = "EM:787/89%",
["Körigin"] = "UM:313/40%",
["Traxx"] = "EM:661/79%",
["Casuja"] = "RM:532/70%",
["Frantic"] = "EM:824/84%",
["Lyyu"] = "EM:873/94%",
["Sørey"] = "RM:757/73%",
["Xesopop"] = "EM:762/81%",
["Ordoban"] = "RM:635/67%",
["Killjin"] = "EM:935/94%",
["Schamanin"] = "EM:852/89%",
["Anesthesia"] = "RM:545/54%",
["Zortina"] = "RM:587/58%",
["Elynea"] = "CM:64/9%",
["Scarcy"] = "RM:278/51%",
["Drakh"] = "UM:190/49%",
["Dinoswarlock"] = "CM:165/21%",
["Bratislav"] = "CM:74/11%",
["Beeliiar"] = "RM:565/61%",
["Cadaris"] = "UM:298/33%",
["Yulivèe"] = "RM:468/55%",
["Jyskal"] = "RM:625/64%",
["Rammdösig"] = "RM:557/50%",
["Beattrax"] = "CM:45/4%",
["Didschi"] = "RM:379/56%",
["Xerethor"] = "CM:51/1%",
["Zerkloppen"] = "UM:151/34%",
["Targeting"] = "CM:200/23%",
["Awaken"] = "CM:122/17%",
["Quinya"] = "CM:63/10%",
["Painishard"] = "RM:469/50%",
["Pìnky"] = "RM:428/71%",
["Superbia"] = "RM:418/61%",
["Zoke"] = "CM:67/10%",
["Caroo"] = "EM:794/79%",
["Huntris"] = "EM:865/86%",
["Lokeen"] = "EM:886/94%",
["Scria"] = "UM:220/31%",
["Holzen"] = "CM:67/11%",
["Phönixx"] = "UM:360/35%",
["Exíl"] = "RM:617/56%",
["Ashante"] = "EM:782/79%",
["Astaraya"] = "EM:834/83%",
["Didio"] = "RM:660/63%",
["Norey"] = "UM:331/42%",
["Balsor"] = "CM:137/19%",
["Schwoazi"] = "UM:172/25%",
["Tretti"] = "UM:428/40%",
["Activityz"] = "UM:429/40%",
["Aziza"] = "EM:904/93%",
["Sickone"] = "UM:271/36%",
["Deathgrow"] = "RM:511/54%",
["Karakakora"] = "UM:189/48%",
["Mexím"] = "CM:100/9%",
["Rockyy"] = "CM:137/19%",
["Uko"] = "CM:177/21%",
["Bullwai"] = "EM:837/88%",
["Fesk"] = "UM:238/26%",
["Betonbodo"] = "CM:109/13%",
["Djuffingis"] = "EM:803/81%",
["Bogenbibi"] = "UM:277/32%",
["Danaidh"] = "RM:484/65%",
["Sign"] = "UM:229/25%",
["Arwea"] = "EM:911/92%",
["Thormen"] = "UM:398/43%",
["Littrix"] = "CM:50/0%",
["Krigsgaldr"] = "CM:55/4%",
["Rantaplan"] = "CM:52/1%",
["Input"] = "CM:163/23%",
["Vanjindo"] = "CM:159/20%",
["Kuhmate"] = "EM:856/89%",
["Lilyane"] = "RM:689/67%",
["Xouy"] = "RM:766/74%",
["Hüpsipüpsi"] = "EM:695/75%",
["Merodin"] = "UM:496/45%",
["Killington"] = "UM:303/30%",
["Oneo"] = "UM:434/41%",
["Dredd"] = "CM:141/17%",
["Curz"] = "EM:741/78%",
["Moobai"] = "UM:334/33%",
["Pewtyful"] = "UB:205/26%EM:781/79%",
["Milkyrella"] = "UM:318/36%",
["Fünfrappe"] = "RM:603/64%",
["Madcow"] = "UM:270/35%",
["Atrotos"] = "CM:52/6%",
["Mordet"] = "CM:117/16%",
["Gozxdesastro"] = "RM:522/57%",
["Frosko"] = "EM:834/87%",
["Leduun"] = "CM:130/19%",
["Belabarney"] = "CM:58/7%",
["Minthe"] = "UM:99/30%",
["Flaba"] = "CM:166/24%",
["Sory"] = "CM:74/12%",
["Dootdoot"] = "CM:144/14%",
["Puha"] = "UM:249/30%",
["Bruto"] = "UM:186/27%",
["Kermit"] = "CM:56/5%",
["Rowan"] = "CM:117/15%",
["Argorn"] = "RM:766/74%",
["Ruyzen"] = "RM:641/58%",
["Vailya"] = "LM:920/95%",
["Reney"] = "RM:384/68%",
["Donoras"] = "RM:540/59%",
["Critnyspiers"] = "RM:671/65%",
["Aleasis"] = "RM:618/68%",
["Darcurse"] = "RM:618/58%",
["Couto"] = "EM:845/86%",
["Wahngöttin"] = "RM:695/68%",
["Crônicx"] = "CM:214/24%",
["Acci"] = "EM:692/83%",
["Klaussiemon"] = "RM:745/71%",
["Nikuhtin"] = "EM:516/88%",
["Chiza"] = "RM:671/69%",
["Pius"] = "UM:361/45%",
["Vega"] = "EM:873/93%",
["Skra"] = "RM:643/58%",
["Shakal"] = "EM:781/81%",
["Insertcoin"] = "UM:252/35%",
["Zlyden"] = "RM:389/69%",
["Sodiac"] = "CM:110/14%",
["Souji"] = "CM:59/8%",
["Norsen"] = "CM:57/7%",
["Blunnek"] = "UM:190/25%",
["Köttelkopf"] = "CM:51/6%",
["Ripbysnusnu"] = "UM:95/39%",
["Smash"] = "CM:50/5%",
["Natborc"] = "CM:65/8%",
["Nosejob"] = "UM:494/45%",
["Loah"] = "RM:564/55%",
["Roxa"] = "UM:412/39%",
["Belishi"] = "CM:163/23%",
["Quezaquotl"] = "CM:37/0%",
["Jayarisa"] = "UM:246/34%",
["Beard"] = "RM:441/61%",
["Wadenpiekser"] = "UM:332/34%",
["Inflex"] = "EM:831/87%",
["Scorê"] = "UM:464/47%",
["Cornelius"] = "UB:320/40%RM:685/71%",
["Meelzef"] = "CM:52/2%",
["Whinston"] = "UM:262/31%",
["Chromatic"] = "UM:202/29%",
["Träumer"] = "RM:577/62%",
["Rebornz"] = "RM:408/59%",
["Masselor"] = "CM:57/6%",
["Fíreball"] = "CM:51/1%",
["Yong"] = "UM:336/43%",
["Rinks"] = "UM:234/32%",
["Apfel"] = "UM:484/44%",
["Manfipanfi"] = "CM:56/6%",
["Galke"] = "CM:167/21%",
["Shîsøna"] = "RM:220/53%",
["Ferona"] = "EM:804/79%",
["Dga"] = "CM:71/11%",
["Yarilul"] = "RM:480/54%",
["Menobar"] = "EM:732/86%",
["Filley"] = "UM:411/43%",
["Rioxas"] = "EM:718/75%",
["Denma"] = "UM:306/39%",
["Gorgrael"] = "CM:159/23%",
["Hexo"] = "EM:844/84%",
["Faenox"] = "UM:225/27%",
["Asolon"] = "RM:585/65%",
["Mccaps"] = "EM:784/83%",
["Animah"] = "CM:63/8%",
["Raspel"] = "CM:183/24%",
["Flirty"] = "UM:226/25%",
["Tialk"] = "EM:768/75%",
["Carlmoney"] = "RM:534/58%",
["Vinyasa"] = "RM:660/72%",
["Edelschlucha"] = "EM:792/78%",
["Parisienne"] = "UM:61/33%",
["Darya"] = "UM:280/29%",
["Takali"] = "EM:767/75%",
["Nordi"] = "EM:887/90%",
["Takez"] = "EM:816/86%",
["Nyxo"] = "CM:62/4%",
["Pippa"] = "CM:54/4%",
["Frosch"] = "CM:105/13%",
["Elpaco"] = "UM:34/33%",
["Reqrok"] = "CM:191/23%",
["Mdk"] = "EM:736/76%",
["Âmi"] = "UM:194/25%",
["Tharion"] = "CM:39/2%",
["Fummeltrine"] = "CM:51/1%",
["Ecbert"] = "RM:698/68%",
["Fréáky"] = "EM:819/83%",
["Laíla"] = "CM:53/3%",
["Goodhulk"] = "RM:677/65%",
["Zeala"] = "UM:276/37%",
["Kosaki"] = "RM:338/65%",
["Clebsi"] = "RM:107/59%",
["Scorx"] = "UM:175/36%",
["Freezyone"] = "UM:191/28%",
["Creole"] = "RM:603/57%",
["Alwyna"] = "RM:475/56%",
["Fuhma"] = "UM:502/46%",
["Lisa"] = "CM:72/11%",
["Snikkels"] = "RM:644/68%",
["Papafrost"] = "EM:764/78%",
["Xtrapat"] = "RM:742/69%",
["Nebelstern"] = "EM:587/81%",
["Hyerin"] = "EM:629/77%",
["Lânzer"] = "RM:743/71%",
["Simpolinchen"] = "UM:293/34%",
["Gnomer"] = "UM:255/26%",
["Nescio"] = "EM:817/86%",
["Schlauch"] = "UM:260/34%",
["Saylol"] = "UM:156/43%",
["Derhartetyp"] = "RM:431/50%",
["Liandra"] = "RM:507/58%",
["Rainbowpuke"] = "RM:433/72%",
["Searinox"] = "UM:100/32%",
["Whitevanman"] = "CM:82/21%",
["Syros"] = "EM:861/90%",
["Zerstoerer"] = "RM:535/52%",
["Alrike"] = "UM:213/29%",
["Lycaner"] = "RM:632/57%",
["Tayrem"] = "RM:458/50%",
["Twen"] = "UM:383/41%",
["Gambine"] = "RM:565/72%",
["Shamhairy"] = "EM:430/75%",
["Ivoke"] = "CM:125/18%",
["Qo"] = "RM:752/74%",
["Fence"] = "CM:154/19%",
["Akut"] = "RM:625/56%",
["Loljun"] = "RM:691/63%",
["Cato"] = "CM:157/14%",
["Cefa"] = "CM:116/17%",
["Nephalia"] = "EM:510/81%",
["Kizylight"] = "CM:159/23%",
["Eisenfresser"] = "CM:52/2%",
["Hirntot"] = "UM:334/41%",
["Kela"] = "UM:176/25%",
["Sadoox"] = "UM:155/43%",
["Bellrock"] = "UM:171/45%",
["Tobbel"] = "EM:817/94%",
["Miathos"] = "RM:691/73%",
["Dethfera"] = "UM:192/27%",
["Elektron"] = "CM:132/18%",
["Zoomania"] = "CM:53/3%",
["Nakopolika"] = "CM:54/3%",
["Valland"] = "RM:502/58%",
["Elalune"] = "UM:365/44%",
["Thorbjörn"] = "CM:55/8%",
["Sanatio"] = "UM:211/30%",
["Aeriz"] = "UM:518/47%",
["Daissaweg"] = "RM:570/54%",
["Zurzania"] = "CM:54/4%",
["Lemptzk"] = "RM:429/72%",
["Chaot"] = "RM:516/57%",
["Syan"] = "RM:575/55%",
["Frostbiss"] = "UM:397/47%",
["Cadala"] = "UM:186/48%",
["Teraskasi"] = "RM:513/50%",
["Thona"] = "EM:720/84%",
["Falcomaster"] = "UM:364/44%",
["Tallindra"] = "UM:270/32%",
["Nini"] = "UM:97/30%",
["Wav"] = "EM:878/92%",
["Atrieus"] = "UM:293/33%",
["Ondy"] = "RM:488/66%",
["Razzla"] = "LM:947/95%",
["Zedicus"] = "RM:605/67%",
["Liebhardt"] = "CM:50/23%",
["Trainerrob"] = "RM:329/52%",
["Pixellol"] = "CM:51/1%",
["Megasn"] = "RM:626/66%",
["Tez"] = "RM:483/56%",
["Sona"] = "UM:172/25%",
["Darwin"] = "RM:628/69%",
["Riokin"] = "CM:56/5%",
["Deadlybube"] = "CM:59/8%",
["Nîghtblade"] = "CM:61/12%",
["Giselle"] = "UM:312/40%",
["Rotzeblau"] = "RM:410/59%",
["Buggelfips"] = "CM:141/15%",
["Mattdemon"] = "UM:311/35%",
["Creophelia"] = "CM:127/18%",
["Abu"] = "UM:327/37%",
["Jaffa"] = "CM:165/19%",
["Schamiko"] = "EM:820/92%",
["Massacre"] = "RM:538/61%",
["Lágerhaus"] = "RM:485/51%",
["Ringi"] = "RM:356/61%",
["Kamchen"] = "CM:54/4%",
["Procus"] = "RM:661/68%",
["Ragnar"] = "RT:233/67%RB:211/51%RM:395/58%",
["Wáldmeister"] = "CM:110/15%",
["Snooz"] = "UM:443/45%",
["Miraus"] = "CM:165/24%",
["Healdey"] = "RM:451/53%",
["Trump"] = "EM:809/80%",
["Foyezee"] = "CM:52/2%",
["Denzar"] = "UM:173/46%",
["Yikmo"] = "CM:111/14%",
["Bro"] = "CM:64/10%",
["Garred"] = "UM:265/32%",
["Deadliftdbag"] = "CM:132/21%",
["Arganai"] = "CM:53/3%",
["Tombola"] = "RM:579/60%",
["Takedas"] = "UM:238/33%",
["Vihan"] = "RM:202/62%",
["Munorok"] = "RM:496/52%",
["Ghuul"] = "RM:572/61%",
["Alex"] = "RM:608/67%",
["Cletus"] = "UM:76/37%",
["Bollat"] = "CM:185/22%",
["Skuunk"] = "RM:252/65%",
["Soride"] = "UM:232/28%",
["Dâemon"] = "UM:212/30%",
["Derhesse"] = "CM:117/17%",
["Iwillbeing"] = "UM:206/39%",
["Wolfsherz"] = "RM:360/54%",
["Yukkay"] = "EM:813/81%",
["Yazuri"] = "EM:860/86%",
["Tunie"] = "CM:111/14%",
["Ethrija"] = "UM:228/25%",
["Charginchen"] = "CM:117/15%",
["Togrim"] = "EM:535/78%",
["Kaller"] = "EM:740/89%",
["Shiera"] = "UM:299/33%",
["Paexs"] = "EM:797/77%",
["Zrnchtr"] = "EM:870/86%",
["Forthor"] = "RM:630/69%",
["Mireamos"] = "RM:535/53%",
["Surgeeffekt"] = "EM:761/90%",
["Totemtorben"] = "LM:900/96%",
["Chiyokana"] = "RM:673/65%",
["Rossgarth"] = "RM:740/71%",
["Flyz"] = "RM:612/60%",
["Mutenroshi"] = "UM:394/43%",
["Pyrokà"] = "UM:397/42%",
["Eldibo"] = "EM:618/76%",
["Baschti"] = "CM:103/12%",
["Silexi"] = "CM:60/7%",
["Ama"] = "UM:162/32%",
["Zappíboy"] = "CM:39/0%",
["Sharin"] = "RM:531/52%",
["Véy"] = "CM:108/13%",
["Kyoto"] = "UM:298/33%",
["Arala"] = "CB:44/5%RM:679/64%",
["Raffaelio"] = "CM:210/23%",
["Píí"] = "EM:713/88%",
["Shanxor"] = "RM:494/55%",
["Biteme"] = "EM:765/75%",
["Undeadjoke"] = "RM:548/53%",
["Freakdecream"] = "CM:55/8%",
["Bôy"] = "UM:324/41%",
["Schlítzohr"] = "UM:244/29%",
["Jähzorn"] = "RM:468/53%",
["Hasagi"] = "CM:52/2%",
["Milkwar"] = "RM:290/67%",
["Pownzl"] = "EM:621/83%",
["Zonc"] = "UM:308/35%",
["Femaletok"] = "CM:164/23%",
["Montezuma"] = "EM:706/84%",
["Belikeme"] = "UM:188/39%",
["Freshstar"] = "EM:897/91%",
["Kusaijshi"] = "UM:364/38%",
["Iklaris"] = "UM:238/31%",
["Stoneheach"] = "RM:554/50%",
["Miao"] = "RM:757/73%",
["Darigaaz"] = "UM:374/42%",
["Lamp"] = "EM:784/88%",
["Xardok"] = "EB:617/78%EM:867/89%",
["Skiplegday"] = "RT:444/59%EB:697/94%LM:971/98%",
["Drexx"] = "CB:85/10%",
["Mentholman"] = "CM:73/11%",
["Kireia"] = "ET:446/94%LB:757/97%EM:913/94%",
["Bäm"] = "RM:771/73%",
["Lockybalboa"] = "RM:700/68%",
["Snéakypete"] = "UM:261/36%",
["Felton"] = "UM:196/27%",
["Explizit"] = "RM:673/69%",
["Kazamm"] = "CM:52/2%",
["Jaschoo"] = "UM:236/32%",
["Chab"] = "UM:378/45%",
["Maeror"] = "CM:148/22%",
["Waterboì"] = "CM:139/22%",
["Boshrak"] = "CM:64/10%",
["Casperle"] = "UM:226/27%",
["Stachelgurke"] = "EM:395/77%",
["Uffuff"] = "UM:188/48%",
["Flix"] = "UM:109/40%",
["Blobber"] = "CM:61/8%",
["Elrinn"] = "RM:736/72%",
["Bíxxí"] = "UM:419/49%",
["Combatmedic"] = "LM:937/96%",
["Nyrox"] = "CB:67/8%",
["Walze"] = "CM:88/10%",
["Fain"] = "CM:59/6%",
["Xhadius"] = "RM:62/51%",
["Ðuncan"] = "RM:421/60%",
["Sonéa"] = "CM:54/3%",
["Gläubiger"] = "CM:115/17%",
["Huygens"] = "UM:188/25%",
["Daloran"] = "RM:636/61%",
["Balkoth"] = "RM:611/68%",
["Boemeline"] = "UM:304/34%",
["Nakaí"] = "UM:521/47%",
["Slyfly"] = "CM:63/9%",
["Dede"] = "RM:620/66%",
["Serone"] = "CM:65/9%",
["Scherom"] = "UM:201/26%",
["Frohnatur"] = "UM:468/47%",
["Rock"] = "UM:212/28%",
["Syk"] = "EM:805/77%",
["Clink"] = "UM:455/48%",
["Maus"] = "EM:925/94%",
["Throdom"] = "CM:64/9%",
["Khasos"] = "CM:55/5%",
["Nidan"] = "CM:54/4%",
["Zeusx"] = "RM:531/57%",
["Blunder"] = "CM:67/10%",
["Bartelomeus"] = "CM:53/3%",
["Failorant"] = "CM:128/20%",
["Serenja"] = "UM:178/26%",
["Nejtiri"] = "CM:162/22%",
["Lelei"] = "CM:122/19%",
["Skaos"] = "EM:847/83%",
["Ayumî"] = "UM:395/47%",
["Beppo"] = "CM:162/19%",
["Zwiebelring"] = "UM:191/28%",
["Bombur"] = "LM:911/95%",
["Azu"] = "EM:770/78%",
["Scuffed"] = "EM:811/86%",
["Deathshot"] = "EM:847/84%",
["Lokdog"] = "UM:340/42%",
["Laoche"] = "EM:863/85%",
["Facelift"] = "RM:553/55%",
["Grraarr"] = "RM:688/63%",
["Tommec"] = "CM:71/11%",
["Arregaithel"] = "CM:159/18%",
["Kuhdelmuhdel"] = "CM:118/17%",
["Luxina"] = "UM:233/28%",
["Kiora"] = "RM:260/57%",
["Lhiannon"] = "RM:572/73%",
["Rotzloch"] = "CM:60/9%",
["Bösetante"] = "RM:599/59%",
["Thirteen"] = "EM:775/76%",
["Najadasistso"] = "EM:841/82%",
["Oshigata"] = "UM:211/26%",
["Bahanu"] = "CM:167/23%",
["Miamiwides"] = "EM:610/77%",
["Lecoq"] = "UM:210/46%",
["Reason"] = "UM:422/40%",
["Miroy"] = "EM:800/77%",
["Belmod"] = "RM:751/74%",
["Melavis"] = "UM:181/26%",
["Dafoe"] = "CM:120/16%",
["Dempty"] = "CM:69/11%",
["Runcle"] = "RM:425/60%",
["Säge"] = "UM:531/48%",
["Canaan"] = "RM:501/56%",
["Peaxxy"] = "CM:171/24%",
["Caliel"] = "RM:700/73%",
["Louna"] = "EM:856/94%",
["Krötenberg"] = "RM:618/66%",
["Lisara"] = "UM:265/36%",
["Vindictia"] = "RM:592/58%",
["Buuhu"] = "CM:129/18%",
["Mokujin"] = "RM:312/50%",
["Gooe"] = "UM:329/42%",
["Rhaziel"] = "UM:321/35%",
["Croboss"] = "CM:118/16%",
["Muffon"] = "ET:647/85%EB:495/91%EM:852/93%",
["Marya"] = "RM:534/53%",
["Yorika"] = "RM:741/69%",
["Sudeki"] = "EM:823/90%",
["Bigrick"] = "RM:542/59%",
["Reoru"] = "CM:173/22%",
["Icemage"] = "EM:725/79%",
["Hélfèr"] = "UM:279/47%",
["Monkeydrufy"] = "UM:437/41%",
["Roya"] = "CM:52/5%",
["Rankin"] = "CM:53/3%",
["Jéssy"] = "UM:92/39%",
["Thuray"] = "CM:116/15%",
["Suffkôpp"] = "CM:53/3%",
["Valyra"] = "UM:407/46%",
["Faru"] = "CM:107/13%",
["Eshu"] = "CM:109/14%",
["Tuff"] = "RM:579/55%",
["Xar"] = "RM:441/51%",
["Bathos"] = "CM:117/17%",
["Ati"] = "EM:724/76%",
["Shank"] = "CM:57/7%",
["Tholam"] = "CM:52/4%",
["Eloraya"] = "CM:57/6%",
["Jenzoo"] = "UM:191/28%",
["Sublexx"] = "RM:603/64%",
["Secroit"] = "CM:39/2%",
["Andaroc"] = "UM:347/39%",
["Ijl"] = "CM:51/3%",
["Lares"] = "CM:56/6%",
["Horstman"] = "CM:53/2%",
["Goafact"] = "CM:60/11%",
["Crime"] = "UM:304/34%",
["Kalashnikow"] = "UM:27/27%",
["Peleas"] = "CM:110/13%",
["Scarzz"] = "RM:595/58%",
["Anakwanar"] = "RM:707/67%",
["Îko"] = "EM:886/94%",
["Willytoledo"] = "UM:290/37%",
["Rázek"] = "CM:63/9%",
["Millenia"] = "CM:56/5%",
["Kliff"] = "UM:364/38%",
["Detrik"] = "UM:405/42%",
["Greisverkehr"] = "CM:52/1%",
["Kâssy"] = "UM:203/29%",
["Franziskus"] = "CM:57/5%",
["Azzo"] = "CM:59/7%",
["Aragg"] = "UM:322/37%",
["Mjölnirus"] = "EM:651/80%",
["Ltspencer"] = "CM:53/2%",
["Froosch"] = "RM:733/70%",
["Grimo"] = "EM:793/76%",
["Lutzman"] = "UM:472/48%",
["Bigmacboi"] = "LM:926/96%",
["Zigeina"] = "UM:232/48%",
["Brund"] = "RM:642/61%",
["Proepkes"] = "CM:140/12%",
["Condrassil"] = "UM:323/41%",
["Alesur"] = "UM:282/37%",
["Tasx"] = "RM:489/55%",
["Shyo"] = "EM:860/85%",
["Jaria"] = "EM:889/93%",
["Alexy"] = "CM:104/12%",
["Violra"] = "EM:658/80%",
["Styxs"] = "CM:126/17%",
["Arzoc"] = "CM:54/4%",
["Tolvar"] = "RM:563/63%",
["Rarity"] = "CM:141/19%",
["Luis"] = "EM:708/84%",
["Maj"] = "RM:653/59%",
["Wayne"] = "RM:578/60%",
["Maiq"] = "RM:447/63%",
["Harca"] = "UM:375/46%",
["Mettberg"] = "UM:245/27%",
["Xwaldfee"] = "CM:117/16%",
["Cella"] = "UM:124/37%",
["Redz"] = "RM:649/67%",
["Seoux"] = "CM:159/20%",
["Makowa"] = "UM:366/45%",
["Riqu"] = "CM:170/24%",
["Ariandel"] = "CM:143/21%",
["Skalii"] = "CM:123/17%",
["Sythia"] = "UM:311/40%",
["Overfiend"] = "UM:71/27%",
["Wardberry"] = "UM:343/43%",
["Yuyuyu"] = "CM:52/1%",
["Shiezo"] = "CM:61/8%",
["Vimes"] = "UM:86/46%",
["Destroysen"] = "CM:128/20%",
["Skylo"] = "UM:232/28%",
["Thoak"] = "RM:415/59%",
["Walleey"] = "UM:421/43%",
["Kettoshi"] = "CM:175/22%",
["Andu"] = "CM:51/0%",
["Orcbane"] = "UM:238/28%",
["Inpanick"] = "UM:420/43%",
["Nirwu"] = "RM:443/51%",
["Tanina"] = "CM:184/24%",
["Berî"] = "CM:194/23%",
["Sila"] = "UM:305/39%",
["Nerem"] = "RM:645/68%",
["Krabazan"] = "UM:160/43%",
["Hazer"] = "UM:65/36%",
["Lakaii"] = "CM:168/20%",
["Kelle"] = "RM:462/64%",
["Djonin"] = "CM:140/21%",
["Stormsixone"] = "EM:842/92%",
["Lineah"] = "RM:717/73%",
["Fidelia"] = "CM:114/15%",
["Cruze"] = "UM:310/34%",
["Agis"] = "EM:603/76%",
["Élsanto"] = "CM:59/6%",
["Windkatze"] = "UM:232/28%",
["Testostegnom"] = "RM:612/64%",
["Rabbi"] = "RM:448/62%",
["Maxipeps"] = "UM:366/45%",
["Impium"] = "UM:255/31%",
["Kady"] = "EM:419/81%",
["Schølle"] = "EM:844/83%",
["Blurry"] = "UM:359/38%",
["Puschek"] = "UM:531/48%",
["Niroxn"] = "UM:360/38%",
["Vitvarg"] = "RM:509/50%",
["Vorkhul"] = "RM:603/67%",
["Makyl"] = "RM:599/58%",
["Untyll"] = "UM:525/48%",
["Fraya"] = "EM:570/82%",
["Itzama"] = "CM:174/22%",
["Lokky"] = "UM:284/33%",
["Roxassora"] = "CM:55/5%",
["Lokiria"] = "EM:682/82%",
["Tracyi"] = "UM:408/43%",
["Köriga"] = "UM:399/42%",
["Vikarui"] = "CM:63/10%",
["Sragul"] = "CM:108/13%",
["Ringelnatter"] = "CM:55/4%",
["Dianara"] = "UM:224/31%",
["Critdown"] = "CM:57/6%",
["Noozey"] = "CM:77/12%",
["Jigels"] = "UM:284/33%",
["Lras"] = "CM:77/12%",
["Leman"] = "CM:223/24%",
["Eliphas"] = "CM:146/13%",
["Zerfetza"] = "UM:492/49%",
["Operia"] = "CM:90/11%",
["Ohcosta"] = "CM:51/1%",
["Squatta"] = "CM:56/5%",
["Hammerfest"] = "CM:120/17%",
["Aurel"] = "EM:541/79%",
["Kagnar"] = "CM:125/17%",
["Roxxie"] = "RM:278/51%",
["Dgi"] = "UM:370/45%",
["Snutz"] = "CM:51/1%",
["Gizzard"] = "UM:219/27%",
["Tadwi"] = "UM:416/43%",
["Watan"] = "CT:73/24%UB:160/36%UM:86/29%",
["Veitus"] = "UM:134/39%",
["Arkatraz"] = "UM:126/37%",
["Astari"] = "CM:109/13%",
["Zylana"] = "UM:415/49%",
["Flamingmoe"] = "UM:250/34%",
["Medivhe"] = "RM:447/51%",
["Hisabell"] = "CM:49/5%",
["Misuru"] = "CM:129/19%",
["Xoop"] = "RM:596/54%",
["Tíggy"] = "CM:105/12%",
["Xantera"] = "UM:284/34%",
["Addflanders"] = "CB:121/13%UM:299/30%",
["Orcc"] = "CM:55/4%",
["Bazzofix"] = "CB:30/2%EM:853/84%",
["Khaztor"] = "CM:40/1%",
["Simar"] = "CM:136/20%",
["Ufominator"] = "CM:198/24%",
["Sissnu"] = "RM:537/58%",
["Tichuana"] = "CM:77/12%",
["Leyah"] = "CM:118/10%",
["Ausrastus"] = "EM:892/89%",
["Scheesch"] = "RM:556/54%",
["Shirok"] = "RM:288/67%",
["Segner"] = "UM:327/42%",
["Taralmir"] = "UM:336/41%",
["Amilona"] = "CM:145/19%",
["Rheton"] = "RM:479/51%",
["Drinkerbell"] = "EM:768/82%",
["Warrox"] = "EM:714/75%",
["Chupine"] = "CM:64/9%",
["Veebad"] = "CM:65/10%",
["Rustoormonox"] = "UM:402/44%",
["Aikomander"] = "CM:52/2%",
["Zøøm"] = "CM:122/18%",
["Seminex"] = "UM:441/45%",
["Birdzqt"] = "RM:632/66%",
["Balazaar"] = "UM:253/35%",
["Tyrandas"] = "RM:326/63%",
["Delikat"] = "CM:58/10%",
["Caítlyn"] = "RM:503/58%",
["Brokenblade"] = "RM:340/53%",
["Oqawango"] = "UM:73/26%",
["Mørcan"] = "RM:551/54%",
["Razmoko"] = "CM:83/12%",
["Elton"] = "UM:128/27%",
["Astea"] = "UM:236/28%",
["Hoodmage"] = "UM:378/46%",
["Ldld"] = "RM:412/50%",
["Turmor"] = "UM:49/45%",
["Raupe"] = "EM:793/80%",
["Cloudbear"] = "CM:120/16%",
["Lazerhawk"] = "CM:107/14%",
["Pml"] = "CM:63/9%",
["Xuludin"] = "CM:50/5%",
["Blutgeil"] = "CM:56/5%",
["Norima"] = "EM:809/80%",
["Brackl"] = "UM:255/34%",
["Rising"] = "CM:109/14%",
["Yojimboo"] = "CM:51/0%",
["Karrla"] = "UM:126/37%",
["Reign"] = "CM:51/1%",
["Hexmax"] = "UM:423/44%",
["Nazgrael"] = "UM:272/46%",
["Landa"] = "RM:737/69%",
["Gojirah"] = "RM:676/70%",
["Kayun"] = "CM:169/21%",
["Carnepie"] = "CM:51/1%",
["Andrasta"] = "RM:509/59%",
["Hordenvieh"] = "UM:251/34%",
["Smouk"] = "UM:191/28%",
["Lohq"] = "UM:440/46%",
["Bennosham"] = "CM:46/4%",
["Luckyy"] = "CM:43/3%",
["Maanni"] = "EM:714/75%",
["Mystogan"] = "RM:534/70%",
["Lous"] = "CM:168/21%",
["Tiredpillow"] = "RM:738/71%",
["Nonsense"] = "CM:61/8%",
["Bulwagh"] = "CM:117/15%",
["Sasín"] = "RM:627/66%",
["Iwasned"] = "EM:901/91%",
["Sicon"] = "CM:117/16%",
["Doomerang"] = "CM:134/19%",
["Miniwa"] = "CM:116/17%",
["Yui"] = "UM:218/26%",
["Crunx"] = "CM:113/15%",
["Karim"] = "CM:130/18%",
["Ghostler"] = "CB:47/5%RM:696/74%",
["Enrager"] = "LM:926/96%",
["Exil"] = "CM:27/0%",
["Aherix"] = "CM:215/21%",
["Robi"] = "CM:53/3%",
["Faalbala"] = "CM:42/3%",
["Fitze"] = "UM:136/41%",
["Hpsbote"] = "RM:353/61%",
["Jezrien"] = "CB:95/11%RM:573/63%",
["Takedaim"] = "EM:674/75%",
["Ozires"] = "CM:30/2%",
["Grandruid"] = "EM:742/81%",
["Pawz"] = "UM:164/32%",
["Blankz"] = "UM:421/40%",
["Týranna"] = "UM:217/42%",
["Garexis"] = "UM:300/31%",
["Ulzana"] = "UM:35/34%",
["Saibota"] = "EM:789/77%",
["Sellik"] = "UB:305/40%EM:695/76%",
["Claußi"] = "CM:63/4%",
["Shuggahoney"] = "CM:65/6%",
["Petinator"] = "CM:29/0%",
["Nukez"] = "UM:416/39%",
["Piptaz"] = "CM:86/6%",
["Matwau"] = "RM:193/53%",
["Fanara"] = "RM:563/51%",
["Kwi"] = "RM:669/73%",
["Taós"] = "UM:294/34%",
["Kisoka"] = "CM:64/10%",
["Kîrrâ"] = "UB:194/47%UM:329/34%",
["Tairen"] = "CB:186/19%UM:525/48%",
["Grarrug"] = "EM:782/76%",
["Noman"] = "CM:73/11%",
["Holyunholy"] = "RM:360/57%",
["Hølly"] = "UM:158/43%",
["Boranberg"] = "UM:262/35%",
["Anemoi"] = "CM:234/22%",
["Cptlilly"] = "RM:540/56%",
["Leeka"] = "CM:202/21%",
["Daliona"] = "CM:171/16%",
["Yaminomi"] = "UM:402/41%",
["Shiffter"] = "CM:116/10%",
["Nicelake"] = "CM:64/9%",
["Atiro"] = "CM:158/15%",
["Fiesesgirl"] = "CM:63/9%",
["Deímos"] = "EM:883/89%",
["Kerbron"] = "ET:409/78%RB:422/72%UM:141/40%",
["Zarok"] = "CM:101/13%",
["Talimee"] = "CM:58/7%",
["Dagosta"] = "RM:206/51%",
["Muezel"] = "CB:26/0%RM:744/73%",
["Moinkbrawl"] = "RM:318/74%",
["Snog"] = "RM:615/64%",
["Sandrina"] = "RM:443/51%",
["Necrosis"] = "CM:134/19%",
["Evilbeaver"] = "RM:273/56%",
["Miø"] = "UB:265/34%RM:494/54%",
["Aereo"] = "UM:151/34%",
["Schurkle"] = "UM:234/43%",
["Kuscheldecke"] = "RM:519/57%",
["Ugnasch"] = "CM:94/12%",
["Cryptonom"] = "CB:81/8%",
["Medôn"] = "CB:85/9%",
["Hoffnung"] = "CM:69/5%",
["Falsch"] = "CM:31/2%",
["Ömmél"] = "UM:142/48%",
["Geschändet"] = "RM:447/53%",
["Oiseasy"] = "UM:265/31%",
["Vary"] = "CM:93/9%",
["Yololeanie"] = "CM:110/14%",
["Dosenfisch"] = "EM:860/84%",
["Hippiekuh"] = "RM:449/51%",
["Vurune"] = "CM:104/13%",
["Badria"] = "UM:383/41%",
["Soulburn"] = "RM:580/57%",
["Kilimdor"] = "UM:230/25%",
["Schnitzling"] = "EM:860/89%",
["Mazzaka"] = "CM:51/1%",
["Vîcious"] = "UM:242/33%",
["Amiros"] = "RM:215/63%",
["Lanani"] = "RM:709/73%",
["Rojako"] = "UM:467/47%",
["Heino"] = "EM:680/81%",
["Muffinman"] = "CM:50/0%",
["Souline"] = "CM:11/11%",
["Zerrstörer"] = "UM:262/28%",
["Steliok"] = "RM:722/69%",
["Mellentine"] = "RM:293/70%",
["Skamander"] = "LT:746/95%EB:709/90%EM:786/84%",
["Fabixmain"] = "ET:669/88%EB:749/94%LM:933/95%",
["Empzly"] = "RT:513/67%EB:627/82%EM:513/81%",
["Rhaegol"] = "LT:637/98%LB:774/97%EM:865/91%",
["Salliri"] = "ET:229/75%RB:327/69%EM:474/80%",
["Malrina"] = "UB:243/31%EM:429/80%",
["Caria"] = "UT:303/40%RB:467/67%UM:305/37%",
["Mensch"] = "UT:218/33%EB:618/80%EM:688/76%",
["Thynara"] = "EM:451/80%",
["Rrym"] = "LT:773/97%EB:723/92%LM:864/97%",
["Mézumiira"] = "RM:291/70%",
["Zazul"] = "UM:292/34%",
["Ashnak"] = "ET:335/89%EB:720/92%EM:867/91%",
["Azrahn"] = "ET:256/76%EB:409/78%EM:630/89%",
["Thunderforce"] = "ET:264/81%RB:536/71%EM:591/87%",
["Donnertoni"] = "UT:174/27%UB:100/37%UM:107/34%",
["Dozen"] = "UT:342/45%EB:556/75%RM:637/69%",
["Hannsi"] = "CT:60/4%UB:173/48%RM:420/65%",
["Êvox"] = "ST:781/99%EB:726/92%EM:903/93%",
["Ciryi"] = "RB:444/64%EM:774/88%",
["Mece"] = "RT:484/64%RB:433/58%UM:157/45%",
["Prollger"] = "UB:273/38%UM:319/38%",
["Nekrotia"] = "ET:578/76%EB:718/91%LM:791/96%",
["Naral"] = "LB:608/96%EM:793/88%",
["Andar"] = "CT:186/22%UB:172/42%UM:388/46%",
["Winnwood"] = "ET:268/81%EB:527/89%EM:806/86%",
["Câpt"] = "RT:177/60%UB:351/47%UM:400/45%",
["Mint"] = "ET:380/92%EB:713/94%LM:710/95%",
["Duderino"] = "LT:599/97%EB:577/92%EM:576/85%",
["Rhelin"] = "LT:576/97%EB:748/94%EM:863/89%",
["Muhtator"] = "CT:74/22%CB:187/22%UM:344/39%",
["Aife"] = "ET:727/93%SB:768/99%LM:941/96%",
["Afkippe"] = "ST:703/99%LB:791/98%LM:963/98%",
["Orbin"] = "LT:762/96%LB:769/97%SM:995/99%",
["Nargun"] = "RB:209/50%RM:369/72%",
["Silentrage"] = "ET:790/94%EB:555/94%EM:820/90%",
["Aiphatonn"] = "ET:737/90%EB:668/92%LM:910/96%",
["Helia"] = "ST:794/99%SB:796/99%LM:966/97%",
["Shaily"] = "EB:446/85%EM:402/76%",
["Isomorphy"] = "EB:426/86%UM:244/27%",
["Quapsel"] = "CM:99/13%",
["Groný"] = "UB:197/48%UM:158/47%",
["Lazyx"] = "CB:144/19%RM:538/58%",
["Ziege"] = "CB:189/24%CM:61/19%",
["Iratas"] = "ET:734/94%EB:629/86%RM:474/56%",
["Keldoran"] = "RM:230/62%",
["Wipehelperin"] = "CT:80/10%UB:197/25%RM:513/57%",
["Mosesjembo"] = "UM:153/45%",
["Knuellito"] = "CT:0/3%UB:361/45%UM:377/43%",
["Rammbock"] = "CB:84/9%UM:158/44%",
["Wilkor"] = "UM:139/38%",
["Cete"] = "UM:64/34%",
["Eggbeard"] = "RB:403/56%RM:495/58%",
["Kallum"] = "UM:148/39%",
["Zelle"] = "RT:464/64%RB:459/61%RM:373/72%",
["Madib"] = "CM:170/24%",
["Taramas"] = "UB:175/42%RM:546/62%",
["Gánja"] = "LT:723/97%LB:768/98%LM:902/97%",
["Geilerhighla"] = "ET:387/89%EB:533/93%EM:676/77%",
["Yondaime"] = "LT:533/97%EB:680/87%EM:706/75%",
["Carpaccîo"] = "LT:396/96%EB:475/92%EM:759/90%",
["Drrulendent"] = "RT:196/62%RB:368/52%RM:183/53%",
["Quaid"] = "CT:51/23%UB:108/28%RM:181/54%",
["Irazora"] = "ET:715/91%LB:745/98%EM:916/93%",
["Kopeng"] = "UB:325/44%CM:207/24%",
["Icêteâ"] = "CM:120/15%",
["Neuraxpharm"] = "CB:70/17%CM:40/11%",
["Arrarrpirat"] = "UT:124/44%EB:551/94%CM:93/12%",
["Theory"] = "RB:514/74%RM:380/74%",
["Rullek"] = "RT:509/67%EB:696/89%EM:635/89%",
["Dropmystyle"] = "ET:486/89%EB:590/89%EM:317/80%",
["Robertoo"] = "EB:589/77%RM:630/70%",
["Shaggi"] = "ET:283/76%EB:551/77%EM:830/89%",
["Simone"] = "LT:576/97%LB:699/97%EM:761/94%",
["Stárzn"] = "UB:139/34%EM:433/75%",
["Rekord"] = "CT:48/3%EB:531/76%RM:594/69%",
["Mahagonn"] = "UB:364/46%EM:806/86%",
["Wudy"] = "UT:295/38%UB:171/44%RM:468/55%",
["Sausewind"] = "CT:30/3%",
["Morrígus"] = "ET:526/85%EB:589/87%EM:687/84%",
["Zarô"] = "ET:372/92%EB:663/85%EM:882/91%",
["Banjöck"] = "RT:490/64%EB:645/83%EM:684/91%",
["Helvetia"] = "ET:409/93%EB:596/93%LM:924/95%",
["Raksl"] = "ET:690/92%EB:717/93%EM:878/93%",
["Exoro"] = "ET:610/90%LB:764/98%LM:900/95%",
["Leorah"] = "ET:595/77%LB:730/96%LM:754/96%",
["Zuckyjumi"] = "RT:140/52%UB:182/46%UM:159/46%",
["Lexaja"] = "CM:59/5%",
["Yêo"] = "RB:437/59%CM:65/8%",
["Miagi"] = "RB:415/59%EM:378/79%",
["Rakos"] = "UB:371/47%RM:382/67%",
["Yaelnis"] = "UT:135/45%EB:657/90%RM:607/69%",
["Oddjob"] = "LT:661/98%EB:609/80%EM:792/82%",
["Theia"] = "UB:134/36%RM:285/66%",
["Grindlwald"] = "ET:222/79%UB:199/26%RM:501/59%",
["Ostborrn"] = "UT:101/32%UB:157/38%UM:267/27%",
["Marik"] = "EB:580/78%EM:699/75%",
["Qtu"] = "EB:600/80%EM:422/78%",
["Placeholder"] = "ET:592/78%EB:671/86%LM:969/98%",
["Orakel"] = "CB:89/11%RM:320/73%",
["Määtes"] = "RM:323/74%",
["Assipirin"] = "RB:368/74%EM:790/90%",
["Sultrax"] = "EM:457/85%",
["Siona"] = "CM:29/6%",
["Shakes"] = "ST:724/99%LB:766/96%LM:958/97%",
["Bombe"] = "ET:660/86%LB:715/98%EM:877/90%",
["Grimmlie"] = "RT:122/52%RB:414/53%",
["Schumania"] = "ET:731/93%LB:771/97%LM:939/96%",
["Dotpockets"] = "RB:361/73%",
["Alzzia"] = "RT:288/52%RB:265/50%RM:315/62%",
["Arisstocat"] = "CT:65/6%EB:518/92%RM:350/70%",
["Salsuginis"] = "UB:333/46%RM:459/54%",
["Bownerjo"] = "RB:551/73%RM:496/57%",
["Kyzunji"] = "UB:323/45%RM:452/53%",
["Slyfar"] = "RT:393/51%RB:444/59%RM:574/63%",
["Luxferatu"] = "RM:284/69%",
["Mizfit"] = "RM:388/71%",
["Absacker"] = "RB:437/62%EM:691/79%",
["Tinks"] = "CT:0/1%UB:233/30%RM:330/65%",
["Mezmerise"] = "ET:617/79%EB:573/81%EM:845/92%",
["Eorean"] = "RB:210/71%UM:380/46%",
["Ñunez"] = "CB:28/2%UM:335/39%",
["Paxxie"] = "EB:428/81%EM:841/88%",
["Wraithful"] = "CT:138/22%RB:338/70%EM:733/80%",
["Schamharry"] = "UB:285/39%UM:282/32%",
["Steirerdude"] = "UM:99/37%",
["Mædø"] = "CM:62/5%",
["Shotokan"] = "CM:99/12%",
["Gadnuk"] = "ET:384/93%UB:218/25%CM:34/10%",
["Carlocokxx"] = "ET:593/79%RB:370/74%RM:633/70%",
["Valvyn"] = "RT:411/54%EB:424/84%CM:189/22%",
["Tharkal"] = "RB:408/55%RM:312/68%",
["Alphacentau"] = "UB:303/36%UM:132/39%",
["Chiiri"] = "RB:209/64%UM:169/47%",
["Crematorian"] = "CB:82/23%UM:355/42%",
["Grimgosh"] = "ET:510/77%EB:575/75%EM:565/80%",
["Vardamir"] = "CM:69/9%",
["Nikroth"] = "CT:29/11%CB:89/21%CM:58/7%",
["Kylion"] = "RM:314/66%",
["Icksie"] = "UM:269/29%",
["Slare"] = "RT:208/70%UB:100/26%UM:142/47%",
["Wulfen"] = "UM:100/33%",
["Gleichgültig"] = "UT:245/31%RB:273/60%RM:441/50%",
["Oruk"] = "RT:527/69%EB:671/86%RM:659/71%",
["Mewdiwzin"] = "CB:80/20%",
["Gandocat"] = "ET:247/78%EB:396/77%RM:429/72%",
["Ginknopf"] = "RB:324/71%EM:818/91%",
["Nuzama"] = "RM:259/60%",
["Entellijens"] = "UB:272/36%EM:389/80%",
["Mórtarion"] = "UB:272/36%RM:245/58%",
["Careful"] = "UB:139/36%UM:301/35%",
["Jamjam"] = "CB:70/8%UM:315/37%",
["Warles"] = "UM:103/31%",
["Ootzen"] = "UM:322/37%",
["Babajagi"] = "UM:87/31%",
["Delaney"] = "RM:292/64%",
["Vegetasfrau"] = "CT:48/5%UM:112/36%",
["Neverx"] = "UT:104/38%UB:306/40%EM:453/76%",
["Erf"] = "CB:5/7%UM:80/32%",
["Wuut"] = "UM:76/39%",
["Vs"] = "CM:97/12%",
["Imbakirby"] = "UM:99/35%",
["Hotdott"] = "RB:512/73%EM:741/84%",
["Carryeddy"] = "UB:202/49%UM:35/34%",
["Janaly"] = "UT:154/48%RB:281/64%UM:89/26%",
["Hawaiipizza"] = "RB:227/53%RM:259/60%",
["Peronâ"] = "CB:41/2%",
["Bämlee"] = "UT:246/32%UB:284/38%EM:429/78%",
["Ilaine"] = "ET:212/78%CB:40/4%UM:389/46%",
["Qaaru"] = "UT:341/41%RB:266/63%RM:568/66%",
["Mumpîtz"] = "CB:54/6%",
["Mukuda"] = "EB:591/83%EM:849/92%",
["Sôngôku"] = "RT:502/68%EB:637/82%RM:638/71%",
["Cátlyn"] = "LT:772/98%LB:769/97%SM:980/99%",
["Alatorus"] = "EB:555/83%RM:527/72%",
["Shun"] = "CM:34/13%",
["Heidelbaum"] = "UB:112/29%RM:213/58%",
["Puntigamer"] = "UM:175/45%",
["Piccola"] = "UM:131/44%",
["Garda"] = "UB:310/42%RM:299/68%",
["ßinza"] = "CT:42/9%RB:524/69%EM:862/91%",
["Exopriest"] = "CM:39/2%",
["Absorbed"] = "UM:368/44%",
["Hwathame"] = "RB:329/73%EM:585/82%",
["Fxy"] = "ET:637/82%EB:676/87%RM:628/68%",
["Giftklinge"] = "UT:208/26%RB:452/60%RM:524/58%",
["Nooysibam"] = "UT:166/34%RB:372/63%RM:159/63%",
["Parishilton"] = "UB:357/49%RM:437/50%",
["Kadsenvieh"] = "UB:284/37%UM:362/40%",
["Nacotix"] = "RB:525/70%RM:613/67%",
["Pwiesel"] = "CT:66/6%RB:307/68%CM:186/22%",
["Hotch"] = "UB:216/27%RM:597/69%",
["Skarzports"] = "CB:90/11%CM:48/19%",
["Dna"] = "RB:498/66%UM:89/30%",
["Blunthealer"] = "UB:182/44%RM:612/71%",
["Siddious"] = "UB:330/46%EM:397/81%",
["Anak"] = "RB:498/66%RM:588/66%",
["Izekin"] = "CB:29/1%UM:79/30%",
["Tsarararar"] = "EB:602/84%RM:237/61%",
["Villacher"] = "UT:125/39%RB:302/68%RM:425/50%",
["Ðdp"] = "UT:357/46%UB:367/48%RM:318/64%",
["Quitôx"] = "CM:59/8%",
["Mai"] = "RM:631/60%",
["Bigfutt"] = "CM:30/1%",
["Diamanthes"] = "RB:403/56%UM:181/49%",
["Áhríí"] = "CM:73/6%",
["Nixpeil"] = "CT:37/3%",
["Bumbua"] = "CT:142/18%EB:569/79%RM:499/59%",
["Missknuddel"] = "CM:53/21%",
["Ascendant"] = "UB:198/25%",
["Aerlynn"] = "CT:150/24%EM:671/77%",
["Berphi"] = "ET:586/76%EB:593/78%EM:504/80%",
["Neren"] = "CM:64/6%",
["Tehja"] = "CT:132/14%EB:568/80%EM:714/80%",
["Dielaura"] = "UT:219/33%RB:378/52%EM:732/83%",
["Gesundheit"] = "LT:473/95%RB:502/67%UM:294/35%",
["Kadavra"] = "ET:257/85%UB:228/30%CM:38/4%",
["Hibiky"] = "CT:39/10%CB:124/13%CM:195/24%",
["Rosemonroe"] = "UB:194/25%",
["Spuggii"] = "EB:472/85%LM:918/95%",
["Ciniminî"] = "UB:241/31%RM:210/66%",
["Botzkrocky"] = "CM:78/10%",
["Zulami"] = "RM:517/61%",
["Phixx"] = "CB:7/0%CM:79/11%",
["Akandir"] = "RT:190/73%UB:199/26%UM:252/31%",
["Ohkenz"] = "UM:256/30%",
["Roguschnetzl"] = "CM:59/18%",
["Stabmaster"] = "CM:41/4%",
["Vorsaken"] = "CM:148/19%",
["Toram"] = "CM:174/21%",
["Huntarius"] = "CB:64/6%RM:687/74%",
["Arkshion"] = "RT:184/65%RB:278/61%RM:576/65%",
["Spinnerpurge"] = "ET:666/82%EB:673/91%RM:606/70%",
["Supertrooper"] = "UB:172/42%UM:178/46%",
["Frankdrebïn"] = "EB:451/82%EM:741/79%",
["Furzegal"] = "UM:86/30%",
["Hexercore"] = "UM:81/29%",
["Genroku"] = "CT:68/8%CB:27/0%UM:134/42%",
["Gummelstulle"] = "CB:29/0%UM:394/46%",
["Gagosch"] = "CM:60/5%",
["Takemehome"] = "ET:256/77%RB:343/70%RM:631/69%",
["Borghildr"] = "UM:256/30%",
["Freezebone"] = "RB:273/66%RM:581/68%",
["Erschora"] = "CB:99/10%UM:312/36%",
["Plätzchen"] = "UM:324/38%",
["Jumii"] = "UM:201/26%",
["Smaxo"] = "CT:204/24%RB:502/72%EM:849/91%",
["Feign"] = "UM:129/44%",
["Graldodude"] = "RT:531/70%RB:538/72%RM:630/69%",
["Lightboi"] = "RT:552/72%EB:639/88%EM:735/83%",
["Hulkhunter"] = "UM:213/25%",
["Krokofant"] = "UB:349/47%RM:646/70%",
["Grepp"] = "RM:452/53%",
["Thognec"] = "UT:231/30%CB:178/23%UM:392/44%",
["Kamehl"] = "CB:80/9%UM:392/44%",
["Ducklover"] = "CM:55/7%",
["Koloskopie"] = "CT:44/15%CB:28/1%CM:32/2%",
["Weyn"] = "CM:102/15%",
["Schurkbanana"] = "UB:200/47%RM:371/69%",
["Ashgad"] = "CT:50/14%UB:339/46%RM:258/61%",
["Qrona"] = "CB:130/14%CM:25/13%",
["Derbrudi"] = "UT:133/29%EB:584/84%EM:603/82%",
["Fizzlewizzle"] = "EM:843/89%",
["Yâmyâm"] = "RB:244/61%RM:633/74%",
["Thehustler"] = "RM:465/52%",
["Lariny"] = "CM:32/2%",
["Truewarri"] = "UM:393/45%",
["Sturzii"] = "CT:151/17%RB:264/59%RM:181/61%",
["Apolon"] = "RB:259/62%RM:287/64%",
["Ulcusmolle"] = "CB:82/20%UM:99/29%",
["Gas"] = "RT:181/60%RB:487/67%RM:632/70%",
["Icemachine"] = "CB:65/16%CM:67/9%",
["Kuddli"] = "CM:127/15%",
["Zallon"] = "EB:469/88%EM:479/81%",
["Icheffol"] = "CT:37/10%CB:40/9%UM:148/43%",
["Lyannatrix"] = "CT:9/8%",
["Chiarasie"] = "UT:84/38%RB:235/59%EM:671/77%",
["Ilunuvielle"] = "RT:451/69%RB:383/72%UM:60/30%",
["Neutrina"] = "UT:66/49%UM:200/41%",
["Rakmore"] = "CT:42/14%UM:261/32%",
["Bøw"] = "CT:125/16%RB:450/61%RM:309/67%",
["Wayu"] = "UB:42/30%UM:281/48%",
["Liwangliwu"] = "EB:608/81%RM:650/71%",
["Jajja"] = "RB:461/62%RM:537/58%",
["Sendrana"] = "UT:241/29%UB:276/36%UM:128/35%",
["Yk"] = "RB:393/52%RM:441/50%",
["Immelp"] = "CB:107/13%UM:318/35%",
["Áhrí"] = "CB:43/4%RM:217/60%",
["Agree"] = "CB:80/7%CM:66/19%",
["Yeomage"] = "CB:100/13%CM:59/22%",
["Iotzif"] = "EB:379/75%RM:553/60%",
["Cardez"] = "CM:54/7%",
["Atalia"] = "CB:96/11%RM:240/54%",
["Scundy"] = "UM:119/39%",
["Wongulmoers"] = "EM:448/80%",
["Alroid"] = "CT:100/9%UB:292/39%EM:413/77%",
["Jackyy"] = "UM:164/46%",
["Zexxi"] = "CT:33/4%RB:398/56%UM:199/49%",
["Hohoho"] = "CB:67/14%UM:105/31%",
["Drogh"] = "UT:225/29%RM:483/57%",
["Ehrenhauer"] = "CB:46/10%UM:153/46%",
["Sicksick"] = "UB:224/29%UM:119/41%",
["Purgenutjoe"] = "EB:616/87%EM:796/90%",
["Andoras"] = "RB:240/52%UM:105/35%",
["Rotzen"] = "RM:509/57%",
["Ripbuffs"] = "RM:264/55%",
["Faxxenmachen"] = "UB:176/42%RM:540/60%",
["Dlx"] = "CM:25/9%",
["Alejando"] = "EB:519/92%EM:700/83%",
["Alrana"] = "CT:0/8%",
["Ulic"] = "RT:148/55%RB:339/71%UM:304/34%",
["Nvt"] = "RT:567/74%EB:732/92%EM:861/90%",
["Kidneyswift"] = "CB:54/12%",
["Oxox"] = "ET:656/86%RB:476/64%EM:722/77%",
["Kórgan"] = "CB:59/6%UM:173/44%",
["Aiusteady"] = "UB:339/45%EM:722/78%",
["Jdark"] = "RB:410/55%RM:590/65%",
["Sengroth"] = "UM:367/41%",
["Chaostime"] = "CM:40/4%",
["Fieruna"] = "EB:622/82%EM:760/81%",
["Grimmstrike"] = "RT:201/60%RB:318/72%RM:545/64%",
["Xamirra"] = "UM:233/28%",
["Buckelfips"] = "RB:401/53%UM:97/29%",
["Neoo"] = "RB:453/63%EM:595/92%",
["Adubiel"] = "RB:449/61%EM:498/83%",
["Riddare"] = "EB:574/81%EM:572/88%",
["Gùrr"] = "CT:168/21%RB:374/74%UM:140/38%",
["Badetank"] = "UM:145/39%",
["Evoo"] = "UM:313/37%",
["Unitaka"] = "CB:24/0%RM:532/58%",
["Zaluna"] = "CM:120/17%",
["Pärishealton"] = "CM:143/17%",
["Shynzophren"] = "UM:88/46%",
["Flecks"] = "CM:44/5%",
["Sparkz"] = "UT:226/26%RB:411/59%RM:292/64%",
["Ragnarsoon"] = "CM:107/14%",
["Lieferhêld"] = "CM:120/17%",
["Zweipromille"] = "CM:148/20%",
["Sonnytater"] = "CB:35/1%UM:137/37%",
["Elianaa"] = "CT:170/19%UB:178/43%EM:487/82%",
["Schamotte"] = "CT:211/24%UB:346/48%UM:117/38%",
["Jarlinio"] = "CB:161/17%RM:377/72%",
["Silava"] = "CM:119/15%",
["Sherrý"] = "UT:311/41%RB:469/67%UM:145/46%",
["Haschnix"] = "RB:556/74%RM:527/57%",
["Boostî"] = "UT:162/25%CB:184/23%RM:465/55%",
["Saltybeaver"] = "RM:531/62%",
["Adorno"] = "UM:360/38%",
["Madball"] = "CB:82/10%UM:75/29%",
["Magisker"] = "RB:251/62%UM:262/32%",
["Mokki"] = "UM:318/35%",
["Ddz"] = "EM:675/78%",
["Meldariel"] = "RB:397/53%CM:59/19%",
["Parashyntics"] = "CB:173/22%UM:213/26%",
["Serima"] = "CM:91/9%",
["Hahakuhwitz"] = "CT:29/1%UM:116/40%",
["Leîrdâg"] = "CM:54/20%",
["Asali"] = "RM:461/51%",
["Rusty"] = "RT:480/60%RB:284/66%",
["Kelshak"] = "CT:52/21%CB:180/19%UM:326/37%",
["Zovî"] = "EB:602/83%RM:262/66%",
["Zaphy"] = "CM:41/13%",
["Furryböller"] = "UT:109/43%RB:323/68%RM:450/51%",
["Zelôt"] = "CB:114/12%UM:186/49%",
["Zaubermensch"] = "UB:346/47%",
["Rougefort"] = "RB:447/60%RM:601/66%",
["Veo"] = "RB:420/56%RM:554/61%",
["Chokky"] = "EB:711/90%",
["Ottibiscotti"] = "RM:218/60%",
["Cruxx"] = "CT:115/14%CB:174/22%UM:423/47%",
["Cuerg"] = "UT:275/35%UB:312/41%RM:667/72%",
["Sállý"] = "RT:490/67%EB:615/94%EM:627/89%",
["Verruca"] = "UB:266/35%",
["Zomgo"] = "UB:271/36%UM:227/26%",
["Samsquam"] = "CB:114/15%",
["Kijaro"] = "CB:81/20%",
["Riewe"] = "RB:215/51%UM:159/45%",
["Gouk"] = "CM:149/18%",
["Kazori"] = "RB:374/52%EM:748/84%",
["Tyrsa"] = "RM:600/70%",
["Unstobubble"] = "ET:335/85%RB:363/50%EM:532/86%",
["Gymbeam"] = "CM:161/20%",
["Atriohm"] = "CT:26/0%RM:566/62%",
["Zangetzu"] = "UM:118/36%",
["Dreidrüber"] = "RM:446/51%",
["Hooth"] = "RB:370/50%EM:552/86%",
["Syrilis"] = "UM:194/48%",
["Nalus"] = "UM:218/43%",
["Tontu"] = "UM:408/48%",
["Haggard"] = "CM:94/10%",
["Lork"] = "CM:72/9%",
["Galliekor"] = "UM:281/34%",
["Pchan"] = "RM:494/71%",
["Quîtox"] = "UM:344/40%",
["Notavailable"] = "CB:27/0%RM:225/53%",
["Krigu"] = "RT:151/56%RB:536/71%EM:497/82%",
["Belmont"] = "LT:623/98%EB:725/92%LM:797/96%",
["Eatyou"] = "ET:419/94%EB:619/81%EM:840/88%",
["Cyreen"] = "RT:519/69%RB:537/72%RM:198/52%",
["Keesho"] = "EB:619/91%RM:449/73%",
["Shisan"] = "UB:346/47%RM:477/56%",
["Naksa"] = "UB:328/44%RM:337/68%",
["Vossii"] = "UB:116/30%CM:150/18%",
["Yssüp"] = "UM:299/40%",
["Cutieqt"] = "RB:428/57%EM:652/89%",
["Donalda"] = "RM:257/53%",
["Bloodséeker"] = "CM:76/8%",
["Hatefulx"] = "UT:322/42%UB:264/35%UM:193/25%",
["Boostboybobi"] = "RT:177/57%RB:431/61%UM:310/36%",
["Deathshadow"] = "CB:67/7%CM:28/1%",
["Grasshüpfer"] = "RB:415/54%RM:347/70%",
["Cryptlord"] = "UT:69/28%RB:275/51%RM:174/65%",
["Baltházar"] = "RT:173/68%EB:500/91%UM:142/46%",
["Troxan"] = "RB:485/64%RM:260/60%",
["Köbbe"] = "CB:198/21%UM:131/39%",
["Amitax"] = "UM:140/38%",
["Alfadrina"] = "RB:224/53%RM:317/58%",
["Barakuhja"] = "UB:261/30%",
["Rupina"] = "UB:343/46%EM:439/79%",
["Stussy"] = "RB:377/50%RM:268/58%",
["Rhodranor"] = "UT:51/48%UB:163/47%UM:65/26%",
["Roguetonite"] = "CB:145/18%RM:271/58%",
["Asparagus"] = "RM:653/70%",
["Bansi"] = "CM:63/23%",
["Latex"] = "CM:33/3%",
["Screammy"] = "UB:163/40%UM:247/29%",
["Kadrabra"] = "RM:401/51%",
["Rapio"] = "RM:443/53%",
["Morso"] = "CM:32/2%",
["Aurillia"] = "UB:236/30%UM:348/41%",
["Rakxul"] = "RB:377/51%RM:471/52%",
["Baz"] = "UM:282/33%",
["Nadinee"] = "CM:184/22%",
["Tereshunt"] = "UT:110/34%EB:568/80%RM:574/67%",
["Pfläumchen"] = "CB:87/24%RM:517/61%",
["Zyniker"] = "CT:179/23%EB:625/81%RM:560/62%",
["Gorthon"] = "CB:40/3%",
["Hólycrusader"] = "CB:185/21%UM:318/36%",
["Gutjja"] = "RB:390/53%UM:417/46%",
["Seqqsi"] = "EB:730/92%CM:47/16%",
["Nowa"] = "RB:418/60%CM:139/17%",
["Zorix"] = "RB:454/65%UM:354/42%",
["Toástbròt"] = "CB:60/7%",
["Troxima"] = "CB:122/16%RM:518/61%",
["Khadrak"] = "UM:227/44%",
["Rimbur"] = "RM:281/54%",
["Satry"] = "UB:138/36%RM:283/54%",
["Isi"] = "CM:107/15%",
["Progexx"] = "EM:710/81%",
["Lämmermann"] = "CM:52/4%",
["Looplock"] = "UT:227/29%EB:409/78%RM:303/65%",
["Masson"] = "UT:43/47%UB:121/47%RM:124/52%",
["Jinxxed"] = "CB:148/19%UM:324/38%",
["Mighthoof"] = "UB:272/36%UM:52/31%",
["Amishield"] = "RB:380/53%UM:248/29%",
["Neverdath"] = "RB:225/52%RM:389/71%",
["Blackpulver"] = "UB:100/28%UM:104/38%",
["Zsasz"] = "CT:86/8%CB:66/13%UM:342/41%",
["Regula"] = "CB:33/4%UM:141/46%",
["Ahimaaz"] = "CM:36/23%",
["Ðpx"] = "RT:178/57%UB:323/44%EM:452/80%",
["Firemage"] = "EM:588/91%",
["Steveyo"] = "EM:402/81%",
["Embassyy"] = "CT:99/17%CB:4/0%CM:134/19%",
["Zandorion"] = "UM:328/39%",
["Sêpp"] = "CB:33/5%",
["Arbow"] = "UM:372/41%",
["Nakasha"] = "UM:337/40%",
["Murafarm"] = "CM:52/6%",
["Lazergirl"] = "RM:250/60%",
["Grimsey"] = "UB:292/35%UM:444/46%",
["Shubnikov"] = "RM:619/69%",
["Eisenflanke"] = "CM:43/5%",
["Bolleus"] = "RB:521/73%EM:768/86%",
["Rickybobby"] = "UM:189/25%",
["Vermong"] = "UB:331/44%UM:200/26%",
["Niinio"] = "CT:72/11%RB:206/52%EM:732/82%",
["Curare"] = "CM:36/11%",
["Canuma"] = "RM:195/56%",
["Naketano"] = "CB:148/15%CM:32/8%",
["Seémslegit"] = "CM:40/3%",
["Kriti"] = "CM:39/4%",
["Burnhart"] = "CB:181/21%RM:218/52%",
["Beegx"] = "UT:307/43%EB:574/75%RM:618/69%",
["Takyto"] = "RT:158/58%EB:585/78%EM:578/87%",
["Kuddlzz"] = "CT:42/3%RB:205/52%CM:14/6%",
["Asyra"] = "RB:232/54%EM:446/78%",
["Argonel"] = "RB:436/59%UM:405/45%",
["Mevarick"] = "CT:103/10%EB:394/79%EM:501/84%",
["Jalinya"] = "UB:319/43%",
["Opulentus"] = "CM:41/16%",
["Zixi"] = "CM:145/20%",
["Pâwn"] = "CM:65/24%",
["Sanguis"] = "UM:194/25%",
["Husô"] = "CM:102/13%",
["Zzkorec"] = "RM:518/58%",
["Kryppto"] = "CM:35/3%",
["Skargoom"] = "RM:462/54%",
["Noserfatu"] = "RM:514/57%",
["Essa"] = "RM:652/71%",
["Lampbert"] = "UT:80/29%CB:64/7%UM:380/43%",
["Ette"] = "UM:280/49%",
["Aquilon"] = "RM:545/64%",
["Sanania"] = "CM:140/16%",
["Cotix"] = "CB:101/12%UM:417/47%",
["Horns"] = "UB:235/30%RM:329/71%",
["Bratlo"] = "CB:36/3%CM:54/7%",
["Öltanker"] = "UB:237/46%",
["Snushine"] = "RB:195/69%",
["Deaddot"] = "UM:297/35%",
["Duensch"] = "CM:34/5%",
["Doomham"] = "UB:111/29%",
["Ethernal"] = "CB:69/8%UM:261/32%",
["Darkdieter"] = "CB:62/7%RM:395/74%",
["Kysara"] = "RM:297/71%",
["Zahäcksleri"] = "RM:692/73%",
["Pokus"] = "CM:29/1%",
["Gaup"] = "CM:25/0%",
["Zerknaller"] = "CM:194/23%",
["Nival"] = "CT:125/16%UB:130/34%CM:128/18%",
["Jikesch"] = "CT:138/22%RB:371/74%UM:219/26%",
["Nevesmc"] = "UT:130/49%EB:675/86%RM:666/74%",
["Rizi"] = "CT:177/20%UB:233/29%CM:184/22%",
["Jeffjambo"] = "UT:89/36%CB:26/0%UM:261/30%",
["Healalotti"] = "CT:56/4%CB:64/5%CM:124/14%",
["Ophelius"] = "RB:511/73%RM:620/71%",
["Vallestro"] = "CT:83/15%RB:436/57%RM:306/65%",
["Tankone"] = "UB:274/32%UM:414/47%",
["Sicerey"] = "CB:64/6%CM:106/14%",
["Psychomantiz"] = "UB:126/33%UM:173/48%",
["Boin"] = "CB:135/14%",
["Zesha"] = "CM:26/0%",
["Misumaru"] = "CT:207/24%UB:227/28%RM:361/73%",
["Zaz"] = "CB:87/10%CM:109/13%",
["Vielalkohol"] = "CT:32/8%CB:98/24%CM:86/11%",
["Nanthak"] = "CB:94/22%CM:52/6%",
["Drdude"] = "CB:37/3%CM:118/17%",
["Phaerun"] = "UB:314/44%RM:335/70%",
["Swisscheese"] = "CB:54/5%UM:246/29%",
["Cranium"] = "CM:37/4%",
["Wrummwrumm"] = "RT:228/66%RB:511/73%EM:727/83%",
["Pázhiloyßbík"] = "CB:171/18%UM:262/30%",
["Deniádead"] = "RB:353/65%EM:578/76%",
["Madonner"] = "RT:223/63%RB:451/74%",
["Hickmcmauke"] = "UB:263/35%EM:365/78%",
["Mvbâam"] = "CM:135/19%",
["Healmut"] = "UM:80/29%",
["Keinzo"] = "RM:251/60%",
["Silverrain"] = "CM:79/10%",
["Epstain"] = "CM:51/6%",
["Nody"] = "RM:348/61%",
["Schnüf"] = "EB:352/78%",
["Abelkhain"] = "UB:199/48%RM:359/71%",
["Prinzesinn"] = "CM:47/12%",
["Liná"] = "UB:286/37%RM:482/54%",
["Míghty"] = "UB:237/31%CM:28/1%",
["Edra"] = "RM:234/58%",
["Dalíne"] = "RM:264/66%",
["Naishion"] = "RM:176/52%",
["Rustica"] = "CM:66/8%",
["Akryna"] = "UB:114/27%CM:63/21%",
["Smôkey"] = "CT:84/8%UB:176/43%CM:187/22%",
["Mavli"] = "EB:610/85%EM:593/89%",
["Deirdre"] = "UB:118/28%CM:83/24%",
["Rainerstoffi"] = "RM:198/57%",
["Derwaise"] = "UB:148/40%UM:151/48%",
["Malyx"] = "CB:38/3%",
["Highleer"] = "CM:175/21%",
["Xima"] = "UM:327/38%",
["Behli"] = "ET:298/85%EB:692/87%EM:847/88%",
["Boombear"] = "CB:55/13%CM:53/7%",
["Lumenkohl"] = "RB:380/53%UM:316/38%",
["Dadios"] = "RM:279/52%",
["Lucyx"] = "CT:72/13%CM:37/4%",
["Machauf"] = "CT:20/9%CM:89/13%",
["Azyrea"] = "ET:706/90%EB:723/91%EM:649/89%",
["Krestlyyn"] = "RB:379/53%CM:97/11%",
["Twinky"] = "CB:190/24%UM:301/35%",
["Farmsi"] = "EM:696/75%",
["Mariuh"] = "CM:183/24%",
["Mushboom"] = "EM:518/77%",
["Kapitänbaloo"] = "UB:74/46%RM:213/53%",
}
end
| 38.610267 | 53 | 0.553157 |
ddeecb0d5be4761b911ee5ab68808d0358531613 | 295 | h | C | criu/compel/include/uapi/handle-elf.h | depaul-dice/provenance-to-use | e16e2824fbbe0b4e09cc50f0d2bcec3400bf4b87 | [
"BSD-3-Clause"
] | null | null | null | criu/compel/include/uapi/handle-elf.h | depaul-dice/provenance-to-use | e16e2824fbbe0b4e09cc50f0d2bcec3400bf4b87 | [
"BSD-3-Clause"
] | null | null | null | criu/compel/include/uapi/handle-elf.h | depaul-dice/provenance-to-use | e16e2824fbbe0b4e09cc50f0d2bcec3400bf4b87 | [
"BSD-3-Clause"
] | null | null | null | #ifndef __COMPEL_UAPI_HANDLE_ELF__
#define __COMPEL_UAPI_HANDLE_ELF__
#define COMPEL_TYPE_INT (1u << 0)
#define COMPEL_TYPE_LONG (1u << 1)
#define COMPEL_TYPE_GOTPCREL (1u << 2)
typedef struct {
unsigned int offset;
unsigned int type;
long addend;
long value;
} compel_reloc_t;
#endif
| 18.4375 | 38 | 0.762712 |
4f2096b467106c87526143090b033b1381969d77 | 706 | sql | SQL | database.sql | Giovanni879/Fast_Change | a036afbb14f788f2a01f7367427be24cad68aa3f | [
"MIT"
] | null | null | null | database.sql | Giovanni879/Fast_Change | a036afbb14f788f2a01f7367427be24cad68aa3f | [
"MIT"
] | 1 | 2021-02-02T20:30:46.000Z | 2021-02-02T20:30:46.000Z | database.sql | Giovanni879/Fast_Change | a036afbb14f788f2a01f7367427be24cad68aa3f | [
"MIT"
] | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Author: Giovanni
* Created: 9 jul. 2020
*/
CREATE DATABASE fast;
use fast;
Create table usuario(
id_usuario int(3) auto_increment not null,
constraint pk_usr primary key(id_usuario)
)ENGINE=InnoDb;
create table billete(
id_billete int(11) auto_increment not null,
cantidad int(6) not null,
constraint pk_bi primary key(id_billete)
)ENGINE=InnoDb;
create table moneda(
id_moneda int(11) auto_increment not null,
cantidad int(6) not null,
constraint pk_mon primary key(id_moneda)
)ENGINE=InnoDb;
| 23.533333 | 79 | 0.750708 |
1cc0d73a29b00b0fc726625f45efec3e1d397a42 | 212 | swift | Swift | Project 9/Project 7/Petitions.swift | eihabkhan/HackingWithSwift | 8907cbb9bb60f5e311f7950aac045f0296bb1e29 | [
"Unlicense"
] | null | null | null | Project 9/Project 7/Petitions.swift | eihabkhan/HackingWithSwift | 8907cbb9bb60f5e311f7950aac045f0296bb1e29 | [
"Unlicense"
] | null | null | null | Project 9/Project 7/Petitions.swift | eihabkhan/HackingWithSwift | 8907cbb9bb60f5e311f7950aac045f0296bb1e29 | [
"Unlicense"
] | null | null | null | //
// Petitions.swift
// Project 7
//
// Created by Eihab Khan on 3/9/19.
// Copyright © 2019 Eihab Khan. All rights reserved.
//
import Foundation
struct Petitions: Codable {
var results: [Petition]
}
| 15.142857 | 53 | 0.665094 |
8a68814cd5204473bb9c0aa57351c6324b9d6ad6 | 151 | kt | Kotlin | keanu-project/src/main/java/io/improbable/keanu/tensor/FixedPointScalarOperations.kt | rs992214/keanu | f7f9b877aaaf9c9f732604f17da238e15dfdad13 | [
"MIT"
] | 153 | 2018-04-06T13:30:31.000Z | 2022-01-31T10:05:27.000Z | keanu-project/src/main/java/io/improbable/keanu/tensor/FixedPointScalarOperations.kt | shinnlok/keanu | c75b2a00571a0da93c6b1d5e9f0cbe09aebdde4d | [
"MIT"
] | 168 | 2018-04-06T16:37:33.000Z | 2021-09-27T21:43:54.000Z | keanu-project/src/main/java/io/improbable/keanu/tensor/FixedPointScalarOperations.kt | shinnlok/keanu | c75b2a00571a0da93c6b1d5e9f0cbe09aebdde4d | [
"MIT"
] | 46 | 2018-04-10T10:46:01.000Z | 2022-02-24T02:53:50.000Z | package io.improbable.keanu.tensor
interface FixedPointScalarOperations<T : Number> : NumberScalarOperations<T> {
fun mod(left: T, right: T): T
} | 25.166667 | 78 | 0.748344 |
857dc2b5ec247b1757b86cc652df9e97641d890d | 336 | js | JavaScript | app/rest.js | communicode-source/admin-panel | 40b3022c927ae3c1543514e75bca30a3cfce32b5 | [
"MIT"
] | null | null | null | app/rest.js | communicode-source/admin-panel | 40b3022c927ae3c1543514e75bca30a3cfce32b5 | [
"MIT"
] | null | null | null | app/rest.js | communicode-source/admin-panel | 40b3022c927ae3c1543514e75bca30a3cfce32b5 | [
"MIT"
] | null | null | null | import 'isomorphic-fetch';
import reduxApi from 'redux-api';;
const URL = 'http://localhost:3001';
export default reduxApi({
users: `${URL}/api/users`,
user: {
url: `${URL}/api/users/:id`,
virtual: true,
postfetch: [
({ dispatch, actions }) => dispatch(actions.items())
]
}
});
| 21 | 64 | 0.547619 |
149a557ccb6250233565403f4437f530abc1e25e | 499 | kt | Kotlin | src/main/kotlin/com/kryszak/gwatlin/api/token/GWTokenClient.kt | Kryszak/gwatlin | 03b79fda6b25bc0478144f03cd4df50eca7e21e6 | [
"MIT"
] | 2 | 2020-02-23T20:25:02.000Z | 2020-05-26T20:06:15.000Z | src/main/kotlin/com/kryszak/gwatlin/api/token/GWTokenClient.kt | Kryszak/gwatlin | 03b79fda6b25bc0478144f03cd4df50eca7e21e6 | [
"MIT"
] | 2 | 2020-01-04T13:11:09.000Z | 2021-02-11T19:02:35.000Z | src/main/kotlin/com/kryszak/gwatlin/api/token/GWTokenClient.kt | Kryszak/gwatlin | 03b79fda6b25bc0478144f03cd4df50eca7e21e6 | [
"MIT"
] | null | null | null | package com.kryszak.gwatlin.api.token
import com.kryszak.gwatlin.api.token.model.Token
import com.kryszak.gwatlin.clients.token.TokenClient
/**
* Client for token info endpoint
* @see com.kryszak.gwatlin.api.exception.ApiRequestException for errors
*/
class GWTokenClient(apiKey: String) {
private val tokenClient: TokenClient = TokenClient(apiKey)
/**
* Retrieves information about token
*/
fun getTokenInfo(): Token {
return tokenClient.getTokenInfo()
}
}
| 23.761905 | 72 | 0.727455 |
595163fc6a03e95bcc69fa7de7a71863c811d23e | 2,718 | h | C | src/sources/gimp/gtk/gtkscrolledwindow.h | waddlesplash/Photon | a93eeed8c156bde5f3721f74ebe7c21aa7e12459 | [
"BSD-3-Clause"
] | 4 | 2017-06-13T22:51:50.000Z | 2019-04-19T20:02:27.000Z | src/sources/gimp/gtk/gtkscrolledwindow.h | waddlesplash/Photon | a93eeed8c156bde5f3721f74ebe7c21aa7e12459 | [
"BSD-3-Clause"
] | null | null | null | src/sources/gimp/gtk/gtkscrolledwindow.h | waddlesplash/Photon | a93eeed8c156bde5f3721f74ebe7c21aa7e12459 | [
"BSD-3-Clause"
] | 1 | 2020-10-26T09:00:17.000Z | 2020-10-26T09:00:17.000Z | /* GTK - The GIMP Toolkit
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __GTK_SCROLLED_WINDOW_H__
#define __GTK_SCROLLED_WINDOW_H__
#include <gdk/gdk.h>
#include <gtk/gtkhscrollbar.h>
#include <gtk/gtkvscrollbar.h>
#include <gtk/gtkviewport.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define GTK_SCROLLED_WINDOW(obj) GTK_CHECK_CAST (obj, gtk_scrolled_window_get_type (), GtkScrolledWindow)
#define GTK_SCROLLED_WINDOW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_scrolled_window_get_type (), GtkScrolledWindowClass)
#define GTK_IS_SCROLLED_WINDOW(obj) GTK_CHECK_TYPE (obj, gtk_scrolled_window_get_type ())
typedef struct _GtkScrolledWindow GtkScrolledWindow;
typedef struct _GtkScrolledWindowClass GtkScrolledWindowClass;
struct _GtkScrolledWindow
{
GtkContainer container;
GtkWidget *viewport;
GtkWidget *hscrollbar;
GtkWidget *vscrollbar;
guint8 hscrollbar_policy;
guint8 vscrollbar_policy;
gint hscrollbar_visible : 1;
gint vscrollbar_visible : 1;
};
struct _GtkScrolledWindowClass
{
GtkContainerClass parent_class;
gint scrollbar_spacing;
};
guint gtk_scrolled_window_get_type (void);
GtkWidget* gtk_scrolled_window_new (GtkAdjustment *hadjustment,
GtkAdjustment *vadjustment);
void gtk_scrolled_window_construct (GtkScrolledWindow *scrolled_window,
GtkAdjustment *hadjustment,
GtkAdjustment *vadjustment);
GtkAdjustment* gtk_scrolled_window_get_hadjustment (GtkScrolledWindow *scrolled_window);
GtkAdjustment* gtk_scrolled_window_get_vadjustment (GtkScrolledWindow *scrolled_window);
void gtk_scrolled_window_set_policy (GtkScrolledWindow *scrolled_window,
GtkPolicyType hscrollbar_policy,
GtkPolicyType vscrollbar_policy);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GTK_SCROLLED_WINDOW_H__ */
| 32.746988 | 127 | 0.754967 |
afb536f9b53addf91b079510de8949e37cee2641 | 1,851 | html | HTML | js/canvas-demo/index.html | FC0511/Learning | 0d7012c6470cbe04379d6d5b554a057097e1f5f0 | [
"MIT"
] | null | null | null | js/canvas-demo/index.html | FC0511/Learning | 0d7012c6470cbe04379d6d5b554a057097e1f5f0 | [
"MIT"
] | null | null | null | js/canvas-demo/index.html | FC0511/Learning | 0d7012c6470cbe04379d6d5b554a057097e1f5f0 | [
"MIT"
] | 1 | 2020-02-19T12:28:52.000Z | 2020-02-19T12:28:52.000Z | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>canvas</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
</style>
</head>
<body>
<canvas id="canvas" width="500" height="500"></canvas>
<script>
let canvas = document.querySelector("#canvas");
canvas.width = document.documentElement.clientWidth;
canvas.height = document.documentElement.clientHeight;
let ctx = canvas.getContext('2d');
ctx.strokeStyle = "#0000ff";
ctx.lineWidth = 5;
ctx.lineCap = 'round';
let isDraw = false; // 是否开始绘制
let lastPoint = null; // 初试坐标
let isTouchDevice = 'ontouchstart' in document.documentElement; // 判断是否为移动设备
if (isTouchDevice) {
canvas.ontouchstart = (e) => {
lastPoint = [e.touches[0].clientX, e.touches[0].clientY];
}
canvas.ontouchmove = (e) => {
let x = e.touches[0].clientX,
y = e.touches[0].clientY;
ctx.beginPath();
ctx.moveTo(lastPoint[0], lastPoint[1]);
// ctx.moveTo(0, 0);
ctx.lineTo(x, y);
ctx.stroke();
lastPoint = [x, y];
}
} else {
canvas.onmousedown = (e) => {
isDraw = true;
lastPoint = [e.clientX, e.clientY];
}
canvas.onmousemove = (e) => {
let x = e.clientX,
y = e.clientY;
if (isDraw) {
ctx.beginPath();
ctx.moveTo(lastPoint[0], lastPoint[1]);
// ctx.moveTo(0, 0);
ctx.lineTo(x, y);
ctx.stroke();
lastPoint = [x, y];
}
}
canvas.onmouseup = (e) => {
isDraw = false;
}
}
</script>
</body>
</html> | 23.43038 | 80 | 0.482442 |
8e425d3d652d8b08f98c1160af30874ead1b2f26 | 1,859 | rb | Ruby | vendor/cache/ruby/2.5.0/gems/mustermann19-0.4.4/lib/mustermann/template.rb | saydulk/therubyracer | 912bcd71b1fb6036a6195ef94464729df16b8d79 | [
"MIT"
] | 5 | 2015-10-13T02:41:50.000Z | 2016-11-17T15:31:23.000Z | vendor/cache/ruby/2.5.0/gems/mustermann19-0.4.4/lib/mustermann/template.rb | saydulk/therubyracer | 912bcd71b1fb6036a6195ef94464729df16b8d79 | [
"MIT"
] | 1 | 2016-06-20T01:14:23.000Z | 2016-06-20T01:14:23.000Z | vendor/cache/ruby/2.5.0/gems/mustermann19-0.4.4/lib/mustermann/template.rb | saydulk/therubyracer | 912bcd71b1fb6036a6195ef94464729df16b8d79 | [
"MIT"
] | 3 | 2020-09-13T17:32:16.000Z | 2021-03-03T16:33:04.000Z | require 'mustermann/ast/pattern'
module Mustermann
# URI template pattern implementation.
#
# @example
# Mustermann.new('/{foo}') === '/bar' # => true
#
# @see Mustermann::Pattern
# @see file:README.md#template Syntax description in the README
# @see http://tools.ietf.org/html/rfc6570 RFC 6570
class Template < AST::Pattern
register :template, :uri_template
on ?{ do |char|
variable = proc do
start = pos
match = expect(/(?<name>\w+)(?:\:(?<prefix>\d{1,4})|(?<explode>\*))?/)
node(:variable, match[:name], prefix: match[:prefix], explode: match[:explode], start: start)
end
operator = buffer.scan(/[\+\#\.\/;\?\&\=\,\!\@\|]/)
expression = node(:expression, [variable[]], operator: operator) { variable[] if scan(?,) }
expression if expect(?})
end
on(?}) { |c| unexpected(c) }
# @!visibility private
def compile(*args)
options = args.last.is_a?(Hash) ? args.pop : {}
@split_params = {}
super(*args, options.merge(:split_params => @split_params))
end
# @!visibility private
def map_param(key, value)
return super unless variable = @split_params[key]
value = value.split variable[:separator]
value.map! { |e| e.sub(/\A#{key}=/, '') } if variable[:parametric]
value.map! { |e| super(key, e) }
end
# @!visibility private
def always_array?(key)
@split_params.include? key
end
# Identity patterns support generating templates (the logic is quite complex, though).
#
# @example (see Mustermann::Pattern#to_templates)
# @param (see Mustermann::Pattern#to_templates)
# @return (see Mustermann::Pattern#to_templates)
# @see Mustermann::Pattern#to_templates
def to_templates
[to_s]
end
private :compile, :map_param, :always_array?
end
end
| 29.983871 | 101 | 0.612157 |
2a2142e966df4e575cf07d8573eaa79b6b05e689 | 886 | java | Java | src/main/java/dk/in2isoft/onlineobjects/modules/language/WordRelationModification.java | Humanise/onlineobjects | 18c9e7bcbac50eecdf1efba1a1010ba8982852c4 | [
"Unlicense"
] | 1 | 2018-03-16T17:11:50.000Z | 2018-03-16T17:11:50.000Z | src/main/java/dk/in2isoft/onlineobjects/modules/language/WordRelationModification.java | Humanise/onlineobjects | 18c9e7bcbac50eecdf1efba1a1010ba8982852c4 | [
"Unlicense"
] | 21 | 2018-03-09T22:49:20.000Z | 2022-02-16T00:55:18.000Z | src/main/java/dk/in2isoft/onlineobjects/modules/language/WordRelationModification.java | Humanise/onlineobjects | 18c9e7bcbac50eecdf1efba1a1010ba8982852c4 | [
"Unlicense"
] | null | null | null | package dk.in2isoft.onlineobjects.modules.language;
public class WordRelationModification {
private String fromSourceId;
private String toSourceId;
private String relationKind;
public String getFromSourceId() {
return fromSourceId;
}
public void setFromSourceId(String fromSourceId) {
this.fromSourceId = fromSourceId;
}
public String getToSourceId() {
return toSourceId;
}
public void setToSourceId(String toSourceId) {
this.toSourceId = toSourceId;
}
public String getRelationKind() {
return relationKind;
}
public void setRelationKind(String relationKind) {
this.relationKind = relationKind;
}
public static WordRelationModification create(String from, String kind, String to) {
WordRelationModification mod = new WordRelationModification();
mod.setFromSourceId(from);
mod.setRelationKind(kind);
mod.setToSourceId(to);
return mod;
}
}
| 22.15 | 85 | 0.772009 |
91a92fe0fd6690753ada0d6a4de9107ef7157da9 | 3,761 | asm | Assembly | autovectorization-tests/results/msvc19.28.29333-avx2/accumulate_default.asm | clayne/toys | ec06411e2d3b920403607888d4a573e41390ee5b | [
"BSD-2-Clause"
] | null | null | null | autovectorization-tests/results/msvc19.28.29333-avx2/accumulate_default.asm | clayne/toys | ec06411e2d3b920403607888d4a573e41390ee5b | [
"BSD-2-Clause"
] | null | null | null | autovectorization-tests/results/msvc19.28.29333-avx2/accumulate_default.asm | clayne/toys | ec06411e2d3b920403607888d4a573e41390ee5b | [
"BSD-2-Clause"
] | null | null | null | _v$ = 8 ; size = 4
unsigned int accumulate_epi32(std::vector<int,std::allocator<int> > const &) PROC ; accumulate_epi32, COMDAT
mov ecx, DWORD PTR _v$[esp-4]
xor edx, edx
push ebx
push esi
push edi
mov edi, DWORD PTR [ecx+4]
xor ebx, ebx
mov ecx, DWORD PTR [ecx]
mov eax, edi
sub eax, ecx
xor esi, esi
add eax, 3
shr eax, 2
cmp ecx, edi
cmova eax, ebx
test eax, eax
je SHORT $LN23@accumulate
cmp eax, 16 ; 00000010H
jb SHORT $LN23@accumulate
and eax, -16 ; fffffff0H
vpxor xmm1, xmm1, xmm1
vpxor xmm2, xmm2, xmm2
npad 11
$LL16@accumulate:
vpaddd ymm1, ymm1, YMMWORD PTR [ecx]
vpaddd ymm2, ymm2, YMMWORD PTR [ecx+32]
add esi, 16 ; 00000010H
add ecx, 64 ; 00000040H
cmp esi, eax
jne SHORT $LL16@accumulate
vpaddd ymm0, ymm1, ymm2
vphaddd ymm0, ymm0, ymm0
vphaddd ymm1, ymm0, ymm0
vextracti128 xmm0, ymm1, 1
vpaddd xmm0, xmm1, xmm0
vmovd edx, xmm0
$LN23@accumulate:
cmp ecx, edi
je SHORT $LN29@accumulate
$LL22@accumulate:
add edx, DWORD PTR [ecx]
add ecx, 4
cmp ecx, edi
jne SHORT $LL22@accumulate
$LN29@accumulate:
pop edi
pop esi
mov eax, edx
pop ebx
vzeroupper
ret 0
unsigned int accumulate_epi32(std::vector<int,std::allocator<int> > const &) ENDP ; accumulate_epi32
_v$ = 8 ; size = 4
unsigned int accumulate_epi8(std::vector<signed char,std::allocator<signed char> > const &) PROC ; accumulate_epi8, COMDAT
mov ecx, DWORD PTR _v$[esp-4]
xor eax, eax
push ebx
push esi
push edi
mov edi, DWORD PTR [ecx+4]
xor ebx, ebx
mov ecx, DWORD PTR [ecx]
mov edx, edi
sub edx, ecx
xor esi, esi
cmp ecx, edi
cmova edx, ebx
test edx, edx
je SHORT $LN23@accumulate
cmp edx, 16 ; 00000010H
jb SHORT $LN23@accumulate
and edx, -16 ; fffffff0H
vpxor xmm1, xmm1, xmm1
vpxor xmm2, xmm2, xmm2
npad 1
$LL16@accumulate:
vmovq xmm0, QWORD PTR [ecx]
vpmovsxbd ymm0, xmm0
vpaddd ymm1, ymm0, ymm1
vmovq xmm0, QWORD PTR [ecx+8]
add esi, 16 ; 00000010H
add ecx, 16 ; 00000010H
vpmovsxbd ymm0, xmm0
vpaddd ymm2, ymm0, ymm2
cmp esi, edx
jne SHORT $LL16@accumulate
vpaddd ymm0, ymm1, ymm2
vphaddd ymm0, ymm0, ymm0
vphaddd ymm1, ymm0, ymm0
vextracti128 xmm0, ymm1, 1
vpaddd xmm0, xmm1, xmm0
vmovd eax, xmm0
$LN23@accumulate:
cmp ecx, edi
je SHORT $LN15@accumulate
$LL22@accumulate:
movsx edx, BYTE PTR [ecx]
inc ecx
add eax, edx
cmp ecx, edi
jne SHORT $LL22@accumulate
$LN15@accumulate:
pop edi
pop esi
pop ebx
vzeroupper
ret 0
unsigned int accumulate_epi8(std::vector<signed char,std::allocator<signed char> > const &) ENDP ; accumulate_epi8
| 33.580357 | 122 | 0.475937 |
c2f5c36885507db5e728026d188315a5b21a47bc | 74 | go | Go | tools.go | QuangTung97/bigcache | 65e1684183b11363986dfb7d7c53f3c19771d68c | [
"MIT"
] | 3 | 2021-12-01T03:00:29.000Z | 2022-01-14T08:22:02.000Z | tools.go | QuangTung97/otelwrap | 02a435406fa15e3014ed2bd81cce1f7b0c6e86f4 | [
"MIT"
] | null | null | null | tools.go | QuangTung97/otelwrap | 02a435406fa15e3014ed2bd81cce1f7b0c6e86f4 | [
"MIT"
] | null | null | null | // +build tools
package tools
import (
_ "github.com/mgechev/revive"
)
| 9.25 | 30 | 0.689189 |
0fadd15cf1551acdf433873c13311e54521f18bf | 1,537 | sql | SQL | 2 ano/pc2/ProjetoCliente/clientes.sql | ThiagoPereira232/tecnico-informatica | 6b55ecf34501b38052943acf1b37074e3472ce6e | [
"MIT"
] | 1 | 2021-09-24T16:26:04.000Z | 2021-09-24T16:26:04.000Z | 2 ano/pc2/ProjetoCliente/clientes.sql | ThiagoPereira232/tecnico-informatica | 6b55ecf34501b38052943acf1b37074e3472ce6e | [
"MIT"
] | null | null | null | 2 ano/pc2/ProjetoCliente/clientes.sql | ThiagoPereira232/tecnico-informatica | 6b55ecf34501b38052943acf1b37074e3472ce6e | [
"MIT"
] | null | null | null | -- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Apr 19, 2021 at 04:16 PM
-- Server version: 5.7.25
-- PHP Version: 7.1.26
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `cliente`
--
-- --------------------------------------------------------
--
-- Table structure for table `clientes`
--
CREATE TABLE `cliente` (
`codigo` int(11) NOT NULL,
`nome` varchar(50) NOT NULL,
`endereco` varchar(100) NOT NULL,
`cidade` text NOT NULL,
`uf` text NOT NULL,
`telefone` text NOT NULL,
`renda` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `clientes`
--
INSERT INTO `cliente` (`codigo`, `nome`, `endereco`, `cidade`, `uf`, `telefone`, `renda`) VALUES
(4564212, 'zxcz', 'zxczxc', 'zxczxc', 'PI', '(44)44444-4444', 500),
(4444, 'asdasd', 'asdasd', 'asdasd', 'asdasd', '555555', 222),
(455555, 'dfgdfg', 'fgdfg', 'dfgdfg', 'fdgdg', '646545454', 78974),
(46546, 'dsfsdf', 'sdfsdf', 'sdfsdf', 'dsfsdf', '45644564', 1000);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 27.945455 | 96 | 0.659727 |
74579d3c8f502480c416c58c5bf84332542e8218 | 47,245 | html | HTML | index.html | OSGeo/gdal-docs | 9a934d4ea4e578ddeceb06b03e12f35f6f298780 | [
"MIT"
] | 13 | 2019-03-18T03:18:29.000Z | 2021-10-08T19:00:32.000Z | index.html | OSGeo/gdal-docs | 9a934d4ea4e578ddeceb06b03e12f35f6f298780 | [
"MIT"
] | 3 | 2019-11-06T15:51:30.000Z | 2021-02-11T21:03:40.000Z | index.html | OSGeo/gdal-docs | 9a934d4ea4e578ddeceb06b03e12f35f6f298780 | [
"MIT"
] | 8 | 2019-11-06T15:43:01.000Z | 2021-09-29T01:11:33.000Z | <!DOCTYPE html>
<html class="writer-html5" lang="en" >
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GDAL — GDAL documentation</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/gdal.css" type="text/css" />
<link rel="shortcut icon" href="_static/favicon.png"/>
<link rel="canonical" href="https://gdal.org/index.html"/>
<!--[if lt IE 9]>
<script src="_static/js/html5shiv.min.js"></script>
<![endif]-->
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/jquery.js"></script>
<script src="_static/underscore.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/js/theme.js"></script>
<link rel="author" title="About these documents" href="about.html" />
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="Download" href="download.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" style="background: white" >
<a href="#">
<img src="_static/gdalicon.png" class="logo" alt="Logo"/>
</a>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<ul>
<li class="toctree-l1"><a class="reference internal" href="download.html">Download</a></li>
<li class="toctree-l1"><a class="reference internal" href="programs/index.html">Programs</a></li>
<li class="toctree-l1"><a class="reference internal" href="drivers/raster/index.html">Raster drivers</a></li>
<li class="toctree-l1"><a class="reference internal" href="drivers/vector/index.html">Vector drivers</a></li>
<li class="toctree-l1"><a class="reference internal" href="user/index.html">User</a></li>
<li class="toctree-l1"><a class="reference internal" href="api/index.html">API</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorials/index.html">Tutorials</a></li>
<li class="toctree-l1"><a class="reference internal" href="development/index.html">Development</a></li>
<li class="toctree-l1"><a class="reference internal" href="community/index.html">Community</a></li>
<li class="toctree-l1"><a class="reference internal" href="sponsors/index.html">Sponsors</a></li>
<li class="toctree-l1"><a class="reference internal" href="contributing/index.html">How to contribute?</a></li>
<li class="toctree-l1"><a class="reference internal" href="faq.html">FAQ</a></li>
<li class="toctree-l1"><a class="reference internal" href="license.html">License</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" style="background: white" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="#">GDAL</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="breadcrumbs navigation">
<ul class="wy-breadcrumbs">
<li><a href="#"> GDAL documentation </a></li>
<li class="wy-breadcrumbs-aside">
<a href="https://github.com/OSGeo/gdal/edit//master/gdal/doc/source/index.rst" class="fa fa-github"> Edit on GitHub</a>
</li>
</ul>
<div class="rst-breadcrumbs-buttons" role="navigation" aria-label="breadcrumb navigation">
<a href="download.html" class="btn btn-neutral float-right" title="Download" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
</div>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<div class="section" id="gdal">
<h1>GDAL<a class="headerlink" href="#gdal" title="Permalink to this headline"></a></h1>
<p>GDAL is a translator library for raster and vector geospatial data formats that is released under an X/MIT style Open Source <a class="reference internal" href="license.html#license"><span class="std std-ref">License</span></a> by the <a class="reference external" href="http://www.osgeo.org/">Open Source Geospatial Foundation</a>. As a library, it presents a single raster abstract data model and single vector abstract data model to the calling application for all supported formats. It also comes with a variety of useful command line utilities for data translation and processing. The <a class="reference external" href="https://github.com/OSGeo/gdal/blob/v3.3.2/gdal/NEWS">NEWS</a> page describes the September 2021 GDAL/OGR 3.3.2 release.</p>
<a class="reference external image-reference" href="http://www.osgeo.org/"><img alt="OSGeo project" src="_images/OSGeo_project.png" /></a>
<p>See <a class="reference internal" href="software_using_gdal.html#software-using-gdal"><span class="std std-ref">Software using GDAL</span></a></p>
<p>This documentation is also available as a <a class="reference external" href="gdal.pdf">PDF file</a>.</p>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="download.html">Download</a><ul>
<li class="toctree-l2"><a class="reference internal" href="download.html#current-releases">Current Releases</a></li>
<li class="toctree-l2"><a class="reference internal" href="download.html#past-releases">Past Releases</a></li>
<li class="toctree-l2"><a class="reference internal" href="download.html#development-source">Development Source</a></li>
<li class="toctree-l2"><a class="reference internal" href="download.html#binaries">Binaries</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="programs/index.html">Programs</a><ul>
<li class="toctree-l2"><a class="reference internal" href="programs/index.html#raster-programs">Raster programs</a></li>
<li class="toctree-l2"><a class="reference internal" href="programs/index.html#multidimensional-raster-programs">Multidimensional Raster programs</a></li>
<li class="toctree-l2"><a class="reference internal" href="programs/index.html#vector-programs">Vector programs</a></li>
<li class="toctree-l2"><a class="reference internal" href="programs/index.html#geographic-network-programs">Geographic network programs</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="drivers/raster/index.html">Raster drivers</a><ul>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/aaigrid.html">AAIGrid – Arc/Info ASCII Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ace2.html">ACE2 – ACE2</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/adrg.html">ADRG – ADRG/ARC Digitized Raster Graphics (.gen/.thf)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/aig.html">AIG – Arc/Info Binary Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/airsar.html">AIRSAR – AIRSAR Polarimetric Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/arg.html">ARG – Azavea Raster Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/bag.html">BAG – Bathymetry Attributed Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/blx.html">BLX – Magellan BLX Topo File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/bmp.html">BMP – Microsoft Windows Device Independent Bitmap</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/bsb.html">BSB – Maptech/NOAA BSB Nautical Chart Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/bt.html">BT – VTP .bt Binary Terrain Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/byn.html">BYN - Natural Resources Canada’s Geoid file format (.byn)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/cad.html">CAD – AutoCAD DWG raster layer</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/cals.html">CALS – CALS Type 1</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ceos.html">CEOS – CEOS Image</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/coasp.html">COASP – DRDC COASP SAR Processor Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/cog.html">COG – Cloud Optimized GeoTIFF generator</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/cosar.html">COSAR – TerraSAR-X Complex SAR Data Product</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/cpg.html">CPG – Convair PolGASP data</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ctable2.html">CTable2 – CTable2 Datum Grid Shift</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ctg.html">CTG – USGS LULC Composite Theme Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/daas.html">DAAS (Airbus DS Intelligence Data As A Service driver)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/db2.html">DB2 raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/dds.html">DDS – DirectDraw Surface</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/derived.html">DERIVED – Derived subdatasets driver</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/dimap.html">DIMAP – Spot DIMAP</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/dipex.html">DIPEx – ELAS DIPEx</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/dods.html">DODS – OPeNDAP Grid Client</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/doq1.html">DOQ1 – First Generation USGS DOQ</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/doq2.html">DOQ2 – New Labelled USGS DOQ</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/dted.html">DTED – Military Elevation Data</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ecrgtoc.html">ECRGTOC – ECRG Table Of Contents (TOC.xml)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ecw.html">ECW – Enhanced Compressed Wavelets (.ecw)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/eedai.html">EEDAI - Google Earth Engine Data API Image</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ehdr.html">EHdr – ESRI .hdr Labelled</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/eir.html">EIR – Erdas Imagine Raw</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/elas.html">ELAS - Earth Resources Laboratory Applications Software</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/envi.html">ENVI – ENVI .hdr Labelled Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/esat.html">ESAT – Envisat Image Product</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/esric.html">ESRIC – Esri Compact Cache</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ers.html">ERS – ERMapper .ERS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/exr.html">EXR – Extended Dynamic Range Image File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/fast.html">FAST – EOSAT FAST Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/fit.html">FIT – FIT</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/fits.html">FITS – Flexible Image Transport System</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/fujibas.html">FujiBAS – Fuji BAS Scanner Image</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/genbin.html">GenBin – Generic Binary (.hdr labelled)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/georaster.html">Oracle Spatial GeoRaster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gff.html">GFF – Sandia National Laboratories GSAT File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gif.html">GIF – Graphics Interchange Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gmt.html">GMT – GMT Compatible netCDF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gpkg.html">GPKG – GeoPackage raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/grass.html">GRASS Raster Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/grassasciigrid.html">GRASSASCIIGrid – GRASS ASCII Grid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/grib.html">GRIB – WMO General Regularly-distributed Information in Binary form</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gs7bg.html">GS7BG – Golden Software Surfer 7 Binary Grid File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gsag.html">GSAG – Golden Software ASCII Grid File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gsbg.html">GSBG – Golden Software Binary Grid File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gsc.html">GSC – GSC Geogrid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gta.html">GTA - Generic Tagged Arrays</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gtiff.html">GTiff – GeoTIFF File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/gxf.html">GXF – Grid eXchange File</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/hdf4.html">HDF4 – Hierarchical Data Format Release 4 (HDF4)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/hdf5.html">HDF5 – Hierarchical Data Format Release 5 (HDF5)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/heif.html">HEIF / HEIC – ISO/IEC 23008-12:2017 High Efficiency Image File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/hf2.html">HF2 – HF2/HFZ heightfield raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/hfa.html">HFA – Erdas Imagine .img</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ida.html">IDA – Image Display and Analysis</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/Idrisi.html">RST – Idrisi Raster Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ilwis.html">ILWIS – Raster Map</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/intergraphraster.html">INGR – Intergraph Raster Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/iris.html">IRIS – Vaisala’s weather radar software format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/isce.html">ISCE – ISCE</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/isg.html">ISG – International Service for the Geoid</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/isis2.html">ISIS2 – USGS Astrogeology ISIS Cube (Version 2)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/isis3.html">ISIS3 – USGS Astrogeology ISIS Cube (Version 3)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jdem.html">JDEM – Japanese DEM (.mem)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jp2ecw.html">JP2ECW – ERDAS JPEG2000 (.jp2)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jp2kak.html">JP2KAK – JPEG-2000 (based on Kakadu)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jp2lura.html">JP2Lura – JPEG2000 driver based on Lurawave library</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jp2mrsid.html">JP2MrSID – JPEG2000 via MrSID SDK</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jp2openjpeg.html">JP2OpenJPEG – JPEG2000 driver based on OpenJPEG library</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jpeg2000.html">JPEG2000 – Implementation of the JPEG-2000 part 1</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jpegls.html">JPEGLS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jpeg.html">JPEG – JPEG JFIF File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/jpipkak.html">JPIPKAK - JPIP Streaming</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/kea.html">KEA</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/kmlsuperoverlay.html">KMLSuperoverlay – KMLSuperoverlay</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/kro.html">KRO – KOLOR Raw format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/lan.html">LAN – Erdas 7.x .LAN and .GIS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/l1b.html">L1B – NOAA Polar Orbiter Level 1b Data Set (AVHRR)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/lcp.html">LCP – FARSITE v.4 LCP Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/leveller.html">Leveller – Daylon Leveller Heightfield</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/loslas.html">LOSLAS – NADCON .los/.las Datum Grid Shift</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/map.html">MAP – OziExplorer .MAP</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/marfa.html">MRF – Meta Raster Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mbtiles.html">MBTiles</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mem.html">MEM – In Memory Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mff.html">MFF – Vexcel MFF Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mff2.html">MFF2 – Vexcel MFF2 Image</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mg4lidar.html">MG4Lidar – MrSID/MG4 LiDAR Compression / Point Cloud View files</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/mrsid.html">MrSID – Multi-resolution Seamless Image Database</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/msg.html">MSG – Meteosat Second Generation</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/msgn.html">MSGN – Meteosat Second Generation (MSG) Native Archive Format (.nat)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ndf.html">NDF – NLAPS Data Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/netcdf.html">NetCDF: Network Common Data Form</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ngsgeoid.html">NGSGEOID - NOAA NGS Geoid Height Grids</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ngw.html">NGW – NextGIS Web</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/nitf.html">NITF – National Imagery Transmission Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ntv2.html">NTv2 – NTv2 Datum Grid Shift</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/nwtgrd.html">NWT_GRD/NWT_GRC – Northwood/Vertical Mapper File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ogcapi.html">OGCAPI – OGC API Tiles / Maps / Coverage</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/ozi.html">OZI – OZF2/OZFX3 raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/palsar.html">JAXA PALSAR Processed Products</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/paux.html">PAux – PCI .aux Labelled Raw Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pcidsk.html">PCIDSK – PCI Geomatics Database File</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pcraster.html">PCRaster – PCRaster raster file format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pdf.html">PDF – Geospatial PDF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pds.html">PDS – Planetary Data System v3</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pds4.html">PDS4 – NASA Planetary Data System (Version 4)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/plmosaic.html">PLMosaic (Planet Labs Mosaics API)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/png.html">PNG – Portable Network Graphics</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/pnm.html">PNM – Netpbm (.pgm, .ppm)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/postgisraster.html">PostGISRaster – PostGIS Raster driver</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/prf.html">PHOTOMOD Raster File</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rasdaman.html">Rasdaman GDAL driver</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rasterlite.html">Rasterlite - Rasters in SQLite DB</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rasterlite2.html">RasterLite2 - Rasters in SQLite DB</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/r.html">R – R Object Data Store</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rda.html">RDA (DigitalGlobe Raster Data Access)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rdb.html">RDB - <em>RIEGL</em> Database</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rik.html">RIK – Swedish Grid Maps</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rmf.html">RMF – Raster Matrix Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/roi_pac.html">ROI_PAC – ROI_PAC</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rpftoc.html">RPFTOC – Raster Product Format/RPF (a.toc)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rraster.html">RRASTER – R Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/rs2.html">RS2 – RadarSat 2 XML Product</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/safe.html">SAFE – Sentinel-1 SAFE XML Product</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sar_ceos.html">SAR_CEOS – CEOS SAR Image</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sdat.html">SAGA – SAGA GIS Binary Grid File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sdts.html">SDTS – USGS SDTS DEM</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sentinel2.html">SENTINEL2 – Sentinel-2 Products</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sgi.html">SGI – SGI Image Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/sigdem.html">SIGDEM – Scaled Integer Gridded DEM</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/snodas.html">SNODAS – Snow Data Assimilation System</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/srp.html">SRP – Standard Product Format (ASRP/USRP) (.gen)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/srtmhgt.html">SRTMHGT – SRTM HGT Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/stacit.html">STACIT - Spatio-Temporal Asset Catalog Items</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/stacta.html">STACTA - Spatio-Temporal Asset Catalog Tiled Assets</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/terragen.html">Terragen – Terragen™ Terrain File</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/tga.html">TGA – TARGA Image File Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/til.html">TIL – EarthWatch/DigitalGlobe .TIL</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/tiledb.html">TileDB - TileDB</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/tsx.html">TSX – TerraSAR-X Product</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/usgsdem.html">USGSDEM – USGS ASCII DEM (and CDED)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/vicar.html">VICAR – VICAR</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/vrt.html">VRT – GDAL Virtual Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/wcs.html">WCS – OGC Web Coverage Service</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/webp.html">WEBP - WEBP</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/wms.html">WMS – Web Map Services</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/wmts.html">WMTS – OGC Web Map Tile Service</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/xpm.html">XPM – X11 Pixmap</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/xyz.html">XYZ – ASCII Gridded XYZ</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/zarr.html">Zarr</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/raster/zmap.html">ZMap – ZMap Plus Grid</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="drivers/vector/index.html">Vector drivers</a><ul>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/amigocloud.html">AmigoCloud</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ao.html">ESRI ArcObjects</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/arcgen.html">ARCGEN - Arc/Info Generate</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/avcbin.html">Arc/Info Binary Coverage</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/avce00.html">Arc/Info E00 (ASCII) Coverage</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/cad.html">CAD – AutoCAD DWG</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/carto.html">Carto</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/cloudant.html">Cloudant – Cloudant</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/couchdb.html">CouchDB - CouchDB/GeoCouch</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/csv.html">Comma Separated Value (.csv)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/csw.html">CSW - OGC CSW (Catalog Service for the Web)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/db2.html">DB2 Spatial</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/dgn.html">Microstation DGN</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/dgnv8.html">Microstation DGN v8</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/dods.html">DODS/OPeNDAP</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/dwg.html">AutoCAD DWG</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/dxf.html">AutoCAD DXF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/eeda.html">Google Earth Engine Data API</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/edigeo.html">EDIGEO</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/elasticsearch.html">Elasticsearch: Geographically Encoded Objects for Elasticsearch</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/esrijson.html">ESRIJSON / FeatureService driver</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/filegdb.html">ESRI File Geodatabase (FileGDB)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/flatgeobuf.html">FlatGeobuf</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/fme.html">FMEObjects Gateway</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/geoconcept.html">GeoConcept text export</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/geojson.html">GeoJSON</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/geojsonseq.html">GeoJSONSeq: sequence of GeoJSON features</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/geomedia.html">Geomedia MDB database</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/georss.html">GeoRSS : Geographically Encoded Objects for RSS feeds</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gmlas.html">GMLAS - Geography Markup Language (GML) driven by application schemas</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gml.html">GML - Geography Markup Language</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gmt.html">GMT ASCII Vectors (.gmt)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gpkg.html">GPKG – GeoPackage vector</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gpsbabel.html">GPSBabel</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gpx.html">GPX - GPS Exchange Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/grass.html">GRASS Vector Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/gtm.html">GTM - GPS TrackMaker</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/idb.html">IDB</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/idrisi.html">Idrisi Vector (.VCT)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ili.html">“INTERLIS 1” and “INTERLIS 2” drivers</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ingres.html">INGRES</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/jml.html">JML: OpenJUMP JML format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/kml.html">KML - Keyhole Markup Language</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/libkml.html">LIBKML Driver (.kml .kmz)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/lvbag.html">Dutch Kadaster LV BAG 2.0 Extract</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mapml.html">MapML</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mdb.html">Access MDB databases</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/memory.html">Memory</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mitab.html">MapInfo TAB and MIF/MID</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mongodb.html">MongoDB</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mongodbv3.html">MongoDBv3</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mssqlspatial.html">MSSQLSpatial - Microsoft SQL Server Spatial Database</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mvt.html">MVT: Mapbox Vector Tiles</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/mysql.html">MySQL</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/nas.html">NAS - ALKIS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/netcdf.html">NetCDF: Network Common Data Form - Vector</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ngw.html">NGW – NextGIS Web</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ntf.html">UK .NTF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/oapif.html">OGC API - Features</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/oci.html">Oracle Spatial</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/odbc.html">ODBC RDBMS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ods.html">ODS - Open Document Spreadsheet</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/ogdi.html">OGDI Vectors</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/openfilegdb.html">ESRI File Geodatabase (OpenFileGDB)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/osm.html">OSM - OpenStreetMap XML and PBF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/pdf.html">PDF – Geospatial PDF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/pds.html">PDS - Planetary Data Systems TABLE</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/pgdump.html">PostgreSQL SQL Dump</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/pgeo.html">ESRI Personal GeoDatabase</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/pg.html">PostgreSQL / PostGIS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/plscenes.html">PLScenes (Planet Labs Scenes/Catalog API)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/s57.html">IHO S-57 (ENC)</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/sdts.html">SDTS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/selafin.html">Selafin files</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/shapefile.html">ESRI Shapefile / DBF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/sosi.html">Norwegian SOSI Standard</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/sqlite.html">SQLite / Spatialite RDBMS</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/svg.html">SVG - Scalable Vector Graphics</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/sxf.html">Storage and eXchange Format - SXF</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/tiger.html">U.S. Census TIGER/Line</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/topojson.html">TopoJSON driver</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/vdv.html">VDV - VDV-451/VDV-452/INTREST Data Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/vfk.html">VFK - Czech Cadastral Exchange Data Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/vrt.html">VRT – Virtual Format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/walk.html">Walk - Walk Spatial Data</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/wasp.html">WAsP - WAsP .map format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/wfs.html">WFS - OGC WFS service</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/xls.html">XLS - MS Excel format</a></li>
<li class="toctree-l2"><a class="reference internal" href="drivers/vector/xlsx.html">XLSX - MS Office Open XML spreadsheet</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="user/index.html">User</a><ul>
<li class="toctree-l2"><a class="reference internal" href="user/raster_data_model.html">Raster Data Model</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/multidim_raster_data_model.html">Multidimensional Raster Data Model</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/vector_data_model.html">Vector Data Model</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/gnm_data_model.html">Geographic Networks Data Model</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/ogr_sql_sqlite_dialect.html">OGR SQL dialect and SQLITE SQL dialect</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/virtual_file_systems.html">GDAL Virtual File Systems</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/ogr_feature_style.html">Feature Style Specification</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/coordinate_epoch.html">Coordinate epoch support</a></li>
<li class="toctree-l2"><a class="reference internal" href="user/configoptions.html">Configuration options</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="api/index.html">API</a><ul>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#id2">Full Doxygen output</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#c-api">C API</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#id3">C++ API</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#python-api">Python API</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#id4">Java API</a></li>
<li class="toctree-l2"><a class="reference internal" href="api/index.html#gdal-ogr-in-other-languages">GDAL/OGR In Other Languages</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="tutorials/index.html">Tutorials</a><ul>
<li class="toctree-l2"><a class="reference internal" href="tutorials/index.html#raster">Raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="tutorials/index.html#multidimensional-raster">Multidimensional raster</a></li>
<li class="toctree-l2"><a class="reference internal" href="tutorials/index.html#vector">Vector</a></li>
<li class="toctree-l2"><a class="reference internal" href="tutorials/index.html#geographic-network-model">Geographic Network Model</a></li>
<li class="toctree-l2"><a class="reference internal" href="tutorials/index.html#projections-and-spatial-reference-systems-tutorial-osr-ogrspatialreference">Projections and Spatial Reference Systems tutorial (OSR - OGRSpatialReference)</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="development/index.html">Development</a><ul>
<li class="toctree-l2"><a class="reference internal" href="development/rfc/index.html">RFC list</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="community/index.html">Community</a><ul>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#code-of-conduct">Code of Conduct</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#mailing-list">Mailing List</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#github">GitHub</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#chat">Chat</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#social-media">Social media</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#conference">Conference</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#governance-and-community-participation">Governance and Community Participation</a></li>
<li class="toctree-l2"><a class="reference internal" href="community/index.html#gdal-service-providers">GDAL Service Providers</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="sponsors/index.html">Sponsors</a><ul>
<li class="toctree-l2"><a class="reference internal" href="sponsors/index.html#sponsoring">Sponsoring</a></li>
<li class="toctree-l2"><a class="reference internal" href="sponsors/index.html#related-resources">Related resources</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="contributing/index.html">How to contribute?</a><ul>
<li class="toctree-l2"><a class="reference internal" href="contributing/developer.html">Developer Contributions to GDAL</a></li>
<li class="toctree-l2"><a class="reference internal" href="contributing/rst_style.html">Sphinx RST Style guide</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="faq.html">FAQ</a><ul>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-does-gdal-stand-for">What does GDAL stand for?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-is-this-ogr-stuff">What is this OGR stuff?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-does-ogr-stand-for">What does OGR stand for?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-does-cpl-stand-for">What does CPL stand for?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#when-was-the-gdal-project-started">When was the GDAL project started?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#is-gdal-ogr-proprietary-software">Is GDAL/OGR proprietary software?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-license-does-gdal-ogr-use">What license does GDAL/OGR use?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-operating-systems-does-gdal-ogr-run-on">What operating systems does GDAL-OGR run on?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#is-there-a-graphical-user-interface-to-gdal-ogr">Is there a graphical user interface to GDAL/OGR?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#what-compiler-can-i-use-to-build-gdal-ogr">What compiler can I use to build GDAL/OGR?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#i-have-a-question-that-s-not-answered-here-where-can-i-get-more-information">I have a question that’s not answered here. Where can I get more information?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#how-do-i-add-support-for-a-new-format">How do I add support for a new format?</a></li>
<li class="toctree-l2"><a class="reference internal" href="faq.html#how-do-i-cite-gdal">How do I cite GDAL ?</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="license.html">License</a><ul>
<li class="toctree-l2"><a class="reference internal" href="license.html#id2">License</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="index">
<h2>Index<a class="headerlink" href="#index" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></p></li>
</ul>
</div>
</div>
</div>
</div>
<footer>
<div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
<a href="download.html" class="btn btn-neutral float-right" title="Download" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a>
</div>
<hr/>
<div role="contentinfo">
<div class="info">
<a class="logo-link" href="https://osgeo.org">
<div class="osgeo-logo"></div>
</a>
<div class="copyright">
© 1998-2021 <a href="https://github.com/warmerdam">Frank Warmerdam</a>,
<a href="https://github.com/rouault">Even Rouault</a>, and
<a href="https://github.com/OSGeo/gdal/graphs/contributors">others</a>
</div>
</div>
</div>
</footer>
</div>
</div>
</section>
</div>
<script>
jQuery(function () {
SphinxRtdTheme.Navigation.enable(true);
});
</script>
</body>
</html> | 89.310019 | 752 | 0.719335 |
718f07acf1135db569489290f2c51b98d6f3bdd0 | 829 | ts | TypeScript | frontend/src/app/scheduler/scheduler.service.ts | acid0od/plain-lesson-scheduler | 9f4ea59f295f5c27f93e28db79e8738aa0a66c36 | [
"Apache-2.0"
] | null | null | null | frontend/src/app/scheduler/scheduler.service.ts | acid0od/plain-lesson-scheduler | 9f4ea59f295f5c27f93e28db79e8738aa0a66c36 | [
"Apache-2.0"
] | null | null | null | frontend/src/app/scheduler/scheduler.service.ts | acid0od/plain-lesson-scheduler | 9f4ea59f295f5c27f93e28db79e8738aa0a66c36 | [
"Apache-2.0"
] | null | null | null | import { Injectable } from '@angular/core';
import { ApiService } from '../shared/api.service';
import { SubjectCourse } from '../model/subject-course-model';
import { Observable } from 'rxjs/index';
import { Scheduler } from '../model/scheduler-model';
@Injectable()
export class SchedulerService {
private apiUrl = 'api/subjectCourse/';
private postApiUrl = 'api/scheduler/';
constructor(private api: ApiService) {
}
public getSubjectCourse(subjectName: string): Observable<SubjectCourse> {
return this.api.get<SubjectCourse>(this.apiUrl + subjectName);
}
public getSubjectCourses(): Observable<SubjectCourse[]> {
return this.api.get<SubjectCourse[]>(this.apiUrl);
}
public saveScheduler(scheduler: Scheduler): Observable<void> {
return this.api.post<void>(this.postApiUrl, scheduler);
}
}
| 30.703704 | 75 | 0.721351 |
104999f34251443ca5c2542b56f3ba3dba0e901d | 175 | sql | SQL | sql/upgrade/cat_0.9.sql | jinjin123/switch-mysql-postgresql | bc1c31d9633ffa326e95f33b52bc7641f7ee336f | [
"BSD-2-Clause"
] | null | null | null | sql/upgrade/cat_0.9.sql | jinjin123/switch-mysql-postgresql | bc1c31d9633ffa326e95f33b52bc7641f7ee336f | [
"BSD-2-Clause"
] | null | null | null | sql/upgrade/cat_0.9.sql | jinjin123/switch-mysql-postgresql | bc1c31d9633ffa326e95f33b52bc7641f7ee336f | [
"BSD-2-Clause"
] | null | null | null | CREATE OR REPLACE VIEW sch_chameleon.v_version
AS
SELECT '0.9'::TEXT t_version
;
ALTER TABLE sch_chameleon.t_sources ADD COLUMN ts_last_event timestamp without time zone;
| 25 | 89 | 0.811429 |
5c3dde28bd86cafdff494cd392cdc38d49d168c6 | 4,760 | h | C | usr/libexec/WirelessRadioManagerd/WRM_SymptomsService.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | 2 | 2021-11-02T09:23:27.000Z | 2022-03-28T08:21:57.000Z | usr/libexec/WirelessRadioManagerd/WRM_SymptomsService.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | null | null | null | usr/libexec/WirelessRadioManagerd/WRM_SymptomsService.h | lechium/iOS1351Headers | 6bed3dada5ffc20366b27f7f2300a24a48a6284e | [
"MIT"
] | 1 | 2022-03-28T08:21:59.000Z | 2022-03-28T08:21:59.000Z | //
// Generated by classdumpios 1.0.1 (64 bit) (iOS port by DreamDevLost)(Debug version compiled Sep 26 2020 13:48:20).
//
// Copyright (C) 1997-2019 Steve Nygard.
//
#import <objc/NSObject.h>
@class AnalyticsWorkspace, NSDate, NSDictionary, NSString, NetworkPerformanceFeed, SDRDiagnosticReporter;
@interface WRM_SymptomsService : NSObject
{
int mWifiAdvisory; // 8 = 0x8
int mCellularAdvisory; // 12 = 0xc
_Bool mSIPTimeOutOverWiFiDetected; // 16 = 0x10
_Bool mWiFiIPsecTunnelDisconnected; // 17 = 0x11
NSDictionary *mWifiInstantCurrent; // 24 = 0x18
NSString *mImsTunnelID; // 32 = 0x20
NSString *mCurrentConnectionIdentifier; // 40 = 0x28
NSString *mPreviousConnectionIdentifier; // 48 = 0x30
double mPrevConnAttempt; // 56 = 0x38
double mPrevConnSucc; // 64 = 0x40
double mCurrentConnAttempt; // 72 = 0x48
double mCurrentConnSucc; // 80 = 0x50
double mCurrentMinRTT; // 88 = 0x58
double mCurrentAvgRTT; // 96 = 0x60
double mCurrentVarRTT; // 104 = 0x68
double mPrevPacketsIn; // 112 = 0x70
double mCurrentPacketsIn; // 120 = 0x78
double mCurrentBytesIn; // 128 = 0x80
double mPrevBytesIn; // 136 = 0x88
double mNetworkThroughput; // 144 = 0x90
double mAvgNetworkThroughput; // 152 = 0x98
double mAveragePktSize; // 160 = 0xa0
double mCurrentMetricsAge; // 168 = 0xa8
unsigned long long mAdviceQueried; // 176 = 0xb0
unsigned long long mAdviceAnswered; // 184 = 0xb8
unsigned long long mFullScoreQueried; // 192 = 0xc0
unsigned long long mFullScoreAnswered; // 200 = 0xc8
NSDate *mSFThroughEstimationTimer; // 208 = 0xd0
double mPrevTimeSinceThroughputEstimationStarted; // 216 = 0xd8
NSDate *mSFQueryTimer; // 224 = 0xe0
double mPrevTimeSinceSFQueryStarted; // 232 = 0xe8
AnalyticsWorkspace *mAnalyticsWorkspace; // 240 = 0xf0
NetworkPerformanceFeed *mNetworkPerfFeed; // 248 = 0xf8
_Bool mBackHaulLinkGood; // 256 = 0x100
SDRDiagnosticReporter *mABCreporter; // 264 = 0x108
}
- (void)triggerAutoBugCapture:(id)arg1 subType:(id)arg2 subtypeContext:(id)arg3; // IMP=0x00000001000df2e0
- (_Bool)sipTimeOutDetected; // IMP=0x00000001000df2c0
- (_Bool)dpdFailureDetected; // IMP=0x00000001000df2a0
- (_Bool)isIMSTransportQualityGood; // IMP=0x00000001000df260
- (void)updateDPDMetrics:(_Bool)arg1; // IMP=0x00000001000df238
- (void)updateSIPMetrics:(_Bool)arg1; // IMP=0x00000001000df210
- (double)getNetworkThroughput; // IMP=0x00000001000df1f4
- (void)notifyIRATManager:(long long)arg1; // IMP=0x00000001000df034
- (_Bool)isConnectedLinkGood:(_Bool)arg1; // IMP=0x00000001000def20
- (void)resetSFContext; // IMP=0x00000001000deec0
- (int)calculateCellularHistoryScore; // IMP=0x00000001000deea8
- (double)getCurrentAgeOfConnectedLinkInSeconds; // IMP=0x00000001000dee8c
- (_Bool)watchpointForIKETunnel:(id)arg1 onThreshold:(unsigned int)arg2; // IMP=0x00000001000dece8
- (void)displayWatchpointHit:(id)arg1; // IMP=0x00000001000dea6c
- (_Bool)scorecardForIKETunnel:(id)arg1 isInstant:(_Bool)arg2; // IMP=0x00000001000de848
- (void)setIKEv2WatchPoint:(id)arg1; // IMP=0x00000001000de7f8
- (id)getImsTunnelId; // IMP=0x00000001000de7dc
- (_Bool)evaluateBackHaulLink; // IMP=0x00000001000de7c0
- (double)evaluateNetworkBandwidth; // IMP=0x00000001000de5f8
- (void)displayIKEMetrics:(id)arg1; // IMP=0x00000001000de1e8
- (int)calculateWifiHistoryScore; // IMP=0x00000001000de1d0
- (int)calculateCellularScore; // IMP=0x00000001000de190
- (int)calculateWifiScore; // IMP=0x00000001000de150
- (void)watchTcpConnectionFallBack; // IMP=0x00000001000ddff8
- (void)notifyWifiCallState:(_Bool)arg1; // IMP=0x00000001000ddf40
- (int)mapSFNetworkAdvisoryToNetworkScore:(int)arg1; // IMP=0x00000001000dde48
- (_Bool)getNetworkFullScoreFromSF:(int)arg1; // IMP=0x00000001000dd474
- (_Bool)isBackhaulGood; // IMP=0x00000001000dd454
- (_Bool)getNetworkUsageAdviceFromSF:(int)arg1; // IMP=0x00000001000dcfc4
- (void)handleNetworkdRestart; // IMP=0x00000001000dcf78
- (_Bool)createNetworkSymptomsFeed; // IMP=0x00000001000dcd58
- (double)getMetricFromDictionary:(id)arg1:(int)arg2; // IMP=0x00000001000dc6ac
- (_Bool)isCurrentAttachPointHasChanged:(id)arg1; // IMP=0x00000001000dc4e4
- (double)getWifiNetMetricCurrInstant:(int)arg1; // IMP=0x00000001000dc49c
- (double)getAgeOfMetricDictionary:(id)arg1; // IMP=0x00000001000dc318
- (double)getAgeOfMetricCurrInstant; // IMP=0x00000001000dc2d8
- (int)getNetworkHistScore:(int)arg1; // IMP=0x00000001000dc208
- (int)getNetworkScore:(int)arg1; // IMP=0x00000001000dc138
- (_Bool)updateAllNetworkSymptoms:(int)arg1; // IMP=0x00000001000dbebc
- (void)resetIMSMetrics; // IMP=0x00000001000dbe98
- (void)dealloc; // IMP=0x00000001000dbd7c
- (id)init; // IMP=0x00000001000dbb38
@end
| 50.105263 | 120 | 0.758824 |
3f571fcd5669ce5d529ce53a9a21acc02fa8a5ef | 161 | nasm | Assembly | Projetos/F-Assembly/src/nasm/mov.nasm | gabrielvf1/Z01---Grupo-H | ef44894eb6a245c9b856802dd96ebe0051315602 | [
"Unlicense"
] | null | null | null | Projetos/F-Assembly/src/nasm/mov.nasm | gabrielvf1/Z01---Grupo-H | ef44894eb6a245c9b856802dd96ebe0051315602 | [
"Unlicense"
] | 77 | 2018-03-09T12:33:31.000Z | 2018-05-18T10:42:22.000Z | Projetos/F-Assembly/src/nasm/mov.nasm | gabrielvf1/Z01---Grupo-H | ef44894eb6a245c9b856802dd96ebe0051315602 | [
"Unlicense"
] | null | null | null | leaw $R1,%A
movw (%A),%D
leaw $R0,%A
movw (%A),%S
leaw $R0,%A
movw %D,(%A)
leaw $R1,%A
movw %S,(%A)
leaw $1,%A
movw %A,%D
leaw $R3,%A
movw %D,(%A)
| 11.5 | 13 | 0.478261 |
fbcd12561889256b70f557737591b4e72cac4328 | 1,954 | java | Java | src/main/java/marquez/service/models/Job.java | ravikamaraj/marquez | 2c9e0c2c18ba5817919cf1b84f6e891b6bc98c2f | [
"Apache-2.0"
] | 1 | 2019-04-15T05:24:14.000Z | 2019-04-15T05:24:14.000Z | src/main/java/marquez/service/models/Job.java | julienledem/marquez | 75caf8a5f6851068450dd2ad6e567f50b037c2fa | [
"Apache-2.0"
] | null | null | null | src/main/java/marquez/service/models/Job.java | julienledem/marquez | 75caf8a5f6851068450dd2ad6e567f50b037c2fa | [
"Apache-2.0"
] | null | null | null | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package marquez.service.models;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import java.net.URL;
import java.time.Instant;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
import lombok.NonNull;
import lombok.Value;
import marquez.common.models.JobName;
import marquez.common.models.JobType;
@Value
public class Job {
@NonNull JobId id;
@NonNull JobType type;
@NonNull JobName name;
@NonNull Instant createdAt;
@NonNull Instant updatedAt;
@NonNull List<DatasetId> inputs;
@NonNull List<DatasetId> outputs;
@Nullable URL location;
@Nullable Map<String, String> context;
@Nullable String description;
@Nullable Run latestRun;
public List<DatasetId> getInputs() {
return ImmutableList.copyOf(new ArrayList<>(inputs));
}
public List<DatasetId> getOutputs() {
return ImmutableList.copyOf(new ArrayList<>(outputs));
}
public Optional<URL> getLocation() {
return Optional.ofNullable(location);
}
public Map<String, String> getContext() {
return (context == null) ? ImmutableMap.of() : ImmutableMap.copyOf(context);
}
public Optional<String> getDescription() {
return Optional.ofNullable(description);
}
public Optional<Run> getLatestRun() {
return Optional.ofNullable(latestRun);
}
}
| 28.318841 | 80 | 0.744115 |
13626dd1eacdff2adb9e173d487d2fc2d4ce5499 | 2,154 | h | C | PlayerSurveyRatingChoice_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | null | null | null | PlayerSurveyRatingChoice_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | null | null | null | PlayerSurveyRatingChoice_classes.h | NotDiscordOfficial/Fortnite_SDK | 58f8da148256f99cb35518003306fffee33c4a21 | [
"MIT"
] | 1 | 2021-07-22T00:31:44.000Z | 2021-07-22T00:31:44.000Z | // WidgetBlueprintGeneratedClass PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C
// Size: 0xbf0 (Inherited: 0xbe0)
struct UPlayerSurveyRatingChoice_C : UFortPlayerSurveyRatingChoiceBase {
struct FPointerToUberGraphFrame UberGraphFrame; // 0xbe0(0x08)
struct UCommonActionWidget* InputActionWidget_Select; // 0xbe8(0x08)
void GetCurrentButtonBrush(struct FSlateBrush CurrentBrush); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.GetCurrentButtonBrush // (Private|HasOutParms|HasDefaults|BlueprintCallable|BlueprintEvent|BlueprintPure) // @ game+0xda7c34
void UpdateInputActionRenderOpacity(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.UpdateInputActionRenderOpacity // (Private|BlueprintCallable|BlueprintEvent) // @ game+0xda7c34
void UpdateTextStyle(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.UpdateTextStyle // (Private|HasDefaults|BlueprintCallable|BlueprintEvent) // @ game+0xda7c34
void BP_OnHovered(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.BP_OnHovered // (Event|Protected|BlueprintEvent) // @ game+0xda7c34
void BP_OnUnhovered(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.BP_OnUnhovered // (Event|Protected|BlueprintEvent) // @ game+0xda7c34
void OnSurveyResetChoice(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.OnSurveyResetChoice // (Event|Protected|BlueprintEvent) // @ game+0xda7c34
void OnInitialized(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.OnInitialized // (BlueprintCosmetic|Event|Public|BlueprintEvent) // @ game+0xda7c34
void BP_OnSelected(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.BP_OnSelected // (Event|Protected|BlueprintEvent) // @ game+0xda7c34
void BP_OnDeselected(); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.BP_OnDeselected // (Event|Protected|BlueprintEvent) // @ game+0xda7c34
void ExecuteUbergraph_PlayerSurveyRatingChoice(int32_t EntryPoint); // Function PlayerSurveyRatingChoice.PlayerSurveyRatingChoice_C.ExecuteUbergraph_PlayerSurveyRatingChoice // (Final|UbergraphFunction) // @ game+0xda7c34
};
| 113.368421 | 250 | 0.842618 |
fc01edf92e40ed14998cc831f7f5cd4db58d9bae | 3,067 | ps1 | PowerShell | PS_Examples/PS_Acl_Scripting.ps1 | peterennis/SheerpowerDev | ab10bc7927ce0a99d6dc937abc003b9618e07460 | [
"MIT"
] | 1 | 2019-02-14T22:10:15.000Z | 2019-02-14T22:10:15.000Z | PS_Examples/PS_Acl_Scripting.ps1 | peterennisrda/SheerpowerDev | 0de6d14d8298bf1653e25f46dea0ef26489b2b1b | [
"MIT"
] | 45 | 2019-01-30T19:34:53.000Z | 2019-10-02T22:29:59.000Z | PS_Examples/PS_Acl_Scripting.ps1 | peterennis/SheerpowerDev | ab10bc7927ce0a99d6dc937abc003b9618e07460 | [
"MIT"
] | 2 | 2019-01-30T19:16:58.000Z | 2019-02-07T23:31:02.000Z | # Ref: http://blogs.technet.com/b/heyscriptingguy/archive/2011/11/13/use-powershell-to-quickly-find-installed-software.aspx
# Get-ExecutionPolicy
# The command shows the current script execution policy
# Ref: http://technet.microsoft.com/library/hh847748.aspx
# Ref: http://technet.microsoft.com/en-us/library/hh849812.aspx
# Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
# The command uses the Set-ExecutionPolicy cmdlet to set an execution policy of Unrestricted for the current user.
Clear-Host
Write-Host "Start=>"
### Ref: https://www.petri.com/how-to-get-ntfs-file-permissions-using-powershell
#Get-Acl -Path W:\peterennis | Format-Table -Wrap
### Get more information
#Get-Acl -Path W:\peterennis | Format-List
### Get specific information
#(Get-Acl -Path W:\peterennis).Access
### Show users or groups listed in the ACL
#(Get-Acl -Path W:\peterennis).Access.IdentityReference
# Generate a report on a folder hierarchy
$FolderPath = Get-ChildItem -Directory -Path "C:\TEMP" -Recurse -Force
Write-Host $FolderPath
ForEach ($Folder in $FolderPath) {
$Acl = Get-Acl -Path $Folder.FullName
ForEach ($Access in $Acl.Access) {
$Properties = [ordered]@{'Folder Name' = $Folder.FullName; 'Group/User' = $Access.IdentityReference; 'Permissions' = $Access.FileSystemRights; 'Inherited' = $Access.IsInherited }
New-Object -TypeName PSObject -Property $Properties
}
}
Write-Host ""
# Permissions of folders
$FolderPath = Get-ChildItem -Directory -Path "C:\TEMP" -Recurse -Force
$Output = @()
ForEach ($Folder in $FolderPath) {
$Acl = Get-Acl -Path $Folder.FullName
ForEach ($Access in $Acl.Access) {
$Properties = [ordered]@{'Folder Name' = $Folder.FullName; 'Group/User' = $Access.IdentityReference; 'Permissions' = $Access.FileSystemRights; 'Inherited' = $Access.IsInherited }
$Output += New-Object -TypeName PSObject -Property $Properties
}
}
$Output | Out-GridView
# The above output only lists folders. There are no files in the results.
# To see files create an array ($Output) and pipe the results to Out-GridView or a .csv file.
# Output as a CSV
$BaseFolder = "C:\INSTALL"
Write-Host "BaseFolder="$BaseFolder
$FolderPath = Get-ChildItem -Directory -Path $BaseFolder -Recurse -Force
$Output = @()
$Acl = Get-Acl -Path $BaseFolder
ForEach ($Access in $Acl.Access) {
$Properties = [ordered]@{'Folder Name' = $BaseFolder; 'Group/User' = $Access.IdentityReference; 'Permissions' = $Access.FileSystemRights; 'Inherited' = $Access.IsInherited }
$Output += New-Object -TypeName PSObject -Property $Properties
}
ForEach ($Folder in $FolderPath) {
$Acl = Get-Acl -Path $Folder.FullName
ForEach ($Access in $Acl.Access) {
$Properties = [ordered]@{'Folder Name' = $Folder.FullName; 'Group/User' = $Access.IdentityReference; 'Permissions' = $Access.FileSystemRights; 'Inherited' = $Access.IsInherited }
$Output += New-Object -TypeName PSObject -Property $Properties
}
}
$Output | Export-Csv "C:\TEMP\Folder-Permissions-TEMP.csv"
| 43.197183 | 186 | 0.715683 |
83bbec3cf1e769ff1e6159712dce4cbe71f523b4 | 15,249 | rs | Rust | src/transactions.rs | ammubhave/plaid-rs | 0deca111315444c97d15d2b933d4d83f293ec93d | [
"MIT"
] | 3 | 2021-03-13T02:27:43.000Z | 2021-11-10T03:01:23.000Z | src/transactions.rs | ammubhave/plaid-rs | 0deca111315444c97d15d2b933d4d83f293ec93d | [
"MIT"
] | null | null | null | src/transactions.rs | ammubhave/plaid-rs | 0deca111315444c97d15d2b933d4d83f293ec93d | [
"MIT"
] | 3 | 2021-09-27T18:59:49.000Z | 2022-01-30T16:23:15.000Z | use chrono::{DateTime, NaiveDate, Utc};
use serde::{Deserialize, Serialize};
use crate::accounts::Account;
use crate::client::Client;
use crate::errors::Result;
use crate::item::Item;
#[derive(Deserialize, Debug, Clone)]
pub struct Transaction {
/// The unique ID of the transaction. Like all Plaid identifiers, the transaction_id is case sensitive.
pub transaction_id: String,
/// The name of the account owner. This field is not typically populated and only relevant when dealing with sub-accounts.
pub account_owner: Option<String>,
/// The ID of a posted transaction's associated pending transaction, where applicable.
pub pending_transaction_id: Option<String>,
/// When true, identifies the transaction as pending or unsettled. Pending transaction details (name, type, amount, category ID) may change before they are settled.
pub pending: bool,
/// The channel used to make a payment.
/// Possible values: online, in store, other
pub payment_channel: String,
/// Transaction information specific to inter-bank transfers. If the transaction was not an inter-bank transfer, all fields will be null.
pub payment_meta: PaymentMeta,
/// The merchant name or transaction description.
pub name: String,
/// The merchant name, as extracted by Plaid from the name field.
pub merchant_name: Option<String>,
/// A representation of where a transaction took place
pub location: Location,
/// The date that the transaction was authorized. Dates are returned in an ISO 8601 format ( YYYY-MM-DD ).
pub authorized_date: Option<NaiveDate>,
/// Date and time when a transaction was authorized in ISO 8601 format ( YYYY-MM-DDTHH:mm:ssZ ).
pub authorized_datetime: Option<DateTime<Utc>>,
/// For pending transactions, the date that the transaction occurred; for posted transactions, the date that the transaction posted. Both dates are returned in an ISO 8601 format ( YYYY-MM-DD ).
pub date: NaiveDate,
/// Date and time when a transaction was posted in ISO 8601 format ( YYYY-MM-DDTHH:mm:ssZ ).
pub datetime: Option<DateTime<Utc>>,
/// The ID of the category to which this transaction belongs.
pub category_id: String,
/// A hierarchical array of the categories to which this transaction belongs
pub category: Option<Vec<String>>,
/// The unofficial currency code associated with the transaction.
pub unofficial_currency_code: Option<String>,
/// The ISO-4217 currency code of the transaction.
pub iso_currency_code: Option<String>,
/// The settled value of the transaction, denominated in the account's currency, as stated in iso_currency_code or unofficial_currency_code. Positive values when money moves out of the account; negative values when money moves in. For example, debit card purchases are positive; credit card payments, direct deposits, and refunds are negative.
pub amount: f64,
/// The ID of the account in which this transaction occurred.
pub account_id: String,
/// An identifier classifying the transaction type.
/// This field is only populated for European institutions. For institutions in the US and Canada, this field is set to null.
/// Possible values: adjustment, atm, bank charge, bill payment, cash, cashback, cheque, direct debit, interest, purchase, standing order, transfer, null
pub transaction_code: Option<String>,
}
/// Transaction information specific to inter-bank transfers.
#[derive(Deserialize, Debug, Clone)]
pub struct PaymentMeta {
/// The transaction reference number supplied by the financial institution.
pub reference_number: Option<String>,
/// The ACH PPD ID for the payer.
pub ppd_id: Option<String>,
/// For transfers, the party that is receiving the transaction.
pub payee: Option<String>,
/// The party initiating a wire transfer. Will be null if the transaction is not a wire transfer.
pub by_order_of: Option<String>,
/// For transfers, the party that is paying the transaction.
pub payer: Option<String>,
/// The type of transfer, e.g. 'ACH'
pub payment_method: Option<String>,
/// The name of the payment processor
pub payment_processor: Option<String>,
/// The payer-supplied description of the transfer.
pub reason: Option<String>,
}
#[derive(Deserialize, Debug, Clone)]
pub struct Location {
/// The street address where the transaction occurred.
pub address: Option<String>,
/// The city where the transaction occurred.
pub city: Option<String>,
/// The region or state where the transaction occurred.
pub region: Option<String>,
/// The postal code where the transaction occurred.
pub postal_code: Option<String>,
/// The ISO 3166-1 alpha-2 country code where the transaction occurred.
pub country: Option<String>,
/// The latitude where the transaction occurred.
pub lat: Option<f64>,
/// The longitude where the transaction occurred.
pub lon: Option<f64>,
/// The merchant defined store number where the transaction occurred.
pub store_number: Option<String>,
}
#[derive(Deserialize, Debug, Clone)]
pub struct AccountBalances {
/// The amount of funds available to be withdrawn from the account, as determined by the financial institution.
pub available: Option<f64>,
/// The total amount of funds in or owed by the account.
pub current: f64,
/// For credit-type accounts, this represents the credit limit.
/// For depository-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe.
/// In North America, this field is typically only available for credit-type accounts.
pub limit: Option<f64>,
/// The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.
pub iso_currency_code: Option<String>,
/// The unofficial currency code associated with the balance. Always null if iso_currency_code is non-null.
pub unofficial_currency_code: Option<String>,
}
#[derive(Serialize)]
struct GetTransactionsRequest<'a> {
client_id: &'a str,
secret: &'a str,
access_token: &'a str,
start_date: NaiveDate,
end_date: NaiveDate,
#[serde(skip_serializing_if = "Option::is_none")]
options: Option<GetTransactionsOptions<'a>>,
}
#[derive(Serialize, Debug, Clone)]
pub struct GetTransactionsOptions<'a> {
/// A list of account_ids to retrieve for the Item
pub account_ids: Option<&'a [&'a str]>,
/// The number of transactions to fetch.
pub count: i32,
/// The number of transactions to skip. The default value is 0.
pub offset: i32,
}
#[derive(Deserialize, Debug, Clone)]
pub struct GetTransactionsResponse {
/// A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
pub request_id: String,
/// An array containing the accounts associated with the Item for which transactions are being returned. Each transaction can be mapped to its corresponding account via the account_id field.
pub accounts: Vec<Account>,
/// An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the count parameter.
pub transactions: Vec<Transaction>,
/// The total number of transactions available within the date range specified. If total_transactions is larger than the size of the transactions array, more transactions are available and can be fetched via manipulating the offset parameter.
pub total_transactions: i32,
/// Metadata about the Item.
pub item: Item,
}
#[derive(Serialize)]
struct RefreshTransactionsRequest<'a> {
client_id: &'a str,
secret: &'a str,
access_token: &'a str,
}
#[derive(Deserialize, Debug, Clone)]
pub struct RefreshTransactionsResponse {
/// A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
pub request_id: String,
}
impl Client {
/// Get transaction data.
///
/// The /transactions/get endpoint allows developers to receive user-authorized transaction data for credit, depository, and some loan-type accounts (the list of loan-type accounts supported is the same as for Liabilities; for details, see the /liabilities/get endpoint). For transaction history from investments accounts, use the Investments endpoint instead. Transaction data is standardized across financial institutions, and in many cases transactions are linked to a clean name, entity type, location, and category. Similarly, account data is standardized and returned with a clean name, number, balance, and other meta information where available.
///
/// Transactions are returned in reverse-chronological order, and the sequence of transaction ordering is stable and will not shift. Transactions are not immutable and can also be removed altogether by the institution; a removed transaction will no longer appear in /transactions/get. For more details, see Pending and posted transactions.
///
/// Due to the potentially large number of transactions associated with an Item, results are paginated. Manipulate the count and offset parameters in conjunction with the total_transactions response body field to fetch all available transactions.
///
/// Note that data may not be immediately available to /transactions/get. Plaid will begin to prepare transactions data upon Item link, if Link was initialized with transactions, or upon the first call to /transactions/get, if it wasn't. To be alerted when transaction data is ready to be fetched, listen for the INITIAL_UPDATE and HISTORICAL_UPDATE webhooks. If no transaction history is ready when /transactions/get is called, it will return a PRODUCT_NOT_READY error.
///
/// * `access_token` - The access token associated with the Item data is being requested for.
/// * `start_date` - The earliest date for which data should be returned.
/// * `end_date` - The latest date for which data should be returned.
/// * `options` - An optional object to be used with the request.
pub async fn get_transactions<'a>(
&self,
access_token: &str,
start_date: NaiveDate,
end_date: NaiveDate,
options: Option<GetTransactionsOptions<'a>>,
) -> Result<GetTransactionsResponse> {
self.send_request(
"transactions/get",
&GetTransactionsRequest {
client_id: &self.client_id,
secret: &self.secret,
access_token,
start_date,
end_date,
options,
},
)
.await
}
/// Refresh transaction data.
///
/// /transactions/refresh is an optional endpoint for users of the Transactions product. It initiates an on-demand extraction to fetch the newest transactions for an Item. This on-demand extraction takes place in addition to the periodic extractions that automatically occur multiple times a day for any Transactions-enabled Item. If changes to transactions are discovered after calling /transactions/refresh, Plaid will fire a webhook: TRANSACTIONS_REMOVED will be fired if any removed transactions are detected, and DEFAULT_UPDATE will be fired if any new transactions are detected. New transactions can be fetched by calling /transactions/get.
///
/// * `access_token` - The access token associated with the Item data is being requested for.
pub async fn refresh_transactions(
&self,
access_token: &str,
) -> Result<RefreshTransactionsResponse> {
self.send_request(
"transactions/refresh",
&RefreshTransactionsRequest {
client_id: &self.client_id,
secret: &self.secret,
access_token,
},
)
.await
}
}
#[cfg(test)]
mod tests {
use std::ops::Sub;
use super::*;
use crate::client::tests::{get_test_client, SANDBOX_INSTITUTION, TEST_PRODUCTS};
use crate::errors::Error;
#[tokio::test]
async fn test_get_transactions() {
let client = get_test_client();
let sandbox_resp = client
.create_sandbox_public_token(SANDBOX_INSTITUTION, TEST_PRODUCTS)
.await
.unwrap();
let token_resp = client
.exchange_public_token(&sandbox_resp.public_token)
.await
.unwrap();
let end_date = Utc::now().naive_utc().date();
let start_date = end_date.sub(chrono::Duration::days(365));
let mut resp = client
.get_transactions(&token_resp.access_token, start_date, end_date, None)
.await;
while resp.is_err() {
let err = resp.unwrap_err();
if let Error::Plaid(err) = err {
assert_eq!(err.error_code, "PRODUCT_NOT_READY");
} else {
assert!(false);
}
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
resp = client
.get_transactions(&token_resp.access_token, start_date, end_date, None)
.await;
}
let resp = resp.unwrap();
assert_ne!(resp.accounts.len(), 0);
assert_ne!(resp.transactions.len(), 0);
let mut resp = client
.get_transactions(
&token_resp.access_token,
start_date,
end_date,
Some(GetTransactionsOptions {
account_ids: None,
count: 2,
offset: 1,
}),
)
.await;
while resp.is_err() {
let err = resp.unwrap_err();
if let Error::Plaid(err) = err {
assert_eq!(err.error_code, "PRODUCT_NOT_READY");
} else {
assert!(false);
}
tokio::time::sleep(tokio::time::Duration::from_secs(5)).await;
resp = client
.get_transactions(
&token_resp.access_token,
start_date,
end_date,
Some(GetTransactionsOptions {
account_ids: None,
count: 2,
offset: 1,
}),
)
.await;
}
let resp = resp.unwrap();
assert_ne!(resp.transactions.len(), 0);
}
#[tokio::test]
async fn test_refresh_transactions() {
let client = get_test_client();
let sandbox_resp = client
.create_sandbox_public_token(SANDBOX_INSTITUTION, TEST_PRODUCTS)
.await
.unwrap();
let token_resp = client
.exchange_public_token(&sandbox_resp.public_token)
.await
.unwrap();
let resp = client
.refresh_transactions(&token_resp.access_token)
.await
.unwrap();
assert_ne!(&resp.request_id, "");
}
}
| 48.563694 | 657 | 0.676307 |
7d55ae8ce1a20b0ec9f99b4e51c64351f6657cdb | 171,962 | html | HTML | index.html | adurdin/romekmarber | 13bc0a35a6e10c855a2ee3a11db3718c2e922657 | [
"MIT"
] | null | null | null | index.html | adurdin/romekmarber | 13bc0a35a6e10c855a2ee3a11db3718c2e922657 | [
"MIT"
] | null | null | null | index.html | adurdin/romekmarber | 13bc0a35a6e10c855a2ee3a11db3718c2e922657 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<!--
Copyright 2020 Andy Durdin
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.
-->
<body>
<style>
html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: fixed;
background-color: rgba(250,250,250,1);
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: auto;
position: relative;
background-color: rgba(250,250,250,1);
}
canvas {
background-color: rgba(250,250,250,1);
width: 414px;
height: 680px;
}
* {
user-select: none;
}
</style>
<canvas id='canvas' width='414' height='680'></canvas>
<script>
"use strict";
var canvas = document.getElementById('canvas');
var context = canvas.getContext("2d");
var mousePos = POINT(0,0);
var mouseClick = false;
document.addEventListener('mousemove', function(event) {
event.preventDefault();
var rect = canvas.getBoundingClientRect();
var x = (event.clientX - rect.left) / rect.width * canvas.width;
var y = (event.clientY - rect.top) / rect.height * canvas.height;
window.mousePos.x = x;
window.mousePos.y = y;
});
document.addEventListener('mousedown', function(event) {
event.preventDefault();
var rect = canvas.getBoundingClientRect();
var x = (event.clientX - rect.left) / rect.width * canvas.width;
var y = (event.clientY - rect.top) / rect.height * canvas.height;
window.mousePos.x = x;
window.mousePos.y = y;
window.mouseClick = true;
});
document.addEventListener('mouseup', function(event) {
event.preventDefault();
window.mouseClick = true;
});
document.addEventListener('touchstart', function(event) {
window.HIT_RADIUS = 40; // Allow less precision for touches
event.preventDefault();
var canvasRect = canvas.getBoundingClientRect();
var bodyRect = document.body.getBoundingClientRect();
var rect = {
left: (canvasRect.left-bodyRect.left),
top: (canvasRect.top-bodyRect.top),
width: canvasRect.width,
height: canvasRect.height,
};
var x = (event.touches[0].clientX - rect.left) / rect.width * canvas.width;
var y = (event.touches[0].clientY - rect.top) / rect.height * canvas.height;
window.mousePos.x = x;
window.mousePos.y = y;
window.mouseClick = true;
});
document.addEventListener('touchmove', function(event) {
event.preventDefault();
var canvasRect = canvas.getBoundingClientRect();
var bodyRect = document.body.getBoundingClientRect();
var rect = {
left: (canvasRect.left-bodyRect.left),
top: (canvasRect.top-bodyRect.top),
width: canvasRect.width,
height: canvasRect.height,
};
var x = (event.touches[0].clientX - rect.left) / rect.width * canvas.width;
var y = (event.touches[0].clientY - rect.top) / rect.height * canvas.height;
window.mousePos.x = x;
window.mousePos.y = y;
});
document.addEventListener('touchend', function(event) {
event.preventDefault();
window.mouseClick = true;
});
window.addEventListener('resize', function(event) {
adjustToWindowSize();
});
window.addEventListener('load', function(event) {
adjustToWindowSize();
});
function adjustToWindowSize() {
const padding = 0.05 * document.documentElement.clientHeight;
var docWidth = document.documentElement.clientWidth - 2*padding;
var docHeight = document.documentElement.clientHeight - 2*padding;
var docAspect = docWidth / docHeight;
var nativeWidth = canvas.width;
var nativeHeight = canvas.height;
var nativeAspect = nativeWidth / nativeHeight;
var scale;
if (docAspect < nativeAspect) {
scale = docWidth / nativeWidth;
} else {
scale = docHeight / nativeHeight;
}
var scaledWidth = nativeWidth * scale;
var scaledHeight = nativeHeight * scale;
var centeredLeft = 0.5*(docWidth + 2*padding - scaledWidth);
var centeredTop = 0.5*(docHeight + 2*padding - scaledHeight);
canvas.style.position = 'absolute';
canvas.style.width = scaledWidth + 'px';
canvas.style.height = scaledHeight + 'px';
canvas.style.left = centeredLeft + 'px';
canvas.style.top = centeredTop + 'px';
}
// Anchors
var pageA = POINT(5,5);
var pageB = POINT(canvas.width-5,canvas.height-5);
var pageLeftEdge = LINE(POINT(pageA.x,pageB.y),POINT(pageA.x,pageA.y));
var pageRightEdge = LINE(POINT(pageB.x,pageA.y),POINT(pageB.x,pageB.y));
var pageTopEdge = LINE(POINT(pageA.x,pageA.y),POINT(pageB.x,pageA.y));
var pageBottomEdge = LINE(POINT(pageB.x,pageB.y),POINT(pageA.x,pageB.y));
function COLOR_BLACK(a) { return "rgba(4,4,4," + a + ")"; }
function COLOR_RED(a) { return "rgba(220,0,0," + a + ")"; }
function COLOR_WHITE(a) { return "rgba(250,250,250," + a + ")"; }
function COLOR_GREEN(a) { return "rgba(94,147,75," + a + ")"; }
function COLOR_SPECIAL(a) {
var t = 250 * a + 4 * (1 - a);
return "rgba("+t+","+t+","+t+",1)";
}
var opaqueWhite = COLOR_WHITE(1.0);
document.documentElement.style.backgroundColor = opaqueWhite;
document.body.style.backgroundColor = opaqueWhite;
canvas.style.backgroundColor = opaqueWhite;
var q = 0;
const STATE_FIRST_DIAGONAL_READY = q++;
const STATE_FIRST_DIAGONAL_DRAWING = q++;
const STATE_FIRST_DIAGONAL_DONE = q; // same as next
const STATE_AUTHOR_BASE_DIAGONAL_READY = q++;
const STATE_AUTHOR_BASE_DIAGONAL_DRAWING = q++;
const STATE_AUTHOR_BASE_DIAGONAL_DONE = q; // same as next
const STATE_AUTHOR_BASE_LINE_READY = q++;
const STATE_AUTHOR_BASE_LINE_DRAWING = q++;
const STATE_AUTHOR_BASE_LINE_DONE = q; // same as next
const STATE_SECOND_DIAGONAL_READY = q++;
const STATE_SECOND_DIAGONAL_DRAWING = q++;
const STATE_SECOND_DIAGONAL_DONE = q; // same as next
const STATE_TITLE_BASE_DIAGONAL_READY = q++;
const STATE_TITLE_BASE_DIAGONAL_DRAWING = q++;
const STATE_TITLE_BASE_DIAGONAL_DONE = q; // same as next
const STATE_TITLE_BASE_LINE_READY = q++;
const STATE_TITLE_BASE_LINE_DRAWING = q++;
const STATE_TITLE_BASE_LINE_DONE = q; // same as next
const STATE_CENTER_LINE_READY = q++;
const STATE_CENTER_LINE_DRAWING = q++;
const STATE_CENTER_LINE_DONE = q; // same as next
const STATE_HEADER_BASE_DIAGONAL_READY = q++;
const STATE_HEADER_BASE_DIAGONAL_DRAWING = q++;
const STATE_HEADER_BASE_DIAGONAL_DONE = q; // same as next
const STATE_HEADER_BASE_LINE_READY = q++;
const STATE_HEADER_BASE_LINE_DRAWING = q++;
const STATE_HEADER_BASE_LINE_DONE = q; // same as next
const STATE_ALL_DONE = q++;
const STATE_PENGUIN_APPEAR = 0;
const STATE_PENGUIN_DONE = 0;
const STATE_HEADER_TEXT_APPEAR = 0;
const STATE_HEADER_TEXT_DONE = 0;
const STATE_TITLE_TEXT_APPEAR = 0;
const STATE_TITLE_TEXT_DONE = 0;
const STATE_AUTHOR_TEXT_APPEAR = 0;
const STATE_AUTHOR_TEXT_DONE = 0;
var globalState = STATE_FIRST_DIAGONAL_READY;
var lastStateChange = 0;
function redraw(clock) {
context.fillStyle =
context.clearRect(0,0,canvas.width,canvas.height);
var next = false;
if (window.lastStateChange == 0) {
window.lastStateChange = clock;
}
var time = clock - window.lastStateChange;
var args = [window.globalState,window.mousePos,window.mouseClick,time];
drawPortrait.apply(null,args);
drawGreen.apply(null,args);
next = next || drawBorder.apply(null,args);
next = next || drawFirstDiagonal.apply(null,args);
next = next || drawAuthorBaseDiagonal.apply(null,args);
next = next || drawAuthorBaseLine.apply(null,args);
next = next || drawSecondDiagonal.apply(null,args);
next = next || drawTitleBaseDiagonal.apply(null,args);
next = next || drawHeaderBaseDiagonal.apply(null,args);
next = next || drawCenterLine.apply(null,args);
next = next || drawTitleBaseLine.apply(null,args);
next = next || drawHeaderBaseLine.apply(null,args);
next = next || drawAlignmentLines.apply(null,args);
drawPenguin.apply(null,args);
drawHeaderText.apply(null,args);
drawTitleText.apply(null,args);
drawAuthorText.apply(null,args);
if (window.globalState == STATE_ALL_DONE) {
canvas.style.cursor = 'pointer';
if (window.mouseClick && time > 3000) {
var url = "https://en.wikipedia.org/wiki/Romek_Marber";
window.location = url;
}
} else {
if (next) {
++window.globalState;
window.lastStateChange = clock;
}
}
window.mouseClick = false;
window.requestAnimationFrame(redraw);
}
// Elements
function drawBorder(state,pos,click,time) {
if (false) {
context.lineWidth = 1;
context.strokeStyle = COLOR_BLACK(1);
line(pageTopEdge);
line(pageRightEdge);
line(pageBottomEdge);
line(pageLeftEdge);
return false;
}
}
var firstDiagonal = LINE(pageB,pageA);
function drawFirstDiagonal(state,pos,click,time) {
if (state == STATE_FIRST_DIAGONAL_READY) {
return activeTarget(firstDiagonal.a, pos,click,time);
} else if (state == STATE_FIRST_DIAGONAL_DRAWING) {
return activeLine(firstDiagonal, pos,click,time);
} else if (state >= STATE_FIRST_DIAGONAL_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
} else {
context.strokeStyle = COLOR_BLACK(1);
}
line(firstDiagonal);
return false;
} else {
return false;
}
}
var secondDiagonal = LINE(POINT(pageB.x,pageA.y),POINT(pageA.x,pageB.y));
function drawSecondDiagonal(state,pos,click,time) {
if (state == STATE_SECOND_DIAGONAL_READY) {
return activeTarget(secondDiagonal.a, pos,click,time);
} else if (state == STATE_SECOND_DIAGONAL_DRAWING) {
return activeLine(secondDiagonal, pos,click,time);
} else if (state >= STATE_SECOND_DIAGONAL_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
} else {
context.strokeStyle = COLOR_BLACK(1);
}
line(secondDiagonal);
return false;
} else {
return false;
}
}
var authorBaseCross = POINT(0,0);
var authorBaseDiagonal = LINE(POINT(pageB.x,pageA.y),POINT(0,0));
{
var t;
t = projectPointOnLine(authorBaseDiagonal.a, firstDiagonal);
authorBaseCross = linePointAt(firstDiagonal, t);
var toCross = LINE(authorBaseDiagonal.a,authorBaseCross);
var extended = LINE(authorBaseDiagonal.a,linePointAt(toCross, 10.0));
t = intersectLines(pageLeftEdge,extended);
authorBaseDiagonal.b = linePointAt(pageLeftEdge, t);
}
function drawAuthorBaseDiagonal(state,pos,click,time) {
function rightAngle(color) {
var rightAngleDir1 = MUL(NORMALIZE(SUB(authorBaseDiagonal.a,authorBaseCross)), -10);
var rightAngleDir2 = MUL(NORMALIZE(SUB(firstDiagonal.a,authorBaseCross)), 10);
var rightAngleStart1 = ADD(authorBaseCross,rightAngleDir2);
var rightAngleStart2 = ADD(authorBaseCross,rightAngleDir1);
context.strokeStyle = color;
line(LINE(rightAngleStart1,ADD(rightAngleStart1,rightAngleDir1)));
line(LINE(rightAngleStart2,ADD(rightAngleStart2,rightAngleDir2)));
}
if (state == STATE_AUTHOR_BASE_DIAGONAL_READY) {
return activeTarget(authorBaseDiagonal.a, pos,click,time);
} else if (state == STATE_AUTHOR_BASE_DIAGONAL_DRAWING) {
var snappedLine = LINE(authorBaseDiagonal.a,authorBaseCross);
var t = projectPointOnLine(pos,snappedLine);
var hasCrossedFirstDiagonal = (t >= 1.0);
if (hasCrossedFirstDiagonal) {
// Snap
var snappedPos = linePointAt(snappedLine,t);
rightAngle(COLOR_RED(1));
return activeLine(authorBaseDiagonal, snappedPos,click,time);
} else {
// Freeform
return activeLine(authorBaseDiagonal, pos,click,time);
}
} else if (state >= STATE_AUTHOR_BASE_DIAGONAL_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
rightAngle(COLOR_SPECIAL(alpha));
} else {
context.strokeStyle = COLOR_BLACK(1);
rightAngle(COLOR_BLACK(1));
}
line(authorBaseDiagonal);
return false;
} else {
return false;
}
}
var authorBaseLine = LINE(POINT(0,0),POINT(0,0));
{
var t;
t = projectPointOnLine(authorBaseCross,pageLeftEdge);
authorBaseLine.a = linePointAt(pageLeftEdge,t);
t = projectPointOnLine(authorBaseCross,pageRightEdge);
authorBaseLine.b = linePointAt(pageRightEdge,t);
}
function drawAuthorBaseLine(state,pos,click,time) {
if (state == STATE_AUTHOR_BASE_LINE_READY) {
return activeTarget(authorBaseCross, pos,click,time);
} else if (state == STATE_AUTHOR_BASE_LINE_DRAWING) {
return activeLineOutward(authorBaseLine,authorBaseCross, pos,click,time);
} else if (state >= STATE_AUTHOR_BASE_LINE_DONE) {
context.lineWidth = 1;
context.strokeStyle = COLOR_BLACK(1);
line(authorBaseLine);
return false;
} else {
return false;
}
}
var centerLine = LINE(POINT(0,0),POINT(0,0));
var centerPoint = POINT(0,0);
{
var t;
var t = intersectLines(firstDiagonal,secondDiagonal);
centerPoint = linePointAt(firstDiagonal,t);
t = projectPointOnLine(centerPoint,pageBottomEdge);
centerLine.a = linePointAt(pageBottomEdge,t);
t = projectPointOnLine(centerPoint,pageTopEdge);
centerLine.b = linePointAt(pageTopEdge,t);
}
function drawCenterLine(state,pos,click,time) {
if (state == STATE_CENTER_LINE_READY) {
return activeTarget(centerPoint, pos,click,time);
} else if (state == STATE_CENTER_LINE_DRAWING) {
return activeLineOutward(centerLine,centerPoint, pos,click,time);
} else if (state >= STATE_CENTER_LINE_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
} else {
context.strokeStyle = COLOR_BLACK(1);
}
line(centerLine);
return false;
} else {
return false;
}
}
var titleBaseDiagonal = LINE(firstDiagonal.b,authorBaseLine.b);
function drawTitleBaseDiagonal(state,pos,click,time) {
if (state == STATE_TITLE_BASE_DIAGONAL_READY) {
return activeTarget(titleBaseDiagonal.a, pos,click,time);
} else if (state == STATE_TITLE_BASE_DIAGONAL_DRAWING) {
return activeLine(titleBaseDiagonal, pos,click,time);
} else if (state >= STATE_TITLE_BASE_DIAGONAL_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
} else {
context.strokeStyle = COLOR_BLACK(1);
}
line(titleBaseDiagonal);
return false;
} else {
return false;
}
}
var titleBaseLine = LINE(POINT(0,0),POINT(0,0));
var titleBasePoint = POINT(0,0);
{
var t = intersectLines(titleBaseDiagonal,secondDiagonal);
titleBasePoint = linePointAt(titleBaseDiagonal,t);
t = projectPointOnLine(titleBasePoint,pageRightEdge);
titleBaseLine.a = linePointAt(pageRightEdge,t);
t = projectPointOnLine(titleBasePoint,pageLeftEdge);
titleBaseLine.b = linePointAt(pageLeftEdge,t);
}
function drawTitleBaseLine(state,pos,click,time) {
if (state == STATE_TITLE_BASE_LINE_READY) {
return activeTarget(titleBasePoint, pos,click,time);
} else if (state == STATE_TITLE_BASE_LINE_DRAWING) {
return activeLineOutward(titleBaseLine,titleBasePoint, pos,click,time);
} else if (state >= STATE_TITLE_BASE_LINE_DONE) {
context.lineWidth = 1;
context.strokeStyle = COLOR_BLACK(1);
line(titleBaseLine);
return false;
} else {
return false;
}
}
var headerBaseDiagonal = LINE(authorBaseDiagonal.b,centerLine.b);
function drawHeaderBaseDiagonal(state,pos,click,time) {
if (state == STATE_HEADER_BASE_DIAGONAL_READY) {
return activeTarget(headerBaseDiagonal.a, pos,click,time);
} else if (state == STATE_HEADER_BASE_DIAGONAL_DRAWING) {
return activeLine(headerBaseDiagonal, pos,click,time);
} else if (state >= STATE_HEADER_BASE_DIAGONAL_DONE) {
context.lineWidth = 1;
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_SPECIAL(alpha);
} else {
context.strokeStyle = COLOR_BLACK(1);
}
line(headerBaseDiagonal);
return false;
} else {
return false;
}
}
var headerBaseLine = LINE(POINT(0,0),POINT(0,0));
var headerBasePoint = POINT(0,0);
{
var t = intersectLines(headerBaseDiagonal,titleBaseDiagonal);
headerBasePoint = linePointAt(headerBaseDiagonal,t);
t = projectPointOnLine(headerBasePoint,pageLeftEdge);
headerBaseLine.a = linePointAt(pageLeftEdge,t);
t = projectPointOnLine(headerBasePoint,pageRightEdge);
headerBaseLine.b = linePointAt(pageRightEdge,t);
}
function drawHeaderBaseLine(state,pos,click,time) {
if (state == STATE_HEADER_BASE_LINE_READY) {
return activeTarget(headerBasePoint, pos,click,time);
} else if (state == STATE_HEADER_BASE_LINE_DRAWING) {
return activeLineOutward(headerBaseLine,headerBasePoint, pos,click,time);
} else if (state >= STATE_HEADER_BASE_LINE_DONE) {
context.lineWidth = 1;
context.strokeStyle = COLOR_BLACK(1);
line(headerBaseLine);
return false;
} else {
return false;
}
}
// Maybe make these get drawn as dotted when the relevant
// crossings get drawn?
var textAlignmentLine1 = LINE(POINT(0,0),POINT(0,0));
var textAlignmentLine2 = LINE(POINT(0,0),POINT(0,0));
var textAlignmentLine3 = LINE(POINT(0,0),POINT(0,0));
var penguinAlignmentLine = LINE(POINT(0,0),POINT(0,0));
{
var t = intersectLines(titleBaseLine,authorBaseDiagonal);
var cross = linePointAt(titleBaseLine,t);
t = projectPointOnLine(cross,pageTopEdge);
textAlignmentLine1.a = linePointAt(pageTopEdge,t);
t = projectPointOnLine(cross,authorBaseLine);
textAlignmentLine1.b = linePointAt(authorBaseLine,t);
t = projectPointOnLine(authorBaseCross,pageTopEdge);
textAlignmentLine2.a = linePointAt(pageTopEdge,t);
t = projectPointOnLine(authorBaseCross,authorBaseLine);
textAlignmentLine2.b = linePointAt(authorBaseLine,t);
var t = intersectLines(headerBaseLine,secondDiagonal);
var cross = linePointAt(headerBaseLine,t);
t = projectPointOnLine(cross,pageTopEdge);
textAlignmentLine3.a = linePointAt(pageTopEdge,t);
t = projectPointOnLine(cross,authorBaseLine);
textAlignmentLine3.b = linePointAt(authorBaseLine,t);
var t = intersectLines(headerBaseLine,firstDiagonal);
var cross = linePointAt(headerBaseLine,t);
t = projectPointOnLine(cross,pageTopEdge);
penguinAlignmentLine.a = linePointAt(pageTopEdge,t);
t = projectPointOnLine(cross,authorBaseLine);
penguinAlignmentLine.b = linePointAt(authorBaseLine,t);
}
function drawAlignmentLines(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
context.save();
context.lineWidth = 1;
context.setLineDash([2,4]);
var alpha = Math.min(time/2000, 1);
context.strokeStyle = COLOR_WHITE(alpha);
line(textAlignmentLine1);
line(textAlignmentLine2);
line(textAlignmentLine3);
line(penguinAlignmentLine);
context.restore();
return false;
} else {
return false;
}
}
var fontName = "Helvetica,'Helvetica Neue',Arial,sans-serif";
function drawPenguin(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
context.save();
var destHeight = Math.abs(penguinAlignmentLine.a.y-headerBaseLine.a.y) * 0.7;
var scale = destHeight/penguinImage.height;
var x = penguinAlignmentLine.a.x - scale*penguinImage.width;
var y = headerBaseLine.a.y - scale*penguinImage.height - 8;
var alpha = Math.min(time/2000, 1);
context.globalAlpha = alpha;
context.drawImage(penguinImage,x,y,scale*penguinImage.width,scale*penguinImage.height);
context.restore();
}
}
function drawHeaderText(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
var fontSize = 20;
context.font = "" + fontSize + "px " + fontName;
context.textAlign = 'left';
context.textBaseline = 'bottom';
var alpha = Math.min(time/2000, 1);
context.fillStyle = COLOR_BLACK(alpha);
// Series
var y = headerBaseLine.a.y-22;
var p = POINT(textAlignmentLine1.a.x,y);
fillTextCondensed("Penguin Crime", p.x, p.y, 0.95);
// Price
context.textAlign = 'right';
var p = POINT(textAlignmentLine3.a.x,y);
fillTextCondensed("2\u20326", p.x, p.y, 0.95);
}
}
function drawTitleText(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
var fontSize = 33;
context.font = "bold " + fontSize + "px " + fontName;
context.textAlign = 'left';
context.textBaseline = 'bottom';
var alpha = Math.min(time/2000, 1);
context.fillStyle = COLOR_BLACK(alpha);
var y, p;
// First line:
y = titleBaseLine.a.y-40;
p = POINT(textAlignmentLine1.a.x,y);
fillTextCondensed("1925\u200a-\u200a2020", p.x-6, p.y, 0.95);
// Second line:
y = titleBaseLine.a.y-3;
p = POINT(textAlignmentLine1.a.x,y);
fillTextCondensed("In memoriam", p.x, p.y, 0.95);
}
}
function drawAuthorText(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
var fontSize = 20;
context.font = "bold " + fontSize + "px " + fontName;
context.textAlign = 'left';
context.textBaseline = 'bottom';
if (state == STATE_ALL_DONE) {
var alpha = Math.min(time/2000, 1);
context.fillStyle = COLOR_WHITE(alpha);
} else {
context.fillStyle = COLOR_BLACK(1);
}
var p = POINT(textAlignmentLine1.a.x,authorBaseLine.a.y-5);
fillTextCondensed("Romek Marber", p.x, p.y, 0.95);
}
}
function drawPortrait(state,pos,click,time) {
var maxWidth = Math.abs(pageLeftEdge.a.x - pageRightEdge.a.x);
var maxHeight = Math.abs(authorBaseLine.a.y - pageBottomEdge.a.y);
var scale = Math.max(maxWidth/portraitImage.width,maxHeight/portraitImage.height);
var width = scale*portraitImage.width;
var height = scale*portraitImage.height;
var x = centerLine.a.x-0.5*width;
var y = authorBaseLine.a.y - 30;
context.save();
var path = new Path2D();
var clipX = pageLeftEdge.a.x;
var clipY = pageTopEdge.a.y;
var clipWidth = Math.abs(pageLeftEdge.a.x-pageRightEdge.a.x);
var clipHeight = Math.abs(pageTopEdge.a.y-pageBottomEdge.a.y);
path.rect(clipX,clipY,clipWidth,clipHeight);
context.clip(path, "nonzero");
context.drawImage(portraitImage,x,y,width,height);
context.globalCompositeOperation = 'multiply';
context.fillStyle = COLOR_WHITE(1);
context.fillRect(0,0,canvas.width,canvas.height);
context.restore();
}
function drawGreen(state,pos,click,time) {
if (state >= STATE_ALL_DONE) {
context.save();
context.globalCompositeOperation = 'multiply';
var alpha = Math.min(time/2000, 1);
context.fillStyle = COLOR_GREEN(alpha);
context.fillRect(0,0,canvas.width,canvas.height);
context.restore();
}
}
// Utils
function POINT(x,y) {
return {'x':x, 'y':y};
}
function LINE(a,b) {
return {'a':a, 'b':b};
}
function ADD(a,b) {
return POINT(a.x+b.x,a.y+b.y);
}
function SUB(a,b) {
return POINT(a.x-b.x,a.y-b.y);
}
function MUL(a,t) {
return POINT(t*a.x,t*a.y);
}
function DOT(a,b) {
return (a.x*b.x+a.y*b.y)
}
function CROSS(a,b) {
return a.x*b.y-a.y*b.x
}
function NORMALIZE(p) {
var mag = Math.sqrt(p.x*p.x+p.y*p.y);
return POINT(p.x/mag,p.y/mag);
}
function _signedTriArea(a,b,c) {
return (a.x-c.x)*(b.y-c.y) - (a.y-c.y)*(b.x-c.x);
}
function linePointAt(l, t) {
return POINT( l.a.x+t*(l.b.x-l.a.x), l.a.y+t*(l.b.y-l.a.y) );
}
function intersectLines(l,m) {
var a1 = _signedTriArea(l.a,l.b,m.b);
var a2 = _signedTriArea(l.a,l.b,m.a);
if (a1*a2 < 0) {
var a3 = _signedTriArea(m.a,m.b,l.a);
var a4 = a3 + a2 - a1;
if (a3*a4 < 0) {
return a3 / (a3-a4);
}
}
return null;
}
function projectPointOnLine(p,l) {
var ab = SUB(l.b,l.a);
var ac = SUB(p,l.a)
return DOT(ac,ab)/DOT(ab,ab);
}
function line(l) {
context.beginPath();
context.moveTo(l.a.x,l.a.y);
context.lineTo(l.b.x,l.b.y);
context.stroke();
}
function activeLine(l, pos,click,time) {
context.fillStyle = COLOR_RED(1);
target(l.b,time);
context.lineWidth = 1;
context.strokeStyle = COLOR_RED(1);
line(LINE(l.a,pos));
var hit = hittest(pos,l.b);
return (click && hit);
}
function activeLineOutward(l,p, pos,click,time) {
context.fillStyle = COLOR_RED(1);
target(l.b,time);
context.lineWidth = 1;
context.strokeStyle = COLOR_RED(1);
var firstHalf =LINE(p,l.a);
var secondHalf =LINE(p,l.b);
var t = projectPointOnLine(pos,secondHalf);
if (t >= 0) {
line(LINE(p,linePointAt(firstHalf,t)));
line(LINE(p,linePointAt(secondHalf,t)));
} else {
t = projectPointOnLine(pos,firstHalf);
line(LINE(p,linePointAt(firstHalf,t)));
line(LINE(p,linePointAt(secondHalf,t)));
}
var hit = hittest(pos,l.b);
return (click && hit);
}
const TARGET_RADIUS = 5;
function target(p,time) {
var flash = Math.abs(Math.pow(Math.sin(time/300),2));
context.fillStyle = COLOR_RED(flash);
context.beginPath();
context.ellipse(p.x,p.y,TARGET_RADIUS,TARGET_RADIUS,0,0,2.*Math.PI);
context.fill();
}
function activeTarget(p, pos,click,time) {
target(p,time);
var hit = hittest(pos,p);
return (click && hit);
}
var HIT_RADIUS = 20;
function hittest(p0,p1) {
return (Math.abs(p0.x-p1.x) <= HIT_RADIUS && Math.abs(p0.y-p1.y) <= HIT_RADIUS);
}
function fillTextCondensed(text,x,y,factor) {
if (context.textAlign == 'right') {
for (var i=text.length-1; i>=0; --i) {
var c = text.substring(i,i+1);
var m = context.measureText(c);
context.fillText(c,x,y);
x -= factor*m.width;
}
} else {
for (var i=0; i<text.length; ++i) {
var c = text.substring(i,i+1);
var m = context.measureText(c);
context.fillText(c,x,y);
x += factor*m.width;
}
}
}
var penguinImage = new Image();
penguinImage.src = 'data:image/png;base64,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';
var portraitImage = new Image();
portraitImage.src = 'data:image/jpg;base64,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';
// Begin:
window.requestAnimationFrame(redraw);
</script>
</body>
| 209.454324 | 113,485 | 0.934125 |
0c3834faa87a5fb80d0bef69da564871aae491e1 | 2,681 | kt | Kotlin | src/main/kotlin/com/jonaswanke/unicorn/action/Context.kt | JonasWanke/Unicorn | ad66dae01b56f6a11ce7e144497b1067a8a66663 | [
"Apache-2.0"
] | 11 | 2019-01-30T14:13:34.000Z | 2022-01-22T10:55:48.000Z | src/main/kotlin/com/jonaswanke/unicorn/action/Context.kt | JonasWanke/Unicorn | ad66dae01b56f6a11ce7e144497b1067a8a66663 | [
"Apache-2.0"
] | 57 | 2019-01-30T15:44:42.000Z | 2020-04-17T12:11:08.000Z | src/main/kotlin/com/jonaswanke/unicorn/action/Context.kt | JonasWanke/Unicorn | ad66dae01b56f6a11ce7e144497b1067a8a66663 | [
"Apache-2.0"
] | null | null | null | package com.jonaswanke.unicorn.action
import com.jonaswanke.unicorn.api.gitHub
import com.jonaswanke.unicorn.core.GlobalConfig
import com.jonaswanke.unicorn.core.LogCollector
import com.jonaswanke.unicorn.core.LogCollector.Priority
import com.jonaswanke.unicorn.core.RunContext
import com.jonaswanke.unicorn.utils.Markup
import org.kohsuke.github.GHRepository
import java.io.File
class GitHubActionRunContext private constructor(
override val log: LogCollector
) : RunContext() {
constructor() : this(GitHubActionLogCollector())
override val environment = Environment.GITHUB_ACTION
override var globalConfig: GlobalConfig
get() {
val config = super.globalConfig
return config.copy(
gitHub = (config.gitHub ?: GlobalConfig.GitHubConfig()).copy(
anonymousToken = Action.getRequiredInput("repo-token")
)
)
}
set(value) {
super.globalConfig = value
}
override val projectDir = Action.Env.githubWorkspace
override fun copyWithGroup(group: LogCollector.Group) = GitHubActionRunContext(group)
val event: Action.Event = Action.Event.detect(this)
val gitHubRepo: GHRepository
get() = gitHub.api.getRepository(Action.Env.githubRepository)
}
class GitHubActionLogCollector : LogCollector {
override fun log(
priority: Priority,
markup: Markup,
groups: List<LogCollector.Group>,
file: File?,
line: Int?,
col: Int?
) {
val message = (groups.map { it.name } + markup).joinToString(": ") { it.toConsoleString() }
fun logCommand(command: String) {
val metadata = mapOf(
"file" to file?.path,
"line" to line?.toString(),
"col" to col?.toString()
)
.mapNotNull { (key, value) -> value?.let { "$key=${it.metaValueEscaped}" } }
.takeUnless { it.isEmpty() }
?.joinToString(",")
?.let { " $it" }
?: ""
println("::$command $metadata::${message.dataEscaped}")
}
when (priority) {
Priority.DEBUG -> logCommand("debug")
Priority.INFO -> println(message)
Priority.WARNING -> logCommand("warning")
Priority.ERROR, Priority.WTF -> logCommand("error")
}
}
private val String.dataEscaped: String
get() = replace("\r", "%0D")
.replace("\n", "%0A")
private val String.metaValueEscaped: String
get() = dataEscaped
.replace("]", "%5D")
.replace(";", "%3B")
}
| 31.916667 | 99 | 0.5953 |
876e84103076d7a7bd2312635db1950193d655a0 | 379 | html | HTML | index.html | ouzhantrk98/kodluyoruzilkrepo | 58dbfe8ac6264bd3324a2f809a865a3cb9a7daa1 | [
"MIT"
] | null | null | null | index.html | ouzhantrk98/kodluyoruzilkrepo | 58dbfe8ac6264bd3324a2f809a865a3cb9a7daa1 | [
"MIT"
] | null | null | null | index.html | ouzhantrk98/kodluyoruzilkrepo | 58dbfe8ac6264bd3324a2f809a865a3cb9a7daa1 | [
"MIT"
] | null | null | null | <html>
<head>
<h1>Merhaba Dünya</h1>
</head>
<body>
<p1>Yapılan ilk değişiklik..</p1>
<p2>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Doloremque suscipit iure tempore dolor, minima provident minus nostrum iste fugiat excepturi consequatur qui sed esse praesentium commodi ad facilis perspiciatis odio.</p2>
</body>
</html> | 31.583333 | 242 | 0.686016 |
5f92db28554226a5bd9684b8da455168508b14b6 | 1,388 | h | C | request_response.h | tofuliang/dnsforwarder | 97bff09b10df4d0b301a22c22138f15f082cf45d | [
"Linux-OpenIB"
] | 2 | 2015-07-22T10:34:50.000Z | 2015-07-22T10:44:23.000Z | request_response.h | avalon1610/dnsforwarder | 92f3f897e741bc505f4a9a294ef08d59127c841a | [
"Linux-OpenIB"
] | null | null | null | request_response.h | avalon1610/dnsforwarder | 92f3f897e741bc505f4a9a294ef08d59127c841a | [
"Linux-OpenIB"
] | null | null | null | #ifndef REQUEST_RESPONSE_H_INCLUDED
#define REQUEST_RESPONSE_H_INCLUDED
#include "querydnsbase.h"
#include "readconfig.h"
#include "dnscache.h"
#include "common.h"
int InitAddress(ConfigFileInfo *ConfigInfo);
BOOL SocketIsStillReadable(SOCKET Sock, int timeout);
void ClearSocketBuffer(SOCKET Sock);
int SendAndReveiveRawMessageViaTCP(SOCKET Sock,
const void *Content,
int ContentLength,
ExtendableBuffer *ResultBuffer,
uint16_t *TCPLength /* Big-endian */
);
int TCPProxies_Init(StringList *Proxies);
int QueryDNSViaTCP(void);
void SetUDPAntiPollution(BOOL State);
void SetUDPAppendEDNSOpt(BOOL State);
int InitBlockedIP(StringList *l);
int InitIPSubstituting(StringList *l);
int QueryDNSViaUDP(void);
int ProbeFakeAddresses(const char *ServerAddress,
const char *RequestingDomain,
StringList *out
);
struct TestServerArguments
{
const char *ServerAddress;
uint32_t *Counter;
};
int TestServer(struct TestServerArguments *Args);
int SetSocketWait(SOCKET sock, BOOL Wait);
int SetSocketSendTimeLimit(SOCKET sock, int time);
int SetSocketRecvTimeLimit(SOCKET sock, int time);
int SetSocketNonBlock(SOCKET sock, BOOL NonBlocked);
BOOL TCPSocketIsHealthy(SOCKET sock);
void CloseTCPConnection(SOCKET sock);
void TransferStart(BOOL StartTCP);
#endif // REQUEST_RESPONSE_H_INCLUDED
| 21.6875 | 53 | 0.755764 |
e883bfa2025d7dca45e9fef9bb4186e3d7d7650e | 5,751 | cpp | C++ | template_mp/src/utils/RCBot2/bot_waypoint_visibility.cpp | moeabm/VS2013 | dd29099567b286acac7bb542a06f085df78ea480 | [
"Unlicense"
] | null | null | null | template_mp/src/utils/RCBot2/bot_waypoint_visibility.cpp | moeabm/VS2013 | dd29099567b286acac7bb542a06f085df78ea480 | [
"Unlicense"
] | null | null | null | template_mp/src/utils/RCBot2/bot_waypoint_visibility.cpp | moeabm/VS2013 | dd29099567b286acac7bb542a06f085df78ea480 | [
"Unlicense"
] | null | null | null | /*
* This file is part of RCBot.
*
* RCBot by Paul Murphy adapted from Botman's HPB Bot 2 template.
*
* RCBot is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* RCBot is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with RCBot; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* In addition, as a special exception, the author gives permission to
* link the code of this program with the Half-Life Game Engine ("HL
* Engine") and Modified Game Libraries ("MODs") developed by Valve,
* L.L.C ("Valve"). You must obey the GNU General Public License in all
* respects for all of the code used other than the HL Engine and MODs
* from Valve. If you modify this file, you may extend this exception
* to your version of the file, but you are not obligated to do so. If
* you do not wish to do so, delete this exception statement from your
* version.
*
*/
#include "bot.h"
#include "bot_waypoint.h"
#include "bot_waypoint_visibility.h"
#include "bot_globals.h"
#include <stdio.h>
/*unsigned char *CWaypointVisibilityTable :: m_VisTable = NULL;
bool CWaypointVisibilityTable :: bWorkVisibility = false;
int CWaypointVisibilityTable :: iCurFrom = 0;
int CWaypointVisibilityTable :: iCurTo = 0;*/
void CWaypointVisibilityTable :: workVisibility ()
{
int percent;
int iTicks = 0;
register unsigned short int iSize = (unsigned short int) CWaypoints::numWaypoints();
for ( iCurFrom = iCurFrom; iCurFrom < iSize; iCurFrom ++ )
{
for ( iCurTo = iCurTo; iCurTo < iSize; iCurTo ++ )
{
CWaypoint *pWaypoint1 = CWaypoints::getWaypoint(iCurFrom);
CWaypoint *pWaypoint2 = CWaypoints::getWaypoint(iCurTo);
SetVisibilityFromTo(iCurFrom,iCurTo,CBotGlobals::isVisible(pWaypoint1->getOrigin(),pWaypoint2->getOrigin()));
iTicks++;
if ( iTicks >= WAYPOINT_VIS_TICKS )
{
if ( m_fNextShowMessageTime < engine->Time() )
{
percent = (int)(((float)iCurFrom / iSize) * 100);
if ( m_iPrevPercent != percent )
{
Msg(" *** working out visibility %d percent***\n",percent);
m_fNextShowMessageTime = engine->Time() + 2.5f;
m_iPrevPercent = percent;
}
}
return;
}
}
iCurTo = 0;
}
if ( iCurFrom == iSize )
{
// finished
Msg(" *** finished working out visibility ***\n");
/////////////////////////////
// for "concurrent" reading of
// visibility throughout frames
bWorkVisibility = false;
iCurFrom = 0;
iCurTo = 0;
// save waypoints with visibility flag now
if ( SaveToFile() )
{
CWaypoints::save(true);
Msg(" *** saving waypoints with visibility information ***\n");
}
else
Msg(" *** error, couldn't save waypoints with visibility information ***\n");
////////////////////////////
}
}
void CWaypointVisibilityTable :: workVisibilityForWaypoint ( int i, int iNumWaypoints, bool bTwoway )
{
static CWaypoint *Waypoint1;
static CWaypoint *Waypoint2;
static bool bVisible;
Waypoint1 = CWaypoints::getWaypoint(i);
if ( !Waypoint1->isUsed() )
return;
for ( register short int j = 0; j < iNumWaypoints; j ++ )
{
if ( i == j )
{
SetVisibilityFromTo(i,j,1);
continue;
}
Waypoint2 = CWaypoints::getWaypoint(j);
if ( !Waypoint2->isUsed() )
continue;
bVisible = CBotGlobals::isVisible(Waypoint1->getOrigin(),Waypoint2->getOrigin());
SetVisibilityFromTo(i,j,bVisible);
if ( bTwoway )
SetVisibilityFromTo(j,i,bVisible);
}
}
void CWaypointVisibilityTable :: WorkOutVisibilityTable ()
{
register short int i;
int iNumWaypoints = CWaypoints::numWaypoints();
ClearVisibilityTable();
// loop through all waypoint possibilities.
for ( i = 0; i < iNumWaypoints; i ++ )
{
workVisibilityForWaypoint(i,iNumWaypoints,false);
}
}
bool CWaypointVisibilityTable :: SaveToFile ( void )
{
char filename[1024];
wpt_vis_header_t header;
CBotGlobals::buildFileName(filename,CBotGlobals::getMapName(),BOT_WAYPOINT_FOLDER,"rcv",true);
FILE *bfp = CBotGlobals::openFile(filename,"wb");
if ( bfp == NULL )
{
CBotGlobals::botMessage(NULL,0,"Can't open Waypoint Visibility table for writing!");
return false;
}
header.numwaypoints = CWaypoints::numWaypoints();
strncpy(header.szMapName,CBotGlobals::getMapName(),63);
header.waypoint_version = CWaypoints::WAYPOINT_VERSION;
fwrite(&header,sizeof(wpt_vis_header_t),1,bfp);
fwrite(m_VisTable,sizeof(byte),g_iMaxVisibilityByte,bfp);
fclose(bfp);
return true;
}
bool CWaypointVisibilityTable :: ReadFromFile ( int numwaypoints )
{
char filename[1024];
wpt_vis_header_t header;
CBotGlobals::buildFileName(filename,CBotGlobals::getMapName(),BOT_WAYPOINT_FOLDER,"rcv",true);
FILE *bfp = CBotGlobals::openFile(filename,"rb");
if ( bfp == NULL )
{
Msg(" *** Can't open Waypoint Visibility table for reading!\n");
return false;
}
fread(&header,sizeof(wpt_vis_header_t),1,bfp);
if ( header.numwaypoints != numwaypoints )
return false;
if ( header.waypoint_version != CWaypoints::WAYPOINT_VERSION )
return false;
if ( strncmp(header.szMapName,CBotGlobals::getMapName(),63) )
return false;
fread(m_VisTable,sizeof(byte),g_iMaxVisibilityByte,bfp);
fclose(bfp);
return true;
} | 27.649038 | 112 | 0.685446 |
95de4e1bc2d08ed15554a5113293a1614d2f4a15 | 248 | asm | Assembly | mc-sema/validator/x86/tests/FSCALE.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | 2 | 2021-08-07T16:21:29.000Z | 2021-11-17T10:58:37.000Z | mc-sema/validator/x86/tests/FSCALE.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | mc-sema/validator/x86/tests/FSCALE.asm | randolphwong/mcsema | eb5b376736e7f57ff0a61f7e4e5a436bbb874720 | [
"BSD-3-Clause"
] | null | null | null | BITS 32
;TEST_FILE_META_BEGIN
;TEST_TYPE=TEST_F
;TEST_IGNOREFLAGS=
;TEST_FILE_META_END
lea edi, [esp-0xc]
mov word [edi], 0x2
fild word [edi]; st1 = 2
fild word [edi]; st0 = 2
mov edi, 0
;TEST_BEGIN_RECORDING
FSCALE ; st0 = 8
;TEST_END_RECORDING
| 15.5 | 24 | 0.745968 |
b7433e893972f54a29bdb5a9f514e4eb38baaeb5 | 1,465 | lua | Lua | regress/167-verify-cert.lua | fffonion/luaossl | 5ad909dc20779534a7221010d0220865347aedfc | [
"MIT"
] | 128 | 2015-03-01T03:55:18.000Z | 2022-03-11T10:44:55.000Z | regress/167-verify-cert.lua | fffonion/luaossl | 5ad909dc20779534a7221010d0220865347aedfc | [
"MIT"
] | 146 | 2015-01-29T02:38:15.000Z | 2022-03-31T14:26:00.000Z | regress/167-verify-cert.lua | fffonion/luaossl | 5ad909dc20779534a7221010d0220865347aedfc | [
"MIT"
] | 44 | 2015-03-01T00:37:16.000Z | 2022-03-14T17:17:42.000Z | #!/usr/bin/env lua
local regress = require "regress"
if (regress.openssl.OPENSSL_VERSION_NUMBER and regress.openssl.OPENSSL_VERSION_NUMBER < 0x10002000)
or (regress.openssl.LIBRESSL_VERSION_NUMBER and regress.openssl.LIBRESSL_VERSION_NUMBER < 0x20705000)
then
-- skipping test due to different behaviour in earlier OpenSSL versions
return
end
local params = regress.verify_param.new()
params:setDepth(0)
local ca_key, ca_crt = regress.genkey()
do -- should fail as no trust anchor
regress.check(not ca_crt:verify({params=params, chain=nil, store=nil}))
end
local store = regress.store.new()
store:add(ca_crt)
do -- should succeed as cert is in the store
regress.check(ca_crt:verify({params=params, chain=nil, store=store}))
end
local intermediate_key, intermediate_crt = regress.genkey(nil, ca_key, ca_crt)
do -- should succeed as ca cert is in the store
regress.check(intermediate_crt:verify({params=params, chain=nil, store=store}))
end
local _, crt = regress.genkey(nil, intermediate_key, intermediate_crt)
do -- should fail as intermediate cert is missing
regress.check(not crt:verify({params=params, chain=nil, store=store}))
end
local chain = regress.chain.new()
chain:add(intermediate_crt)
do -- should fail as max depth is too low
regress.check(not crt:verify({params=params, chain=chain, store=store}))
end
params:setDepth(1)
do -- should succeed
regress.check(crt:verify({params=params, chain=chain, store=store}))
end
regress.say "OK"
| 30.520833 | 102 | 0.774061 |
04a716b0ce14bee35b401d7f291796d22a87d0c0 | 1,641 | java | Java | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3GroupInAdapter.java | StevenCode/ovirt-engine | 71ce0d81815d4dcddee27634167cc006aac0dd4b | [
"Apache-2.0"
] | null | null | null | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3GroupInAdapter.java | StevenCode/ovirt-engine | 71ce0d81815d4dcddee27634167cc006aac0dd4b | [
"Apache-2.0"
] | null | null | null | backend/manager/modules/restapi/jaxrs/src/main/java/org/ovirt/engine/api/v3/adapters/V3GroupInAdapter.java | StevenCode/ovirt-engine | 71ce0d81815d4dcddee27634167cc006aac0dd4b | [
"Apache-2.0"
] | null | null | null | /*
* Copyright oVirt Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.ovirt.engine.api.v3.adapters;
import static org.ovirt.engine.api.v3.adapters.V3InAdapters.adaptIn;
import org.ovirt.engine.api.model.Group;
import org.ovirt.engine.api.model.Roles;
import org.ovirt.engine.api.v3.V3Adapter;
import org.ovirt.engine.api.v3.types.V3Group;
public class V3GroupInAdapter implements V3Adapter<V3Group, Group> {
@Override
public Group adapt(V3Group from) {
Group to = new Group();
if (from.isSetLinks()) {
to.getLinks().addAll(adaptIn(from.getLinks()));
}
if (from.isSetActions()) {
to.setActions(adaptIn(from.getActions()));
}
if (from.isSetComment()) {
to.setComment(from.getComment());
}
if (from.isSetDescription()) {
to.setDescription(from.getDescription());
}
if (from.isSetDomain()) {
to.setDomain(adaptIn(from.getDomain()));
}
if (from.isSetDomainEntryId()) {
to.setDomainEntryId(from.getDomainEntryId());
}
if (from.isSetId()) {
to.setId(from.getId());
}
if (from.isSetHref()) {
to.setHref(from.getHref());
}
if (from.isSetName()) {
to.setName(from.getName());
}
if (from.isSetNamespace()) {
to.setNamespace(from.getNamespace());
}
if (from.isSetRoles()) {
to.setRoles(new Roles());
to.getRoles().getRoles().addAll(adaptIn(from.getRoles().getRoles()));
}
return to;
}
}
| 29.303571 | 81 | 0.573431 |
964e061a8bf9359f963e6a72f9360f382b9b68a2 | 524 | php | PHP | application/views/layout/highlight.php | harkiramadhan/nyamancurhat.id | 0a68cbaf1cdb6f69f28eb87565a0853a7e6f8444 | [
"MIT"
] | null | null | null | application/views/layout/highlight.php | harkiramadhan/nyamancurhat.id | 0a68cbaf1cdb6f69f28eb87565a0853a7e6f8444 | [
"MIT"
] | null | null | null | application/views/layout/highlight.php | harkiramadhan/nyamancurhat.id | 0a68cbaf1cdb6f69f28eb87565a0853a7e6f8444 | [
"MIT"
] | null | null | null | <div class="card-rounded shadow p-8 p-lg-12 mb-n5 mb-lg-n13" style="background: linear-gradient(90deg, #00A3FF 0%, #1976D2 100%);">
<div class="row row justify-content-around">
<div class="col-lg-7">
<img src="<?= base_url('assets/img/logo_full_white.svg') ?>" alt="" class="img-fluid logo-fly">
</div>
<div class="col-lg-3 mt-4 mt-lg-0">
<a href="#" class="btn btn-lg btn-outline border-2 btn-outline-white d-block">Book a session now</a>
</div>
</div>
</div> | 52.4 | 131 | 0.593511 |
46dd0ca87bfd9642d3c8ad9ab6cbb65c7533d615 | 135 | html | HTML | client/views/hotLists/list/hotLists.html | gsantoshb/Exartu-CRM | 364c47f6e44b073a89bbff813bed5c3f5fd72f2a | [
"IJG"
] | 10 | 2015-09-08T20:28:36.000Z | 2021-06-06T05:24:57.000Z | client/views/hotLists/list/hotLists.html | gsantoshb/Exartu-CRM | 364c47f6e44b073a89bbff813bed5c3f5fd72f2a | [
"IJG"
] | null | null | null | client/views/hotLists/list/hotLists.html | gsantoshb/Exartu-CRM | 364c47f6e44b073a89bbff813bed5c3f5fd72f2a | [
"IJG"
] | 10 | 2016-04-11T09:11:59.000Z | 2018-05-09T08:29:26.000Z | <template name="hotLists">
<div id="content" class="network-content nicer-filters">
{{>hotListsBox}}
</div>
</template> | 27 | 60 | 0.62963 |
2f0c9b6e52443b9f8dd9ba4a55f47a58800ee476 | 297 | php | PHP | app/Cargo.php | JonathanVincentBa/jhetro_5.8 | 446fc28984596a992e99156f6a897235a36eca6d | [
"MIT"
] | null | null | null | app/Cargo.php | JonathanVincentBa/jhetro_5.8 | 446fc28984596a992e99156f6a897235a36eca6d | [
"MIT"
] | null | null | null | app/Cargo.php | JonathanVincentBa/jhetro_5.8 | 446fc28984596a992e99156f6a897235a36eca6d | [
"MIT"
] | null | null | null | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Cargo extends Model
{
protected $table='cargo';
protected $primaryKey='id_cargo';
public $timestamps=true;
protected $fillable =[
'descripcion',
'estado'
];
protected $guarded =[
];
}
| 12.375 | 39 | 0.62963 |
164b9949c6e16c6838242aefd1422f6af7481041 | 1,537 | ts | TypeScript | sources/client/screens/result.ts | SaltyRain/checkers-ts | a50cc86c15f73137991ee4e7cc0a38eba2b7ef1a | [
"MIT"
] | null | null | null | sources/client/screens/result.ts | SaltyRain/checkers-ts | a50cc86c15f73137991ee4e7cc0a38eba2b7ef1a | [
"MIT"
] | null | null | null | sources/client/screens/result.ts | SaltyRain/checkers-ts | a50cc86c15f73137991ee4e7cc0a38eba2b7ef1a | [
"MIT"
] | 1 | 2020-05-07T13:35:17.000Z | 2020-05-07T13:35:17.000Z | /**
* Сообщение с итогом игры
*/
const message = document.querySelector( '.game-result' ) as HTMLParagraphElement;
/**
* Кнопка перезапуска игры
*/
const restart = document.querySelector( '.button--restart' ) as HTMLButtonElement;
if ( !message || !restart )
{
throw new Error( 'Can\'t find required elements on "result" screen' );
}
// restart.addEventListener('click', clearField);
// function clearField(): void
// {
// let cell: HTMLElement;
// for (let i: number = 0; i <= 2; i++)
// {
// for (let j: number = 0; j <= 2; j++)
// {
// cell = document.getElementById((i + '-' + j))!;
// cell.children[0].classList.remove('mark-visible');
// cell.children[1].classList.remove('mark-visible');
// }
// }
// }
/**
* Обновляет экран завершения игры
*
* @param result Результат, с которым игра завершилась
*/
function update( result: 'win' | 'loose' | 'abort' ): void
{
restart.hidden = false;
let text: string;
switch ( result )
{
case 'win':
text = 'Вы выиграли';
break;
case 'loose':
text = 'Вы проиграли';
break;
case 'abort':
text = 'Игра прервана';
restart.hidden = true;
break;
default:
throw new Error( `Wrong game result "${result}"` );
}
message.textContent = text;
}
/**
* Устанавливает обработчик перезапуска игры
*
* @param listener Обработчик перезапуска игры
*/
function setRestartHandler( listener: ( event: MouseEvent ) => void ): void
{
restart.addEventListener( 'click', listener );
}
export {
update,
setRestartHandler,
};
| 19.705128 | 82 | 0.630449 |
4bfb2273e6cafad52cb289571b7c47a5771a9230 | 1,806 | swift | Swift | AcrosticPoem_ios/ViewModel/SplashViewModel.swift | crea9813/AcrosticPoem_iOS | a0bcf620cab041418a50c23060de5c2a34383439 | [
"Apache-2.0"
] | null | null | null | AcrosticPoem_ios/ViewModel/SplashViewModel.swift | crea9813/AcrosticPoem_iOS | a0bcf620cab041418a50c23060de5c2a34383439 | [
"Apache-2.0"
] | null | null | null | AcrosticPoem_ios/ViewModel/SplashViewModel.swift | crea9813/AcrosticPoem_iOS | a0bcf620cab041418a50c23060de5c2a34383439 | [
"Apache-2.0"
] | null | null | null | //
// SplashViewModel.swift
// AcrosticPoem_ios
//
// Created by Poto on 2020/11/26.
// Copyright © 2020 Minestrone. All rights reserved.
//
import RxSwift
import RxRelay
class SplashViewModel {
private let errorMessageRelay = BehaviorRelay<String?>(value: nil)
private let tokenResultRelay = BehaviorRelay<String?>(value: nil)
private let validateResultRelay = BehaviorRelay<Int?>(value: nil)
var errorMessage : Observable<String> {
return errorMessageRelay
.compactMap { $0 }
}
var tokenSuccess : Observable<String> {
return tokenResultRelay
.compactMap { $0 }
}
var validateSuccess : Observable<Int> {
return validateResultRelay
.filter { $0 == 200 }
.map { $0! }
}
var networkService : NetworkService
init() {
networkService = NetworkService()
}
func requestToken() {
networkService.requestToken(completion: {
response in
switch response {
case .success(let token):
self.tokenResultRelay.accept(token)
case .failure(_):
self.errorMessageRelay.accept("게스트로 접속하는데 실패하였습니다.")
}
})
}
func validateToken(token : String) {
networkService.validateToken(token: token, completion: {
response in
switch response {
case .success(let code):
if code == 200 {
self.validateResultRelay.accept(code)
} else {
self.errorMessageRelay.accept("서버에 접속하는데 실패하였습니다.")
}
case .failure(_):
self.errorMessageRelay.accept("로그인 하는데 실패하였습니다.")
}
})
}
}
| 26.558824 | 71 | 0.556478 |
286d5184a8f8590911af5641c9b5ece1905c313a | 652 | swift | Swift | Sources/Extensions/Numerics/Integers/UInt4/UInt4+Subtractable.swift | alexandrehsaad/swift-extensions | 03ef8a912d80de70c60f1ca9359a7e46d1e16bb5 | [
"Apache-2.0"
] | null | null | null | Sources/Extensions/Numerics/Integers/UInt4/UInt4+Subtractable.swift | alexandrehsaad/swift-extensions | 03ef8a912d80de70c60f1ca9359a7e46d1e16bb5 | [
"Apache-2.0"
] | 124 | 2022-03-21T17:00:52.000Z | 2022-03-30T08:15:12.000Z | Sources/Extensions/Numerics/Integers/UInt4/UInt4+Subtractable.swift | alexandrehsaad/swift-extensions | 03ef8a912d80de70c60f1ca9359a7e46d1e16bb5 | [
"Apache-2.0"
] | 1 | 2021-11-17T21:01:36.000Z | 2021-11-17T21:01:36.000Z | // UInt4+Subtractable.swift
// Extensions
//
// Copyright © 2021-2022 Alexandre H. Saad
// Licensed under Apache License v2.0 with Runtime Library Exception
//
extension UInt4: Subtractable {
/// Returns the difference of subracting the second specified value from the first.
///
/// ```swift
/// let two: UInt4 = 2
/// let one: UInt4 = 1
/// print(two - one)
/// // Prints "1"
/// ```
///
/// - parameter lhs: The minuend.
/// - parameter rhs: The subtrahend.
/// - returns: The difference.
public static func - (_ lhs: Self, _ rhs: Self) -> Self {
let newValue: Self.Value = lhs.value - rhs.value
return .init(value: newValue)
}
}
| 25.076923 | 84 | 0.645706 |
e78fd088b401e065b70834daf988033f938321aa | 11,589 | js | JavaScript | build/jsforce-api-bulk.min.js | Harrison-M/jsforce | 5132007e809fc75ddb166c95a9955f2fd94c5766 | [
"MIT"
] | null | null | null | build/jsforce-api-bulk.min.js | Harrison-M/jsforce | 5132007e809fc75ddb166c95a9955f2fd94c5766 | [
"MIT"
] | null | null | null | build/jsforce-api-bulk.min.js | Harrison-M/jsforce | 5132007e809fc75ddb166c95a9955f2fd94c5766 | [
"MIT"
] | null | null | null | !function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&define.amd)define([],e);else{var t;t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,t=t.jsforce||(t.jsforce={}),t=t.modules||(t.modules={}),t=t.api||(t.api={}),t.Bulk=e()}}(function(){return function e(t,o,n){function r(s,a){if(!o[s]){if(!t[s]){var u="function"==typeof require&&require;if(!a&&u)return u(s,!0);if(i)return i(s,!0);var c=new Error("Cannot find module '"+s+"'");throw c.code="MODULE_NOT_FOUND",c}var h=o[s]={exports:{}};t[s][0].call(h.exports,function(e){var o=t[s][1][e];return r(o?o:e)},h,h.exports,e,t,o,n)}return o[s].exports}for(var i="function"==typeof require&&require,s=0;s<n.length;s++)r(n[s]);return r}({1:[function(e,t,o){(function(e){"use strict";var o=window.jsforce.require("inherits"),n=window.jsforce.require("readable-stream"),r=n.Duplex,i=window.jsforce.require("events"),s=window.jsforce.require("lodash/core"),a=window.jsforce.require("./core"),u=window.jsforce.require("./record-stream"),c=(window.jsforce.require("./csv"),window.jsforce.require("./promise")),h=window.jsforce.require("./http-api"),p=function(e,t,o,n,r){this._bulk=e,this.type=t,this.operation=o,this.options=n||{},this.id=r,this.state=this.id?"Open":"Unknown",this._batches={}};o(p,i.EventEmitter),p.prototype.info=function(e){return this._jobInfo||(this._jobInfo=this.check()),this._jobInfo.thenCall(e)},p.prototype.open=function(e){var t=this,o=this._bulk;o._logger;if(!this._jobInfo){var n=this.operation.toLowerCase();"harddelete"===n&&(n="hardDelete");var r=['<?xml version="1.0" encoding="UTF-8"?>','<jobInfo xmlns="http://www.force.com/2009/06/asyncapi/dataload">',"<operation>"+n+"</operation>","<object>"+this.type+"</object>",this.options.extIdField?"<externalIdFieldName>"+this.options.extIdField+"</externalIdFieldName>":"",this.options.concurrencyMode?"<concurrencyMode>"+this.options.concurrencyMode+"</concurrencyMode>":"",this.options.assignmentRuleId?"<assignmentRuleId>"+this.options.assignmentRuleId+"</assignmentRuleId>":"","<contentType>CSV</contentType>","</jobInfo>"].join("");this._jobInfo=o._request({method:"POST",path:"/job",body:r,headers:{"Content-Type":"application/xml; charset=utf-8"},responseType:"application/xml"}).then(function(e){return t.emit("open",e.jobInfo),t.id=e.jobInfo.id,t.state=e.jobInfo.state,e.jobInfo},function(e){throw t.emit("error",e),e})}return this._jobInfo.thenCall(e)},p.prototype.createBatch=function(){var e=new l(this),t=this;return e.on("queue",function(){t._batches[e.id]=e}),e},p.prototype.batch=function(e){var t=this._batches[e];return t||(t=new l(this,e),this._batches[e]=t),t},p.prototype.check=function(e){var t=this,o=this._bulk,n=o._logger;return this._jobInfo=this._waitAssign().then(function(){return o._request({method:"GET",path:"/job/"+t.id,responseType:"application/xml"})}).then(function(e){return n.debug(e.jobInfo),t.id=e.jobInfo.id,t.type=e.jobInfo.object,t.operation=e.jobInfo.operation,t.state=e.jobInfo.state,e.jobInfo}),this._jobInfo.thenCall(e)},p.prototype._waitAssign=function(e){return(this.id?c.resolve({id:this.id}):this.open()).thenCall(e)},p.prototype.list=function(e){var t=this,o=this._bulk,n=o._logger;return this._waitAssign().then(function(){return o._request({method:"GET",path:"/job/"+t.id+"/batch",responseType:"application/xml"})}).then(function(e){n.debug(e.batchInfoList.batchInfo);var t=e.batchInfoList;return t=s.isArray(t.batchInfo)?t.batchInfo:[t.batchInfo]}).thenCall(e)},p.prototype.close=function(){var e=this;return this._changeState("Closed").then(function(t){return e.id=null,e.emit("close",t),t},function(t){throw e.emit("error",t),t})},p.prototype.abort=function(){var e=this;return this._changeState("Aborted").then(function(t){return e.id=null,e.emit("abort",t),t},function(t){throw e.emit("error",t),t})},p.prototype._changeState=function(e,t){var o=this,n=this._bulk,r=n._logger;return this._jobInfo=this._waitAssign().then(function(){var t=['<?xml version="1.0" encoding="UTF-8"?>','<jobInfo xmlns="http://www.force.com/2009/06/asyncapi/dataload">',"<state>"+e+"</state>","</jobInfo>"].join("");return n._request({method:"POST",path:"/job/"+o.id,body:t,headers:{"Content-Type":"application/xml; charset=utf-8"},responseType:"application/xml"})}).then(function(e){return r.debug(e.jobInfo),o.state=e.jobInfo.state,e.jobInfo}),this._jobInfo.thenCall(t)};var l=function(e,t){l.super_.call(this,{objectMode:!0}),this.job=e,this.id=t,this._bulk=e._bulk,this._deferred=c.defer(),this._setupDataStreams()};o(l,n.Writable),l.prototype._setupDataStreams=function(){var e=this,t={nullValue:"#N/A"};this._uploadStream=new u.Serializable,this._uploadDataStream=this._uploadStream.stream("csv",t),this._downloadStream=new u.Parsable,this._downloadDataStream=this._downloadStream.stream("csv",t),this.on("finish",function(){e._uploadStream.end()}),this._uploadDataStream.once("readable",function(){e.job.open().then(function(){e._uploadDataStream.pipe(e._createRequestStream())})});var o=this._dataStream=new r;o._write=function(t,o,n){e._uploadDataStream.write(t,o,n)},o.on("finish",function(){e._uploadDataStream.end()}),this._downloadDataStream.on("readable",function(){o.read(0)}),this._downloadDataStream.on("end",function(){o.push(null)}),o._read=function(t){for(var n;null!==(n=e._downloadDataStream.read());)o.push(n)}},l.prototype._createRequestStream=function(){var e=this,t=e._bulk,o=t._logger;return t._request({method:"POST",path:"/job/"+e.job.id+"/batch",headers:{"Content-Type":"text/csv"},responseType:"application/xml"},function(t,n){t?e.emit("error",t):(o.debug(n.batchInfo),e.id=n.batchInfo.id,e.emit("queue",n.batchInfo))}).stream()},l.prototype._write=function(e,t,o){e=s.clone(e),"insert"===this.job.operation?delete e.Id:"delete"===this.job.operation&&(e={Id:e.Id}),delete e.type,delete e.attributes,this._uploadStream.write(e,t,o)},l.prototype.stream=function(){return this._dataStream},l.prototype.run=l.prototype.exec=l.prototype.execute=function(e,t){var o=this;if("function"==typeof e&&(t=e,e=null),this._result)throw new Error("Batch already executed.");var n=c.defer();if(this._result=n.promise,this._result.then(function(e){o._deferred.resolve(e)},function(e){o._deferred.reject(e)}),this.once("response",function(e){n.resolve(e)}),this.once("error",function(e){n.reject(e)}),s.isObject(e)&&s.isFunction(e.pipe))e.pipe(this._dataStream);else{var r;s.isArray(e)?(s.forEach(e,function(e){o.write(e)}),o.end()):s.isString(e)&&(r=e,this._dataStream.write(r,"utf8"),this._dataStream.end())}return this.thenCall(t)},l.prototype.then=function(e,t,o){return this._deferred.promise.then(e,t,o)},l.prototype.thenCall=function(t){return s.isFunction(t)&&this.then(function(o){e.nextTick(function(){t(null,o)})},function(o){e.nextTick(function(){t(o)})}),this},l.prototype.check=function(e){var t=this._bulk,o=t._logger,n=this.job.id,r=this.id;if(!n||!r)throw new Error("Batch not started.");return t._request({method:"GET",path:"/job/"+n+"/batch/"+r,responseType:"application/xml"}).then(function(e){return o.debug(e.batchInfo),e.batchInfo}).thenCall(e)},l.prototype.poll=function(e,t){var o=this,n=this.job.id,r=this.id;if(!n||!r)throw new Error("Batch not started.");var i=(new Date).getTime(),s=function(){var a=(new Date).getTime();if(a>i+t){var u=new Error("Polling time out. Job Id = "+n+" , batch Id = "+r);return u.name="PollingTimeout",void o.emit("error",u)}o.check(function(t,n){t?o.emit("error",t):"Failed"===n.state?parseInt(n.numberRecordsProcessed,10)>0?o.retrieve():o.emit("error",new Error(n.stateMessage)):"Completed"===n.state?o.retrieve():(o.emit("progress",n),setTimeout(s,e))})};setTimeout(s,e)},l.prototype.retrieve=function(e){var t=this,o=this._bulk,n=this.job.id,r=this.job,i=this.id;if(!n||!i)throw new Error("Batch not started.");return r.info().then(function(e){return o._request({method:"GET",path:"/job/"+n+"/batch/"+i+"/result"})}).then(function(e){var a;if("query"===r.operation){o._conn,e["result-list"].result;a=e["result-list"].result,a=s.map(s.isArray(a)?a:[a],function(e){return{id:e,batchId:i,jobId:n}})}else a=s.map(e,function(e){return{id:e.Id||null,success:"true"===e.Success,errors:e.Error?[e.Error]:[]}});return t.emit("response",a),a}).fail(function(e){throw t.emit("error",e),e}).thenCall(e)},l.prototype.result=function(e){var t=this.job.id,o=this.id;if(!t||!o)throw new Error("Batch not started.");var n=new u.Parsable,r=n.stream("csv");this._bulk._request({method:"GET",path:"/job/"+t+"/batch/"+o+"/result/"+e}).stream().pipe(r);return n};var f=function(){f.super_.apply(this,arguments)};o(f,h),f.prototype.beforeSend=function(e){e.headers=e.headers||{},e.headers["X-SFDC-SESSION"]=this._conn.accessToken},f.prototype.isSessionExpired=function(e){return 400===e.statusCode&&/<exceptionCode>InvalidSessionId<\/exceptionCode>/.test(e.body)},f.prototype.hasErrorInResponseBody=function(e){return!!e.error},f.prototype.parseError=function(e){return{errorCode:e.error.exceptionCode,message:e.error.exceptionMessage}};var d=function(e){this._conn=e,this._logger=e._logger};d.prototype.pollInterval=1e3,d.prototype.pollTimeout=1e4,d.prototype._request=function(e,t){var o=this._conn;e=s.clone(e);var n=[o.instanceUrl,"services/async",o.version].join("/");e.url=n+e.path;var r={responseType:e.responseType};return delete e.path,delete e.responseType,new f(this._conn,r).request(e).thenCall(t)},d.prototype.load=function(e,t,o,n,r){var i=this;if(!e||!t)throw new Error("Insufficient arguments. At least, 'type' and 'operation' are required.");s.isObject(o)&&o.constructor===Object||(r=n,n=o,o=null);var a=this.createJob(e,t,o);a.once("error",function(e){u&&u.emit("error",e)});var u=a.createBatch(),c=function(){u=null,a.close()},h=function(e){"PollingTimeout"!==e.name&&c()};return u.on("response",c),u.on("error",h),u.on("queue",function(){u.poll(i.pollInterval,i.pollTimeout)}),u.execute(n,r)},d.prototype.query=function(e){var t=e.replace(/\([\s\S]+\)/g,"").match(/FROM\s+(\w+)/i);if(!t)throw new Error("No sobject type found in query, maybe caused by invalid SOQL.");var o=t[1],n=this,r=new u.Parsable,i=r.stream("csv");return this.load(o,"query",e).then(function(e){var t=e[0],o=n.job(t.jobId).batch(t.batchId).result(t.id);o.stream().pipe(i)}).fail(function(e){r.emit("error",e)}),r},d.prototype.createJob=function(e,t,o){return new p(this,e,t,o)},d.prototype.job=function(e){return new p(this,null,null,null,e)},a.on("connection:new",function(e){e.bulk=new d(e)}),t.exports=d}).call(this,e("_process"))},{_process:2}],2:[function(e,t,o){function n(){h&&a&&(h=!1,a.length?c=a.concat(c):p=-1,c.length&&r())}function r(){if(!h){var e=setTimeout(n);h=!0;for(var t=c.length;t;){for(a=c,c=[];++p<t;)a&&a[p].run();p=-1,t=c.length}a=null,h=!1,clearTimeout(e)}}function i(e,t){this.fun=e,this.array=t}function s(){}var a,u=t.exports={},c=[],h=!1,p=-1;u.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var o=1;o<arguments.length;o++)t[o-1]=arguments[o];c.push(new i(e,t)),1!==c.length||h||setTimeout(r,0)},i.prototype.run=function(){this.fun.apply(null,this.array)},u.title="browser",u.browser=!0,u.env={},u.argv=[],u.version="",u.versions={},u.on=s,u.addListener=s,u.once=s,u.off=s,u.removeListener=s,u.removeAllListeners=s,u.emit=s,u.binding=function(e){throw new Error("process.binding is not supported")},u.cwd=function(){return"/"},u.chdir=function(e){throw new Error("process.chdir is not supported")},u.umask=function(){return 0}},{}]},{},[1])(1)});
//# sourceMappingURL=jsforce-api-bulk.min.js.map
| 3,863 | 11,539 | 0.71913 |
9844bb9b32a63d2788ce51ab5a48a99d48c1fb4c | 740 | swift | Swift | RxStateExample/RxStateExample/Flow/iOS/Type/SectionModel.swift | srinivasprabhug/RxState | 527e95a78c2b9cbcf3068dc0de24d3cd0ebe69d8 | [
"MIT"
] | 153 | 2017-06-01T06:16:34.000Z | 2022-03-05T19:01:59.000Z | RxStateExample/RxStateExample/Flow/iOS/Type/SectionModel.swift | srinivasprabhug/RxState | 527e95a78c2b9cbcf3068dc0de24d3cd0ebe69d8 | [
"MIT"
] | 6 | 2017-07-21T16:15:28.000Z | 2021-02-05T15:28:12.000Z | RxStateExample/RxStateExample/Flow/iOS/Type/SectionModel.swift | srinivasprabhug/RxState | 527e95a78c2b9cbcf3068dc0de24d3cd0ebe69d8 | [
"MIT"
] | 14 | 2017-06-01T03:20:32.000Z | 2021-03-22T06:20:52.000Z | //
// SectionModel.swift
//
// Created by Nazih Shoura.
// Copyright © 2017 Nazih Shoura. All rights reserved.
// See LICENSE.txt for license information
//
import Foundation
import RxDataSources
struct SectionModel: SectionModelType, SubjectLabelable, CustomDebugStringConvertible {
var items: [SectionItemModelType]
init(items: [SectionItemModelType]) {
self.items = items
}
typealias Item = SectionItemModelType
init(original: SectionModel, items: [SectionItemModelType]) {
self = original
self.items = items
}
var debugDescription: String {
let result = "\(self.subjectLabel)\nitems: \(items)\n"
return result
}
}
protocol SectionItemModelType {}
| 23.870968 | 87 | 0.683784 |
c2b7f2ccb6d19d8d80033e79a32615746ab5f632 | 791 | go | Go | server/main.go | cwithmichael/blood-pressure-tracker | 0b4136dcd745f7e5dd38a4402271afb88f8fb219 | [
"MIT"
] | null | null | null | server/main.go | cwithmichael/blood-pressure-tracker | 0b4136dcd745f7e5dd38a4402271afb88f8fb219 | [
"MIT"
] | 3 | 2020-07-25T21:44:42.000Z | 2021-01-12T03:52:55.000Z | server/main.go | cwithmichael/blood-pressure-tracker | 0b4136dcd745f7e5dd38a4402271afb88f8fb219 | [
"MIT"
] | null | null | null | package main
import (
"github.com/cwithmichael/blood-pressure-tracker/ds"
"github.com/cwithmichael/blood-pressure-tracker/handlers"
"github.com/gorilla/mux"
"github.com/rs/cors"
"log"
"net/http"
)
func main() {
ds, err := ds.NewDS("redis:6379")
if err != nil {
log.Fatal(err)
}
defer ds.Close()
Env := &handlers.Env{ds}
r := mux.NewRouter()
c := cors.New(cors.Options{
AllowedOrigins: []string{"*"}, // All origins
AllowedMethods: []string{http.MethodGet, http.MethodPost, http.MethodDelete},
})
r.HandleFunc("/readings", Env.ReadingsHandler).Methods("GET")
r.HandleFunc("/readings", Env.ReadingsPostHandler).Methods("POST")
r.HandleFunc("/readings/{id:[0-9]+}", Env.ReadingsDeleteHandler).Methods("DELETE")
log.Fatal(http.ListenAndServe(":9000", c.Handler(r)))
}
| 26.366667 | 83 | 0.697851 |
2757387e8114b8d872a85789b7536452589769ef | 343 | css | CSS | site-pw-podcast/modules/FieldtypeCropImage/InputfieldCropImage/InputfieldCropImage.css | benbyford/pw-podcast | d05cbd797a99f8c03697961c383eea47540152d6 | [
"MIT"
] | 3 | 2016-03-16T17:12:02.000Z | 2021-05-12T15:48:51.000Z | site-pw-podcast/modules/FieldtypeCropImage/InputfieldCropImage/InputfieldCropImage.css | benbyford/pw-podcast | d05cbd797a99f8c03697961c383eea47540152d6 | [
"MIT"
] | null | null | null | site-pw-podcast/modules/FieldtypeCropImage/InputfieldCropImage/InputfieldCropImage.css | benbyford/pw-podcast | d05cbd797a99f8c03697961c383eea47540152d6 | [
"MIT"
] | 1 | 2019-04-02T05:22:48.000Z | 2019-04-02T05:22:48.000Z | .crops {
border-top: 0;
overflow: hidden;
padding: 1em;
}
.crops p {
margin: 0 0 0.5em 0;
}
.crops a {
display: block;
float: left;
margin-right: 10px;
}
.crops a img {
background: white;
margin: 0;
padding: 10px;
box-shadow: 2px 2px 5px #333;
max-width: 100%;
}
.InputfieldCropImage .InputfieldFileData {
margin-bottom: 0;
}
| 12.25 | 42 | 0.653061 |
206a876a32cabd3fd729ad507eda76883af64c38 | 4,079 | ps1 | PowerShell | Trellops.ps1 | gfeindel/trellops | 7466d44efa41a6c28e64e73dc5348c6de63c2d4c | [
"MIT"
] | null | null | null | Trellops.ps1 | gfeindel/trellops | 7466d44efa41a6c28e64e73dc5348c6de63c2d4c | [
"MIT"
] | null | null | null | Trellops.ps1 | gfeindel/trellops | 7466d44efa41a6c28e64e73dc5348c6de63c2d4c | [
"MIT"
] | null | null | null | [CmdletBinding()]
$script:trello_api_key = ""
$script:trello_api_token = ""
function Set-TrelloAuth {
param(
[string]$key,
[string]$token
)
$script:trello_api_key = $key
$script:trello_api_token = $token
}
function Get-TrelloAuth {
$key = ""
$token = ""
if($null -ne $env:TRELLO_API_KEY) {
$key = $env:TRELLO_API_KEY
} else {
$key = $script:trello_api_key
}
if($null -ne $env:TRELLO_API_TOKEN) {
$token = $env:TRELLO_API_TOKEN
} else {
$token = $script:trello_api_token
}
"key=${key}&token=${token}"
}
function Invoke-TrelloApi {
param(
[parameter(Mandatory)]
# The URI path following the base API URL.
# Example: /boards/{boardid}
[string]$apiCall,
# URL-encoded Query parameters to follow ? in the URI. Do not include auth info.
[string]$params = ""
)
$baseUri = 'https://api.trello.com/1'
$auth = Get-TrelloAuth
$uri = "${baseUri}${apiCall}?$auth"
if($params) {
$uri += "&$params"
}
Write-Verbose $uri
$result = Invoke-RestMethod -Uri $uri -Method Get
$result
}
function Get-TrelloActions {
param(
[parameter(ParameterSetName="Board")]
[string]$BoardId,
[parameter(ParameterSetName="Card")]
[string]$CardId,
[parameter(ParameterSetName="List")]
[string]$ListId
#To do: Add support for filtering by before/since
)
$uri = ""
switch($PSCmdlet.ParameterSetName) {
"Board" {
$uri = "/boards/$BoardId/actions"
}
"Card" {
$uri = "/cards/$CardId/actions"
}
"List" {
$uri = "/lists/$ListId/actions"
}
}
$result = Invoke-TrelloApi -apiCall $uri
$result
}
function Get-TrelloBoards {
param(
[string]$BoardId
)
if($null -eq $BoardId -or $BoardId -eq '') {
$uri = "/members/me/boards"
} else {
$uri = "/boards/${BoardId}"
}
$boards = Invoke-TrelloApi -apiCall $uri
$boards
}
function Get-TrelloBoardLists {
param(
[parameter(Mandatory)]
[string]$BoardId
)
$lists = Invoke-TrelloApi -apiCall "/boards/${BoardId}/lists"
$lists
}
function Get-TrelloBoardCards {
param(
[parameter(Mandatory)]
[string]$BoardId,
[switch]$Members=$false
)
$apiCall = "/boards/${BoardId}/cards"
if($Members) {
$apiCall += "?members=true"
}
$cards = Invoke-TrelloApi -apiCall $apiCall
$cards
}
function Get-TrelloCardChecklists {
param(
[parameter(Mandatory)]
[string]$CardId
)
Invoke-TrelloApi -apiCall "/card/${CardId}/checklists" -params "checkItems=all"
}
function Get-TrelloListCards {
param(
[string]$ListId,
[switch]$Members = $false
[switch]$Description = $false
)
$params = "members=false,desc=true"
if($Members) {
$params = "members=true"
}
$cards = Invoke-TrelloApi -apiCall "/lists/${ListId}/cards" -params $params
$cards
}
function Get-TrelloCardCount {
<#
.Description
Returns the count of cards by list for a specific board.
#>
param(
[parameter(ParameterSetName='Name',Mandatory)]
[string]$BoardName,
[parameter(ParameterSetName='Id',Mandatory)]
[string]$BoardId
)
$stats = [ordered]@{} # 'ordered' forces lists to appear in same order as on the board.
$lists = $null
if($BoardName) {
$boards = Get-TrelloBoards
$projectBoard = $boards |Where-Object -Property name -Value $BoardName -EQ | Select-object -First 1
$lists = Get-TrelloBoardLists -BoardId $projectBoard.id # Returned list of lists is ordered by pos.
} else {
$lists = Get-TrelloBoardLists -BoardId $BoardId
}
foreach($list in $lists){
$cards = Get-TrelloListCards -ListId $list.id
$stats.Add($list.name,($cards | Measure-Object).Count)
}
[pscustomobject]$stats
} | 25.02454 | 107 | 0.578328 |
b92668d944c97f8b0c15e55ea2d1d80594e4dfb5 | 1,233 | h | C | Disruptor/SequenceGroups.h | ulricheck/Disruptor-cpp | fd2cef124f5bf2dbbe399137fd69e85844b90a6b | [
"Apache-2.0"
] | 250 | 2017-12-21T15:19:30.000Z | 2022-03-30T05:55:24.000Z | Disruptor/SequenceGroups.h | ulricheck/Disruptor-cpp | fd2cef124f5bf2dbbe399137fd69e85844b90a6b | [
"Apache-2.0"
] | 14 | 2018-06-21T22:57:47.000Z | 2022-01-26T07:48:47.000Z | Disruptor/SequenceGroups.h | ulricheck/Disruptor-cpp | fd2cef124f5bf2dbbe399137fd69e85844b90a6b | [
"Apache-2.0"
] | 84 | 2018-01-06T13:55:54.000Z | 2022-01-20T07:15:55.000Z | #pragma once
#include <cstdint>
namespace Disruptor
{
class ICursored;
class ISequence;
/**
* Provides static methods for managing a SequenceGroup object
*/
class SequenceGroups
{
public:
static void addSequences(std::shared_ptr< std::vector< std::shared_ptr< ISequence > > >& sequences,
const ICursored& cursor,
const std::vector< std::shared_ptr< ISequence > >& sequencesToAdd);
static void addSequences(std::vector< std::shared_ptr< ISequence > >& sequences,
const ICursored& cursor,
const std::vector< std::shared_ptr< ISequence > >& sequencesToAdd);
static bool removeSequence(std::shared_ptr< std::vector< std::shared_ptr< ISequence > > >& sequences, const std::shared_ptr< ISequence >& sequence);
static bool removeSequence(std::vector< std::shared_ptr< ISequence > >& sequences, const std::shared_ptr< ISequence >& sequence);
private:
static std::int32_t countMatching(const std::vector< std::shared_ptr< ISequence > >& values, const std::shared_ptr< ISequence >& toMatch);
};
} // namespace Disruptor
| 36.264706 | 156 | 0.620438 |
86b0cd802e94561f5324f88f534f190603bcb684 | 618 | go | Go | rum/middleware.go | go-jarvis/rum-gonic | a882548e0c86f52eb4e8cb541088545cec146bf9 | [
"MIT"
] | null | null | null | rum/middleware.go | go-jarvis/rum-gonic | a882548e0c86f52eb4e8cb541088545cec146bf9 | [
"MIT"
] | 11 | 2021-12-09T07:34:06.000Z | 2021-12-16T23:59:53.000Z | rum/middleware.go | go-jarvis/rum-gonic | a882548e0c86f52eb4e8cb541088545cec146bf9 | [
"MIT"
] | null | null | null | package rum
import (
"github.com/gin-gonic/gin"
)
type MiddlewareOperator interface {
MiddlewareFunc() HandlerFunc
Operator
}
// 接口检查
var _ Operator = (*Middleware)(nil)
var _ MiddlewareOperator = (*Middleware)(nil)
type Middleware struct {
middwareFunc HandlerFunc
// Operator
}
type HandlerFunc = gin.HandlerFunc
func NewMiddleware(fn HandlerFunc) *Middleware {
return &Middleware{
middwareFunc: fn,
}
}
func (mid *Middleware) MiddlewareFunc() HandlerFunc {
// fmt.Println("注册中间件咯")
return mid.middwareFunc
}
func (mid *Middleware) Output(c *gin.Context) (interface{}, error) {
return nil, nil
}
| 16.702703 | 68 | 0.73301 |
5b442c997a69b45416bf9f4a7ec508924d9f2220 | 2,393 | ps1 | PowerShell | Tests/Out-HashString.Tests.ps1 | torgro/PoshARM | fee41938e41f6d4107b4628ce1cd94e8e59373e0 | [
"MIT"
] | 27 | 2017-01-16T21:05:42.000Z | 2020-07-06T22:10:18.000Z | Tests/Out-HashString.Tests.ps1 | torgro/PoshARM | fee41938e41f6d4107b4628ce1cd94e8e59373e0 | [
"MIT"
] | 1 | 2017-04-17T08:19:16.000Z | 2017-04-17T08:19:16.000Z | Tests/Out-HashString.Tests.ps1 | torgro/PoshARM | fee41938e41f6d4107b4628ce1cd94e8e59373e0 | [
"MIT"
] | 6 | 2017-04-05T17:54:14.000Z | 2021-05-12T17:41:49.000Z | #$here = Split-Path -Parent $MyInvocation.MyCommand.Path
#$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
#. "$here\$sut"
$modulePath = Split-Path $PSScriptRoot -Parent
$modulepath = Join-Path -Path $modulePath -ChildPath poshARM.psd1
Import-Module $modulePath
Describe "Out-HashString" {
Context "Without Pipeline" {
It "Should return an empty hashtable if input is not a hashtable" {
$expected = "@{}"
$actual = Out-HashString -InputObject "foo"
$actual | Should Be $Expected
}
It "Should convert a hashtabel to a string representation" {
$var = @{Test="keyValue"}
$Expected = '@{\r\n Test = "keyValue"\r\n}' -replace ([regex]::Escape("\r\n")), [environment]::NewLine
$actual = Out-HashString -InputObject $var
$actual | Should Be $Expected
}
It "Should handle nested hashtables" {
$var = @{Test="keyValue";Nested = @{Key1="Value1";Key2="Value2"}}
$Expected = '@{\r\n Test = "keyValue"\r\n Nested = @{\r\n Key1 = "Value1"\r\n Key2 = "Value2"\r\n }\r\n}' -replace ([regex]::Escape("\r\n")), [environment]::NewLine
$actual = Out-HashString -InputObject $var
$actual | Should Be $Expected
}
}
Context "With Pipeline" {
It "Should return an empty hashtable if input is not a hashtable" {
$expected = "@{}"
$actual = "foo" | Out-HashString
$actual | Should Be $Expected
}
It "Should convert a hashtabel to a string representation" {
$var = @{Test="keyValue"}
$Expected = '@{\r\n Test = "keyValue"\r\n}' -replace ([regex]::Escape("\r\n")), [environment]::NewLine
$actual = $var | Out-HashString
$actual | Should Be $Expected
}
It "Should handle nested hashtables" {
$var = @{Test="keyValue";Nested = @{Key1="Value1";Key2="Value2"}}
$Expected = '@{\r\n Test = "keyValue"\r\n Nested = @{\r\n Key1 = "Value1"\r\n Key2 = "Value2"\r\n }\r\n}' -replace ([regex]::Escape("\r\n")), [environment]::NewLine
$actual = $var | Out-HashString
$actual | Should Be $Expected
}
}
}
Remove-Module -name posharm -ErrorAction SilentlyContinue | 42.732143 | 199 | 0.554952 |
3e1ef6617c3b2b99aafde1c4c24c33f98786a663 | 708 | sql | SQL | src/schema/db_schema.sql | MiloLug/pckp-server | 756d48fc427ee7caa42688aa371ea0d72717786f | [
"BSD-2-Clause"
] | null | null | null | src/schema/db_schema.sql | MiloLug/pckp-server | 756d48fc427ee7caa42688aa371ea0d72717786f | [
"BSD-2-Clause"
] | null | null | null | src/schema/db_schema.sql | MiloLug/pckp-server | 756d48fc427ee7caa42688aa371ea0d72717786f | [
"BSD-2-Clause"
] | null | null | null | CREATE SCHEMA pckp;
CREATE TABLE pckp.package (
-- TODO: Add versions field (array of varchar)
package_id serial PRIMARY KEY,
package_name VARCHAR(255) UNIQUE NOT NULL,
package_desc VARCHAR(65535),
homepage VARCHAR(255),
added_at INT8 NOT NULL,
package_downloads INT4,
versions VARCHAR(255) []
);
CREATE TABLE pckp.author (
user_id serial PRIMARY KEY,
user_name VARCHAR(255) UNIQUE NOT NULL,
github_url VARCHAR(255),
verified BOOLEAN,
user_profile_img VARCHAR(255) -- Path to local fs that holds image
);
-- INSERT INTO pckp.package
-- VALUES (1, 'test', 'test', 'home', 1, 0, '{"0.1.0", "0.2.0"}');
-- SELECT * FROM pckp.package WHERE package_id = 1;
| 27.230769 | 70 | 0.680791 |
58c6d9d481d5bfd095cd958012af9f4fe169b319 | 13,382 | sql | SQL | poc (3).sql | ujjweldutt/ULB | 94e6fa9e532b55b3ce86bf41130ab44e4d70699c | [
"MIT"
] | null | null | null | poc (3).sql | ujjweldutt/ULB | 94e6fa9e532b55b3ce86bf41130ab44e4d70699c | [
"MIT"
] | null | null | null | poc (3).sql | ujjweldutt/ULB | 94e6fa9e532b55b3ce86bf41130ab44e4d70699c | [
"MIT"
] | null | null | null | -- phpMyAdmin SQL Dump
-- version 5.0.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 24, 2021 at 05:56 AM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.2.34
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `poc`
--
-- --------------------------------------------------------
--
-- Table structure for table `mst_component`
--
CREATE TABLE `mst_component` (
`id` int(11) NOT NULL,
`component` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_financial_year`
--
CREATE TABLE `mst_financial_year` (
`id` int(11) NOT NULL,
`start_year` varchar(55) NOT NULL,
`end_year` varchar(55) NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_items`
--
CREATE TABLE `mst_items` (
`id` int(11) NOT NULL,
`item_name` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_rate_type`
--
CREATE TABLE `mst_rate_type` (
`id` int(11) NOT NULL,
`rate_type` varchar(155) NOT NULL,
`rate` int(11) NOT NULL,
`premium_rate` int(11) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_role`
--
CREATE TABLE `mst_role` (
`id` int(11) NOT NULL,
`role` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_role_mapping`
--
CREATE TABLE `mst_role_mapping` (
`id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_scheme`
--
CREATE TABLE `mst_scheme` (
`id` int(11) NOT NULL,
`scheme` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_in` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_ulb`
--
CREATE TABLE `mst_ulb` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `mst_ward`
--
CREATE TABLE `mst_ward` (
`id` int(11) NOT NULL,
`ward_number` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `trans_budget`
--
CREATE TABLE `trans_budget` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`scheme_id` int(11) NOT NULL,
`component_id` int(11) NOT NULL,
`financial_year_id` int(11) NOT NULL,
`amount` decimal(18,2) NOT NULL,
`remarks` varchar(200) NOT NULL,
`uploaded_file` varchar(400) NOT NULL,
`is_active` enum('Y','N') NOT NULL DEFAULT 'Y',
`created_on` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_on` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `trans_budget_proposal`
--
CREATE TABLE `trans_budget_proposal` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`budget_id` int(11) NOT NULL,
`ulb_id` int(11) NOT NULL,
`amount_demanded` decimal(18,2) NOT NULL,
`allocation_type` varchar(100) NOT NULL,
`status` enum('1','2','3','4') NOT NULL,
`approved_by` int(11) NOT NULL,
`uploaded_file` varchar(400) NOT NULL,
`created_on` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_on` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `trans_wms`
--
CREATE TABLE `trans_wms` (
`id` int(11) NOT NULL,
`work_code_number` varchar(255) NOT NULL,
`user_id` int(11) NOT NULL,
`ulb_id` int(11) NOT NULL,
`ward_id` int(11) NOT NULL,
`scheme_id` int(11) NOT NULL,
`component_id` int(11) NOT NULL,
`financial_year_id` int(11) NOT NULL,
`work_name` varchar(255) NOT NULL,
`work_type` varchar(255) NOT NULL,
`work_sub_type` varchar(255) NOT NULL,
`work_scope` varchar(255) NOT NULL,
`announcement_type` varchar(255) NOT NULL,
`announcement_no` varchar(255) NOT NULL,
`announcement_date` datetime NOT NULL,
`site_plan_file` varchar(255) NOT NULL,
`cross_section_file` varchar(255) NOT NULL,
`l_section_file` varchar(255) NOT NULL,
`google_map_file` varchar(255) NOT NULL,
`city_map_file` varchar(255) NOT NULL,
`is_active` enum('Y','N') NOT NULL,
`is_revised` enum('Y','N') NOT NULL,
`remarks` varchar(255) NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `trans_wms_approval_level`
--
CREATE TABLE `trans_wms_approval_level` (
`id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`wms_id` int(11) NOT NULL,
`remarks` varchar(255) NOT NULL,
`status` enum('0','1','2','3') NOT NULL,
`created_on` datetime NOT NULL,
`updated_on` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- --------------------------------------------------------
--
-- Table structure for table `trans_wms_work_items`
--
CREATE TABLE `trans_wms_work_items` (
`id` int(11) NOT NULL,
`wms_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
`description` varchar(200) DEFAULT NULL,
`remarks` varchar(200) DEFAULT NULL,
`number1` decimal(18,2) DEFAULT NULL,
`number2` decimal(18,2) DEFAULT NULL,
`number3` decimal(18,2) DEFAULT NULL,
`length` decimal(18,2) NOT NULL,
`breadth` decimal(18,2) NOT NULL,
`height` decimal(18,2) NOT NULL,
`unit` varchar(100) NOT NULL,
`quantity` int(11) NOT NULL,
`rate_type_id` int(11) NOT NULL,
`total_rate` decimal(18,2) NOT NULL,
`total_amount` decimal(18,2) NOT NULL,
`status` enum('1','2','3','4') NOT NULL,
`created_on` timestamp NOT NULL DEFAULT current_timestamp(),
`updated_on` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `mst_component`
--
ALTER TABLE `mst_component`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_financial_year`
--
ALTER TABLE `mst_financial_year`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_items`
--
ALTER TABLE `mst_items`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_rate_type`
--
ALTER TABLE `mst_rate_type`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_role`
--
ALTER TABLE `mst_role`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_role_mapping`
--
ALTER TABLE `mst_role_mapping`
ADD PRIMARY KEY (`id`),
ADD KEY `role_id` (`role_id`);
--
-- Indexes for table `mst_scheme`
--
ALTER TABLE `mst_scheme`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_ulb`
--
ALTER TABLE `mst_ulb`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `mst_ward`
--
ALTER TABLE `mst_ward`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `trans_budget`
--
ALTER TABLE `trans_budget`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `trans_budget_proposal`
--
ALTER TABLE `trans_budget_proposal`
ADD PRIMARY KEY (`id`),
ADD KEY `budget_id` (`budget_id`);
--
-- Indexes for table `trans_wms`
--
ALTER TABLE `trans_wms`
ADD PRIMARY KEY (`id`),
ADD KEY `tbl_wms_ibfk_1` (`ulb_id`),
ADD KEY `scheme_id` (`scheme_id`),
ADD KEY `component_id` (`component_id`),
ADD KEY `financial_year_id` (`financial_year_id`),
ADD KEY `ward_id` (`ward_id`);
--
-- Indexes for table `trans_wms_approval_level`
--
ALTER TABLE `trans_wms_approval_level`
ADD PRIMARY KEY (`id`),
ADD KEY `role_id` (`role_id`),
ADD KEY `tbl_wms_approval_level_ibfk_2` (`wms_id`);
--
-- Indexes for table `trans_wms_work_items`
--
ALTER TABLE `trans_wms_work_items`
ADD PRIMARY KEY (`id`),
ADD KEY `wms_id` (`wms_id`),
ADD KEY `rate_type_id` (`rate_type_id`),
ADD KEY `item_id` (`item_id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `mst_component`
--
ALTER TABLE `mst_component`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_financial_year`
--
ALTER TABLE `mst_financial_year`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_items`
--
ALTER TABLE `mst_items`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_rate_type`
--
ALTER TABLE `mst_rate_type`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_role`
--
ALTER TABLE `mst_role`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_role_mapping`
--
ALTER TABLE `mst_role_mapping`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_scheme`
--
ALTER TABLE `mst_scheme`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_ulb`
--
ALTER TABLE `mst_ulb`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `mst_ward`
--
ALTER TABLE `mst_ward`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `trans_budget`
--
ALTER TABLE `trans_budget`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `trans_budget_proposal`
--
ALTER TABLE `trans_budget_proposal`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `trans_wms`
--
ALTER TABLE `trans_wms`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `trans_wms_approval_level`
--
ALTER TABLE `trans_wms_approval_level`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `trans_wms_work_items`
--
ALTER TABLE `trans_wms_work_items`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `mst_role_mapping`
--
ALTER TABLE `mst_role_mapping`
ADD CONSTRAINT `mst_role_mapping_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `mst_role` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `trans_budget_proposal`
--
ALTER TABLE `trans_budget_proposal`
ADD CONSTRAINT `trans_budget_proposal_ibfk_1` FOREIGN KEY (`budget_id`) REFERENCES `trans_budget` (`id`);
--
-- Constraints for table `trans_wms`
--
ALTER TABLE `trans_wms`
ADD CONSTRAINT `trans_wms_ibfk_1` FOREIGN KEY (`ulb_id`) REFERENCES `mst_ulb` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `trans_wms_ibfk_2` FOREIGN KEY (`scheme_id`) REFERENCES `mst_scheme` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `trans_wms_ibfk_3` FOREIGN KEY (`component_id`) REFERENCES `mst_component` (`id`),
ADD CONSTRAINT `trans_wms_ibfk_4` FOREIGN KEY (`financial_year_id`) REFERENCES `mst_financial_year` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `trans_wms_ibfk_5` FOREIGN KEY (`ward_id`) REFERENCES `mst_ward` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `trans_wms_approval_level`
--
ALTER TABLE `trans_wms_approval_level`
ADD CONSTRAINT `trans_wms_approval_level_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `mst_role` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `trans_wms_approval_level_ibfk_2` FOREIGN KEY (`wms_id`) REFERENCES `trans_wms` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `trans_wms_work_items`
--
ALTER TABLE `trans_wms_work_items`
ADD CONSTRAINT `trans_wms_work_items_ibfk_1` FOREIGN KEY (`wms_id`) REFERENCES `trans_wms` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `trans_wms_work_items_ibfk_2` FOREIGN KEY (`rate_type_id`) REFERENCES `mst_rate_type` (`id`),
ADD CONSTRAINT `trans_wms_work_items_ibfk_3` FOREIGN KEY (`item_id`) REFERENCES `mst_items` (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 26.604374 | 145 | 0.667314 |
c6db2f3a52fc25f5884967a41877f76c99e75253 | 3,536 | kt | Kotlin | app/src/main/java/com/movsoft/aptracker/services/TrackingServices.kt | 40z/AP-Tracker---Android | 79f240603614ce60c223d7032dc889f698933b01 | [
"MIT"
] | null | null | null | app/src/main/java/com/movsoft/aptracker/services/TrackingServices.kt | 40z/AP-Tracker---Android | 79f240603614ce60c223d7032dc889f698933b01 | [
"MIT"
] | 7 | 2019-04-04T18:55:01.000Z | 2019-10-23T11:57:34.000Z | app/src/main/java/com/movsoft/aptracker/services/TrackingServices.kt | 40z/AP-Tracker---Android | 79f240603614ce60c223d7032dc889f698933b01 | [
"MIT"
] | null | null | null | package com.movsoft.aptracker.services
import android.content.Context
import com.android.volley.Request
import com.android.volley.Response
import com.android.volley.toolbox.StringRequest
import com.android.volley.toolbox.Volley
import com.google.gson.GsonBuilder
import com.movsoft.aptracker.models.TrackItemResult
import com.movsoft.aptracker.models.TrackedItem
import org.json.JSONObject
typealias TrackItemCompletion = (result: Result<TrackItemResult>) -> Unit
/**
* Services that provide tracking functionality.
*/
interface TrackingServices {
fun track(item: TrackedItem, completion: TrackItemCompletion)
fun trackAverage(item: TrackedItem, completion: TrackItemCompletion)
}
/**
* Implementation of TrackingServices that does nothing.
*/
class DummyTrackingServices: TrackingServices {
override fun track(item: TrackedItem, completion: TrackItemCompletion) {
completion(Result.success(TrackItemResult(TrackItemResult.Status.STARTED)))
}
override fun trackAverage(item: TrackedItem, completion: TrackItemCompletion) {
completion(Result.success(TrackItemResult(TrackItemResult.Status.STARTED)))
}
}
/**
* Implementation of TrackingServices that tracks items with RafiBot.
*/
class RafiTrackingServices(context: Context, private val settingsServices: SettingsServices): TrackingServices {
private val queue = Volley.newRequestQueue(context)
override fun track(item: TrackedItem, completion: TrackItemCompletion) {
val settings = settingsServices.getSettings()
val trackingChannel = item.settings.trackingChannel ?: settings.trackingChannel
val trackingMode = item.settings.trackingMode.value
val path = "/hubot/aptracker/$trackingChannel"
val jsonBody = JSONObject()
jsonBody.put("user", settings.userName)
jsonBody.put("trackeditem", item.name)
jsonBody.put("action", trackingMode)
makeRequest(path, jsonBody, TrackItemResult::class.java, completion)
}
override fun trackAverage(item: TrackedItem, completion: TrackItemCompletion) {
val settings = settingsServices.getSettings()
val trackingChannel = item.settings.trackingChannel ?: settings.trackingChannel
val path = "/hubot/aptracker/$trackingChannel"
val jsonBody = JSONObject()
jsonBody.put("user", settings.userName)
jsonBody.put("trackeditem", item.name)
jsonBody.put("action", "AVERAGE")
makeRequest(path, jsonBody, TrackItemResult::class.java, completion)
}
private fun <T> makeRequest(path: String, postBody: JSONObject, resultClass: Class<T>, completion: (result: Result<T>) -> Unit) {
val settings = settingsServices.getSettings()
if (!settings.isValid()) {
val error = Error("Settings not valid")
completion(Result.failure(error))
return
}
val url = "${settings.server}${path}"
val request = object : StringRequest(Request.Method.POST, url, Response.Listener<String> {
val result = GsonBuilder().create().fromJson(it, resultClass)
completion(Result.success(result))
}, Response.ErrorListener {
completion(Result.failure(it))
}) {
override fun getBodyContentType(): String {
return "application/json"
}
override fun getBody(): ByteArray {
return postBody.toString().toByteArray(Charsets.UTF_8)
}
}
queue.add(request)
}
} | 37.617021 | 133 | 0.700792 |
e86917efefe93dfef720fb43d5d17e8bff656248 | 1,693 | cpp | C++ | src/shared/error_reflector.cpp | Licmeth/pixiple | 1871124ef2d9d2384cb384095f14d71c5664f62b | [
"MIT"
] | 50 | 2019-01-24T16:23:05.000Z | 2021-12-29T17:38:07.000Z | src/shared/error_reflector.cpp | Licmeth/pixiple | 1871124ef2d9d2384cb384095f14d71c5664f62b | [
"MIT"
] | 5 | 2016-12-26T16:54:38.000Z | 2018-09-28T23:59:26.000Z | src/shared/error_reflector.cpp | Licmeth/pixiple | 1871124ef2d9d2384cb384095f14d71c5664f62b | [
"MIT"
] | 13 | 2019-08-03T07:41:02.000Z | 2022-03-10T05:59:40.000Z | #include "error_reflector.h"
#define LOGGING
#include "debug_log.h"
#include <mutex>
#include <sstream>
#include <comdef.h>
#ifdef DIRECTX
#include <dxerr.h>
#pragma comment(lib, "dxerr")
#endif
std::atomic<bool> ErrorReflector::good = true;
#if _DEBUG
std::atomic<bool> ErrorReflector::quiesced = false;
#endif
#include <iomanip>
void die(const long line, const char* const filename, HRESULT hresult) {
if (SUCCEEDED(hresult))
hresult = HRESULT_FROM_WIN32(GetLastError());
std::wostringstream oss;
wchar_t name[MAX_PATH];
auto r = GetModuleFileName(nullptr, name, sizeof name / sizeof name[0]);
if (r != 0)
name[sizeof name / sizeof name[0] - 1] = L'\0';
else
name[0] = '\0';
if (line != 0 && filename != nullptr) {
if (name[0])
oss << name << L" exiting due to error ";
else
oss << L"Error ";
oss << std::hex << L"0x" << std::setw(8) << std::setfill(L'0') << hresult << std::dec;
oss << L" in " << filename << L" on line " << line;
} else {
if (name[0])
oss << name << L" exiting due to unknown error";
else
oss << L"Unknown error";
}
if (FAILED(hresult)) {
_com_error error{hresult};
if (error.ErrorMessage())
oss << L": " << error.ErrorMessage();
}
#ifdef DIRECTX
std::wstring dxerr(DXGetErrorDescription(hr));
if (dxerr != L"n/a")
oss << L"\n\nDirectX error: " << dxerr;
#endif
#ifdef _DEBUG
debug_log << oss.str() << std::endl;
__debugbreak();
#else
static std::mutex mutex;
std::lock_guard<std::mutex> lg{mutex};
MessageBox(nullptr, oss.str().c_str(), nullptr, MB_OK | MB_ICONERROR | MB_SYSTEMMODAL);
_exit(EXIT_FAILURE);
#endif
}
| 23.513889 | 90 | 0.614885 |
0a70fe25c54980fbebf17899683508c3e57a193b | 1,583 | swift | Swift | SCWeiboAssistant/SCWeiboAssistant/AppDelegate.swift | rayray199085/SCWeiboAssistant | d1f8b9c49fba9cd1c885619a44f276a2eec43b71 | [
"MIT"
] | null | null | null | SCWeiboAssistant/SCWeiboAssistant/AppDelegate.swift | rayray199085/SCWeiboAssistant | d1f8b9c49fba9cd1c885619a44f276a2eec43b71 | [
"MIT"
] | null | null | null | SCWeiboAssistant/SCWeiboAssistant/AppDelegate.swift | rayray199085/SCWeiboAssistant | d1f8b9c49fba9cd1c885619a44f276a2eec43b71 | [
"MIT"
] | null | null | null | //
// AppDelegate.swift
// SCWeiboAssistant
//
// Created by Stephen Cao on 15/4/19.
// Copyright © 2019 Stephen Cao. All rights reserved.
//
import UIKit
import SVProgressHUD
import AlamofireNetworkActivityIndicator
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
setupBasicSettings()
requestAuthorization(application: application)
window = UIWindow.initWindow(controllerName: "SCMainViewController")
window?.backgroundColor = UIColor.white
loadAppInfo()
return true
}
}
private extension AppDelegate{
func loadAppInfo(){
DispatchQueue.global().async {
guard let path = Bundle.main.path(forResource: "main.json", ofType: nil),
let data = try? Data(contentsOf: URL(fileURLWithPath: path)) else{
return
}
try? data.write(to: URL(fileURLWithPath: NSString.getDocumentDirectory().appendingPathComponent("main.json")))
}
}
}
private extension AppDelegate{
func setupBasicSettings(){
SVProgressHUD.setMinimumDismissTimeInterval(1.0)
NetworkActivityIndicatorManager.shared.isEnabled = true
}
func requestAuthorization(application: UIApplication){
application.requestAuthorization { (isSuccess) in
print("Request authorization \(isSuccess ? "successfully" : "failed")")
}
}
}
| 32.979167 | 145 | 0.688566 |
4a65606d1c425dfe2ba8bae86af81abe6a0d3f12 | 508 | html | HTML | src/app/rodape/rodape.component.html | Gkreischer/SiMostra | 4db1bd70fc954144a788d0614d567d774687747b | [
"MIT"
] | null | null | null | src/app/rodape/rodape.component.html | Gkreischer/SiMostra | 4db1bd70fc954144a788d0614d567d774687747b | [
"MIT"
] | null | null | null | src/app/rodape/rodape.component.html | Gkreischer/SiMostra | 4db1bd70fc954144a788d0614d567d774687747b | [
"MIT"
] | null | null | null | <footer class="container-fluid bg-dark py-5">
<div *ngIf="localizacaoEmpresa" class="col-12 col-md-12">
<p class="text-center text-white">{{localizacaoEmpresa.nomeFantasia}} - CNPJ: {{localizacaoEmpresa.cnpj}}</p>
<p class="text-center text-white">{{localizacaoEmpresa.endereco}} - {{localizacaoEmpresa.cidade}}</p>
<p class="text-center text-white">Telefone: {{localizacaoEmpresa.telefone}}</p>
<p class="m-0 text-center text-white">Copyright © Sua Empresa 2018</p>
</div>
</footer> | 63.5 | 113 | 0.704724 |
fb67a4b6ab540520d8692530d6c18a600f490498 | 4,446 | h | C | automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-scene-holder-impl.h | dalihub/dali-toolk | 980728a7e35b8ddd28f70c090243e8076e21536e | [
"Apache-2.0",
"BSD-3-Clause"
] | 7 | 2016-11-18T10:26:51.000Z | 2021-01-28T13:51:59.000Z | automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-scene-holder-impl.h | dalihub/dali-toolk | 980728a7e35b8ddd28f70c090243e8076e21536e | [
"Apache-2.0",
"BSD-3-Clause"
] | 13 | 2020-07-15T11:33:03.000Z | 2021-04-09T21:29:23.000Z | automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-scene-holder-impl.h | dalihub/dali-toolk | 980728a7e35b8ddd28f70c090243e8076e21536e | [
"Apache-2.0",
"BSD-3-Clause"
] | 10 | 2019-05-17T07:15:09.000Z | 2021-05-24T07:28:08.000Z | #ifndef DALI_TOOLKIT_SCENE_HOLDER_IMPL_H
#define DALI_TOOLKIT_SCENE_HOLDER_IMPL_H
/*
* Copyright (c) 2021 Samsung Electronics Co., Ltd.
*
* 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.
*
*/
#include <dali/integration-api/adaptor-framework/render-surface-interface.h>
#include <dali/integration-api/scene.h>
#include <dali/public-api/actors/layer.h>
#include <dali/public-api/object/base-object.h>
namespace Dali
{
class TestRenderSurface : public Dali::RenderSurfaceInterface
{
public:
TestRenderSurface( PositionSize positionSize ) : mPositionSize(positionSize) {};
PositionSize GetPositionSize() const override { return mPositionSize; };
virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) { dpiHorizontal = dpiVertical = 96; }
void InitializeGraphics() override {};
void CreateSurface() override {};
void DestroySurface() override {};
bool ReplaceGraphicsSurface() override { return false; };
void MoveResize( Dali::PositionSize positionSize ) override { mPositionSize = positionSize; };
void StartRender() override {};
bool PreRender( bool resizingSurface, const std::vector<Rect<int>>& damagedRects, Rect<int>& clippingRect ) override { return false; };
void PostRender()
{
}
//void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface, const std::vector<Rect<int>>& damagedRects ) override {};
void StopRender() override {};
void ReleaseLock() override {};
void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override {};
RenderSurfaceInterface::Type GetSurfaceType() override { return RenderSurfaceInterface::WINDOW_RENDER_SURFACE; };
void MakeContextCurrent() override {};
Integration::DepthBufferAvailable GetDepthBufferRequired() override { return Integration::DepthBufferAvailable::FALSE; };
Integration::StencilBufferAvailable GetStencilBufferRequired() override { return Integration::StencilBufferAvailable::FALSE; };
int GetOrientation() const override {return 0;};
void SetBackgroundColor( Vector4 color ) {};
Vector4 GetBackgroundColor() { return Color::WHITE; };
private:
PositionSize mPositionSize;
};
namespace Internal
{
namespace Adaptor
{
class SceneHolder : public Dali::BaseObject
{
public:
SceneHolder( const Dali::Rect<int>& positionSize );
virtual ~SceneHolder();
void Add( Dali::Actor actor );
void Remove( Dali::Actor actor );
Dali::Layer GetRootLayer() const;
void SetBackgroundColor( Vector4 color );
Vector4 GetBackgroundColor() const;
void FeedTouchPoint( Dali::TouchPoint& point, int timeStamp );
void FeedWheelEvent( Dali::WheelEvent& wheelEvent );
void FeedKeyEvent( Dali::KeyEvent& keyEvent );
Dali::Integration::SceneHolder::KeyEventSignalType& KeyEventSignal();
Dali::Integration::SceneHolder::KeyEventGeneratedSignalType& KeyEventGeneratedSignal();
Dali::Integration::SceneHolder::TouchEventSignalType& TouchedSignal();
Dali::Integration::SceneHolder::WheelEventSignalType& WheelEventSignal();
Integration::Scene GetScene();
Dali::RenderSurfaceInterface& GetRenderSurface();
protected:
TestRenderSurface mRenderSurface;
Integration::Scene mScene;
};
} // namespace Adaptor
} // namespace Internal
inline Internal::Adaptor::SceneHolder& GetImplementation( Dali::Integration::SceneHolder& sceneHolder )
{
DALI_ASSERT_ALWAYS( sceneHolder && "SceneHolder handle is empty" );
BaseObject& object = sceneHolder.GetBaseObject();
return static_cast<Internal::Adaptor::SceneHolder&>( object );
}
inline const Internal::Adaptor::SceneHolder& GetImplementation( const Dali::Integration::SceneHolder& sceneHolder )
{
DALI_ASSERT_ALWAYS( sceneHolder && "SceneHolder handle is empty" );
const BaseObject& object = sceneHolder.GetBaseObject();
return static_cast<const Internal::Adaptor::SceneHolder&>( object );
}
} // namespace Dali
#endif // DALI_TOOLKIT_SCENE_HOLDER_IMPL_H
| 29.058824 | 141 | 0.760459 |
b1133e04f6f0dfabee0a97b02d9d5f6061791c90 | 1,603 | kt | Kotlin | featureCore/src/commonMain/kotlin/com/fieldontrack/kmm/feature/core/Repository.kt | shiSHARK/D-KMP-sample | fdc3e7d8efa82d6ad0be65427a5f8afe7d1ea761 | [
"Apache-2.0"
] | 1 | 2021-11-26T09:34:38.000Z | 2021-11-26T09:34:38.000Z | featureCore/src/commonMain/kotlin/com/fieldontrack/kmm/feature/core/Repository.kt | shiSHARK/D-KMP-sample | fdc3e7d8efa82d6ad0be65427a5f8afe7d1ea761 | [
"Apache-2.0"
] | null | null | null | featureCore/src/commonMain/kotlin/com/fieldontrack/kmm/feature/core/Repository.kt | shiSHARK/D-KMP-sample | fdc3e7d8efa82d6ad0be65427a5f8afe7d1ea761 | [
"Apache-2.0"
] | null | null | null | package com.fieldontrack.kmm.feature.core
import com.fieldontrack.kmm.common.DataBase
import com.fieldontrack.kmm.common.NetworkClient
import com.fieldontrack.kmm.common.UserSettings
import com.fieldontrack.kmm.entities.countries.CountryExtraData
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import kotlin.native.concurrent.ThreadLocal
class Repository(
val localDb: DataBase,
val localSettings: UserSettings,
val webservices: NetworkClient,
val useDefaultDispatcher: Boolean = true
) {
// internal val webservices by lazy { ApiClient() }
// internal val localDb by lazy { LocalDb(sqlDriver) }
// internal val localSettings by lazy { MySettings(settings) }
val runtimeCache: MemoryCache get() = CacheObjects
// we run each repository function on a Dispatchers.Default coroutine
// we pass useDefaultDispatcher=false just for the TestRepository instance
suspend fun <T> withRepoContext(block: suspend () -> T): T {
return if (useDefaultDispatcher) {
withContext(Dispatchers.Default) {
block()
}
} else {
block()
}
}
}
@ThreadLocal
private object CacheObjects : MemoryCache {
// here is the repository data we decide to just cache temporarily (for the runtime session),
// rather than caching it permanently in the local db or local settings
override val countryExtraData: MutableMap<String, CountryExtraData> by lazy { mutableMapOf() }
}
interface MemoryCache {
val countryExtraData: MutableMap<String, CountryExtraData>
} | 32.714286 | 98 | 0.72801 |
5beacc430a0f40542af0ba5dcaca1c8cd2d3d82d | 1,605 | swift | Swift | CustomTransitions/CustomAnimators/BaseAnimator.swift | dkalaitzidis/UIViewControllerAnimatedTransitioning | 0decc9990c409660bd66e1d2e4034c76bb80b3ea | [
"MIT"
] | null | null | null | CustomTransitions/CustomAnimators/BaseAnimator.swift | dkalaitzidis/UIViewControllerAnimatedTransitioning | 0decc9990c409660bd66e1d2e4034c76bb80b3ea | [
"MIT"
] | null | null | null | CustomTransitions/CustomAnimators/BaseAnimator.swift | dkalaitzidis/UIViewControllerAnimatedTransitioning | 0decc9990c409660bd66e1d2e4034c76bb80b3ea | [
"MIT"
] | null | null | null | //
// BaseAnimator.swift
// CustomTransitions
//
// Created by Dimitrios Kalaitzidis on 26/06/2018.
// Copyright © 2018 Dimitrios Kalaitzidis. All rights reserved.
//
import UIKit
class BaseAnimator: NSObject, UIViewControllerAnimatedTransitioning {
var direction: CustomPresentationDirection?
var duration: TimeInterval?
var interactionController: UIPercentDrivenInteractiveTransition?
public init(with direction: CustomPresentationDirection? = nil,
duration:TimeInterval? = 0.8,
interactionController: UIPercentDrivenInteractiveTransition? = nil){
self.direction = direction
self.duration = duration
self.interactionController = interactionController
super.init()
}
func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
return self.duration ?? 0.8
}
func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {
let to = transitionContext.viewController(forKey: .to)!
let final = transitionContext.finalFrame(for: to)
let container = transitionContext.containerView
to.view.frame = direction!.offsetWithFrame(viewFrame: final)
container.addSubview(to.view)
UIView.animate(withDuration: transitionDuration(using: transitionContext),
animations: {
to.view.frame = final
}) { (finished) in
transitionContext.completeTransition(true)
}
}
}
| 33.4375 | 109 | 0.67352 |
946abfb6b3241cdb49e98aa9c6dfb46298a5d16e | 10,322 | sql | SQL | db-sql-server.sql | muiz6/school-management-system | b9771565385578aa555019b174cbe334c17746ba | [
"MIT"
] | null | null | null | db-sql-server.sql | muiz6/school-management-system | b9771565385578aa555019b174cbe334c17746ba | [
"MIT"
] | null | null | null | db-sql-server.sql | muiz6/school-management-system | b9771565385578aa555019b174cbe334c17746ba | [
"MIT"
] | null | null | null | --Create database
CREATE DATABASE school_system;
USE school_system;
CREATE TABLE auth_roles(
id VARCHAR(10) PRIMARY KEY
);
--Create user entity
CREATE TABLE users(
user_name VARCHAR(15) PRIMARY KEY,
password VARCHAR(15) NOT NULL,
user_role VARCHAR(10) FOREIGN KEY REFERENCES auth_roles(id),
display_name NVARCHAR(25) NOT NULL,
dob DATE NOT NULL,
gender VARCHAR(10) NOT NULL,
cnic CHAR(13) NOT NULL,
mobile_no CHAR(12) NOT NULL,
emergency_contact CHAR(12) NOT NULL,
qualification NVARCHAR(25),
registration_date DATE NOT NULL DEFAULT GETDATE(),
active BIT NOT NULL DEFAULT 1
);
ALTER TABLE users ADD CONSTRAINT chk_gender CHECK (gender IN ('male', 'female'));
-- Create session entity
CREATE TABLE session_table(
code VARCHAR(5) PRIMARY KEY,
title VARCHAR(MAX) NOT NULL,
start_date DATE UNIQUE NOT NULL,
end_date DATE
);
CREATE TABLE departments(
code VARCHAR(5) PRIMARY KEY,
title VARCHAR(MAX) NOT NULL,
active BIT NOT NULL DEFAULT 1
);
CREATE TABLE classes(
session_code VARCHAR(5) FOREIGN KEY REFERENCES session_table(code),
department_code VARCHAR(5) FOREIGN KEY REFERENCES departments(code),
code VARCHAR(5) NOT NULL,
active BIT DEFAULT 1,
PRIMARY KEY(session_code, department_code, code)
);
-- Create student entity
CREATE TABLE students(
session_code VARCHAR(5) FOREIGN KEY REFERENCES session_table(code),
department_code VARCHAR(5) FOREIGN KEY REFERENCES departments(code),
roll_no INT NOT NULL,
name VARCHAR(25) NOT NULL,
father_name NVARCHAR(25) NOT NULL,
cnic VARCHAR(13),
mobile_no CHAR(12) NOT NULL,
emergency_contact CHAR(12) NOT NULL,
dob DATE NOT NULL,
address VARCHAR(MAX) NOT NULL,
gender VARCHAR(10) NOT NULL,
registeration_date DATE NOT NULL DEFAULT GETDATE(),
active BIT NOT NULL DEFAULT 1,
PRIMARY KEY (session_code, department_code, roll_no)
);
CREATE TABLE class_register(
department_code VARCHAR(5) FOREIGN KEY REFERENCES departments(code),
session_code VARCHAR(5) FOREIGN KEY REFERENCES session_table(code),
class_code VARCHAR(5) NOT NULL,
student_roll_no INT NOT NULL,
PRIMARY KEY(department_code, session_code, class_code, student_roll_no)
);
CREATE TABLE audit_student(
log_date DATE NOT NULL
);
CREATE TABLE audit_user(
log_date DATE NOT NULL
);
-- stored procedures
CREATE PROCEDURE sp_get_user
@user_name VARCHAR(15),
@password VARCHAR(15)
AS
BEGIN
SELECT * FROM users WHERE user_name=@user_name AND password=@password;
END;
CREATE PROCEDURE sp_get_user_by_user_name
@user_name VARCHAR(15)
AS
BEGIN
SELECT * FROM users WHERE user_name=@user_name;
END;
CREATE PROCEDURE sp_post_user
@user_name VARCHAR(15),
@password VARCHAR(15),
@auth_role VARCHAR(10),
@display_name VARCHAR(25),
@dob DATE,
@gender VARCHAR(10),
@cnic CHAR(13),
@mobile_no CHAR(12),
@emergency_contact CHAR(12),
@qualification NVARCHAR(25),
@address VARCHAR(100)
AS
BEGIN
INSERT INTO users(
user_name,
password,
user_role,
display_name,
dob,
gender,
cnic,
mobile_no,
emergency_contact,
qualification,
address)
VALUES(
@user_name,
@password,
@auth_role,
@display_name,
@dob,
@gender,
@cnic,
@mobile_no,
@emergency_contact,
@qualification,
@address)
END;
CREATE PROCEDURE sp_patch_user
@user_name VARCHAR(15),
@password VARCHAR(15) = NULL,
@display_name VARCHAR(25) = NULL,
@dob DATE = NULL,
@gender VARCHAR(10) = NULL,
@cnic CHAR(13) = NULL,
@mobile_no CHAR(12) = NULL,
@emergency_contact CHAR(12) = NULL,
@qualification NVARCHAR(25) = NULL,
@address VARCHAR(100) = NULL,
@active BIT = NULL
AS
BEGIN
IF (@password IS NOT NULL)
BEGIN
UPDATE users
SET password=@password
WHERE user_name=@user_name
END
IF (@display_name IS NOT NULL)
BEGIN
UPDATE users
SET display_name=@display_name
WHERE user_name=@user_name
END
IF (@dob IS NOT NULL)
BEGIN
UPDATE users
SET dob=@dob
WHERE user_name=@user_name
END
IF (@gender IS NOT NULL)
BEGIN
UPDATE users
SET gender=@gender
WHERE user_name=@user_name
END
IF (@cnic IS NOT NULL)
BEGIN
UPDATE users
SET cnic=@cnic
WHERE user_name=@user_name
END
IF (@mobile_no IS NOT NULL)
BEGIN
UPDATE users
SET mobile_no=@mobile_no
WHERE user_name=@user_name
END
IF (@emergency_contact IS NOT NULL)
BEGIN
UPDATE users
SET emergency_contact=@emergency_contact
WHERE user_name=@user_name
END
IF (@qualification IS NOT NULL)
BEGIN
UPDATE users
SET qualification=@qualification
WHERE user_name=@user_name
END
IF (@address IS NOT NULL)
BEGIN
UPDATE users
SET address=@address
WHERE user_name=@user_name
END
IF (@active IS NOT NULL)
BEGIN
UPDATE users
SET active=@active
WHERE user_name=@user_name
END
END;
CREATE PROCEDURE sp_get_teachers
AS
BEGIN
SELECT * FROM users
WHERE user_role = 'teacher' AND active=1;
END;
CREATE PROCEDURE sp_get_teachers_by_search
@query VARCHAR(20)
AS
BEGIN
SELECT * FROM users
WHERE user_role = 'teacher'
AND active = 1
AND display_name LIKE CONCAT('%', @query, '%')
OR user_name LIKE CONCAT('%', @query, '%')
END;
CREATE PROCEDURE sp_get_sessions
AS
BEGIN
SELECT * FROM session_table ORDER BY start_date DESC
END;
CREATE PROCEDURE sp_post_session
@code VARCHAR(5),
@title VARCHAR(MAX),
@start_date DATE,
@end_date DATE
AS
BEGIN
INSERT INTO session_table
VALUES
(@code, @title, @start_date, @end_date)
END;
CREATE PROCEDURE sp_get_sessions_by_search
@query VARCHAR(MAX)
AS
BEGIN
SELECT * FROM session_table
WHERE title LIKE CONCAT('%', @query, '%')
OR code LIKE CONCAT('%', @query, '%')
END;
CREATE PROCEDURE sp_patch_session
@session_code VARCHAR(5),
@session_title VARCHAR(MAX),
@start_date DATE,
@end_date DATE
AS
BEGIN
UPDATE session_table
SET title = @session_title,
start_date = @start_date,
end_date = @end_date
WHERE code = @session_code
END;
ALTER PROCEDURE sp_get_departments
AS
BEGIN
SELECT * FROM departments WHERE active=1
END;
CREATE PROCEDURE sp_post_department
@code VARCHAR(5),
@title VARCHAR(MAX)
AS
BEGIN
INSERT INTO departments(
code,
title)
VALUES(
@code,
@title);
END;
CREATE PROCEDURE sp_patch_department
@department_code VARCHAR(5),
@title VARCHAR(MAX),
@active BIT = true
AS
BEGIN
UPDATE departments
SET title = @title,
active = @active
WHERE code = @department_code
END;
CREATE PROCEDURE sp_get_classes_by_department_session
@department_code VARCHAR(5),
@session_code VARCHAR(5)
AS
BEGIN
SELECT * FROM classes
WHERE department_code=@department_code
AND session_code=@session_code
AND active=1
END;
CREATE PROCEDURE sp_post_class
@code VARCHAR(5),
@department_code VARCHAR(5),
@session_code VARCHAR(5)
AS
BEGIN
INSERT INTO classes(
code,
department_code,
session_code)
VALUES(
@code,
@department_code,
@session_code)
END;
CREATE PROCEDURE sp_patch_class
@code VARCHAR(5),
@department_code VARCHAR(5),
@session_code VARCHAR(5),
@active BIT
AS
BEGIN
UPDATE classes
SET active = @active
WHERE code = @code
AND department_code = @department_code
AND session_code = @session_code
END;
CREATE PROCEDURE sp_get_students
AS
BEGIN
SELECT * FROM students WHERE active=1 ORDER BY registration_date DESC
END;
CREATE PROCEDURE sp_get_students_by_search
@query_name VARCHAR(25)
AS
BEGIN
SELECT * FROM students
WHERE name LIKE CONCAT('%', @query_name, '%')
END;
CREATE PROCEDURE sp_post_student
@department_code VARCHAR(5),
@session_code VARCHAR(5),
@name VARCHAR(25),
@father_name VARCHAR(25),
@cnic VARCHAR(13),
@mobile_no VARCHAR(12),
@emergency_contact VARCHAR(12),
@dob DATE,
@address VARCHAR(MAX),
@gender VARCHAR(10)
AS
BEGIN
DECLARE @roll_no INT
EXEC sp_student_roll_no_new @department_code, @session_code, @roll_no OUTPUT
INSERT INTO students
(department_code,
session_code,
roll_no,
name,
father_name,
cnic,
mobile_no,
emergency_contact,
dob,
address,
gender)
VALUES(
@department_code,
@session_code,
@roll_no,
@name,
@father_name,
@cnic,
@mobile_no,
@emergency_contact,
@dob,
@address,
@gender)
END;
CREATE PROCEDURE sp_patch_student
@department_code VARCHAR(5),
@session_code VARCHAR(5),
@roll_no INT,
@name VARCHAR(25),
@father_name NVARCHAR(25),
@cnic VARCHAR(13),
@mobile_no VARCHAR(12),
@emergency_contact VARCHAR(12),
@dob DATE,
@address VARCHAR(MAX),
@gender VARCHAR(10),
@active BIT
AS
BEGIN
UPDATE students
SET name = @name,
father_name = @father_name,
cnic = @cnic,
mobile_no = @mobile_no,
emergency_contact = @emergency_contact,
dob = @dob,
address = @address,
gender = @gender,
active = @active
WHERE department_code = @department_code
AND session_code = @session_code
AND roll_no = @roll_no
END;
CREATE PROCEDURE sp_student_roll_no_new
@department_code VARCHAR(5),
@session_code VARCHAR(5),
@roll_no INT OUTPUT
AS
BEGIN
DECLARE @max_roll_no INT
SELECT @max_roll_no=MAX(roll_no)
FROM students
WHERE department_code=@department_code
AND session_code=@session_code
IF (@max_roll_no IS NULL)
BEGIN
SET @roll_no=1
END ELSE
BEGIN
SET @roll_no=@max_roll_no + 1
END
END;
CREATE PROCEDURE sp_get_student_roll_no_new
@department_code VARCHAR(5),
@session_code VARCHAR(5)
AS
BEGIN
DECLARE @new_roll_no INT
SELECT @new_roll_no=MAX(roll_no)
FROM students
WHERE department_code=@department_code
AND session_code=@session_code
IF (@new_roll_no IS NULL)
BEGIN
SET @new_roll_no=1
END ELSE
BEGIN
SET @new_roll_no=@new_roll_no + 1
END
SELECT @new_roll_no AS new_roll_no
END;
CREATE PROCEDURE sp_post_class_register_entry
@department_code VARCHAR(5),
@session_code VARCHAR(5),
@class_code VARCHAR(5),
@student_roll_no INT
AS
BEGIN
INSERT INTO class_register
VALUES(
@department_code,
@session_code,
@class_code,
@student_roll_no)
END;
CREATE TRIGGER tr_on_insert_student
ON students
FOR INSERT
AS
BEGIN
PRINT('tr_on_insert_student executed')
INSERT INTO audit_student VALUES(GETDATE())
END;
CREATE TRIGGER tr_on_update_user
ON users
FOR UPDATE
AS
BEGIN
PRINT('tr_on_update_user executed')
INSERT INTO audit_user VALUES(GETDATE())
END;
ALTER VIEW vw_admin
AS
SELECT * FROM users WHERE user_role=(SELECT user_role FROM users WHERE user_name='admin1');
/*
* [Concepts Covered]
* Create Table
* Primary Key
* Not Null constraint
* Default constraint
* Check constaint
* Alter table
* Insert row
* Update row
* Where with Like clause
* Order by clause
* Stored procedures with default parameters
* Procedure with output parameter
* Procedure inside procedure
* Triggers for inert and update
* View
* Subquery
*/
| 18.974265 | 91 | 0.762934 |
56b73a3fbef183b96f20a40cbd6ad026b0567e86 | 2,888 | go | Go | orc8r/cloud/go/services/certifier/analytics/calculations/lifespan.go | rdefosse/magma | d12ac827d0cdb39f499ce202e9e1196cc50b68d7 | [
"BSD-3-Clause"
] | null | null | null | orc8r/cloud/go/services/certifier/analytics/calculations/lifespan.go | rdefosse/magma | d12ac827d0cdb39f499ce202e9e1196cc50b68d7 | [
"BSD-3-Clause"
] | 1 | 2022-02-27T18:57:16.000Z | 2022-02-27T18:57:16.000Z | orc8r/cloud/go/services/certifier/analytics/calculations/lifespan.go | rdefosse/magma | d12ac827d0cdb39f499ce202e9e1196cc50b68d7 | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright 2020 The Magma Authors.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package calculations
import (
"crypto/x509"
"encoding/pem"
"io/ioutil"
"log"
"math"
"strings"
"time"
"magma/orc8r/cloud/go/services/analytics/calculations"
"magma/orc8r/cloud/go/services/analytics/protos"
"magma/orc8r/cloud/go/services/analytics/query_api"
"magma/orc8r/lib/go/metrics"
"github.com/golang/glog"
"github.com/prometheus/client_golang/prometheus"
)
type CertLifespanCalculation struct {
CertsDirectory string
Certs []string
calculations.BaseCalculation
}
func (x *CertLifespanCalculation) Calculate(prometheusClient query_api.PrometheusAPI) ([]*protos.CalculationResult, error) {
glog.V(2).Infof("Calculating %s", metrics.CertExpiresInHoursMetric)
var results []*protos.CalculationResult
metricConfig, ok := x.AnalyticsConfig.Metrics[metrics.CertExpiresInHoursMetric]
if !ok {
glog.Errorf("%s metric not found in metric config", metrics.CertExpiresInHoursMetric)
return results, nil
}
for _, certName := range x.Certs {
result, err := calculateCertLifespanHours(x.CertsDirectory, certName, metricConfig.Labels)
if err != nil {
glog.Errorf("Could not get lifespan for cert %s: %+v", certName, err)
continue
}
results = append(results, result)
}
return results, nil
}
func calculateCertLifespanHours(certsDirectory string, certName string, metricConfigLabels map[string]string) (*protos.CalculationResult, error) {
dat, err := getCert(certsDirectory + certName)
if err != nil {
return nil, err
}
cert, err := x509.ParseCertificate(dat)
if err != nil {
return nil, err
}
// Hours remaining
hoursLeft := math.Floor(time.Until(cert.NotAfter).Hours())
labels := prometheus.Labels{
metrics.CertNameLabel: certName,
}
labels = calculations.CombineLabels(labels, metricConfigLabels)
result := calculations.NewResult(hoursLeft, metrics.CertExpiresInHoursMetric, labels)
glog.V(2).Infof("Calculated metric %s for %s: %f", metrics.CertExpiresInHoursMetric, certName, hoursLeft)
return result, nil
}
func getCert(certPath string) ([]byte, error) {
dat, err := ioutil.ReadFile(certPath)
if err != nil {
return nil, err
}
if strings.HasSuffix(certPath, ".pem") || strings.HasSuffix(certPath, ".crt") {
block, _ := pem.Decode(dat)
if block == nil || block.Type != "PUBLIC KEY" {
log.Fatal("failed to decode PEM block containing public key")
}
return block.Bytes, nil
}
return dat, nil
}
| 30.083333 | 146 | 0.739958 |