Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 27 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 20339829 | 607 days ago | IN | 0 ETH | 0.00033908 | ||||
| Transfer | 15039520 | 1359 days ago | IN | 0 ETH | 0.00057828 | ||||
| Transfer | 12313486 | 1788 days ago | IN | 0 ETH | 0.00143676 | ||||
| Transfer | 12313484 | 1788 days ago | IN | 0 ETH | 0.00198395 | ||||
| Transfer | 12176924 | 1809 days ago | IN | 0 ETH | 0.0043641 | ||||
| Transfer | 12085612 | 1823 days ago | IN | 0 ETH | 0.0086664 | ||||
| Approve | 11652192 | 1889 days ago | IN | 0 ETH | 0.0032027 | ||||
| Transfer | 11553502 | 1904 days ago | IN | 0 ETH | 0.0052593 | ||||
| Transfer | 11548891 | 1905 days ago | IN | 0 ETH | 0.00339989 | ||||
| Transfer | 11548172 | 1905 days ago | IN | 0 ETH | 0.00128074 | ||||
| Transfer | 11548136 | 1905 days ago | IN | 0 ETH | 0.00178909 | ||||
| Transfer | 11548094 | 1905 days ago | IN | 0 ETH | 0.0039165 | ||||
| Transfer | 11548080 | 1905 days ago | IN | 0 ETH | 0.00357409 | ||||
| Transfer | 11541578 | 1906 days ago | IN | 0 ETH | 0.0033982 | ||||
| Transfer | 11541012 | 1906 days ago | IN | 0 ETH | 0.00281658 | ||||
| Transfer | 11456136 | 1919 days ago | IN | 0 ETH | 0.0046998 | ||||
| Transfer | 11456111 | 1919 days ago | IN | 0 ETH | 0.0030657 | ||||
| Transfer | 11332089 | 1938 days ago | IN | 0 ETH | 0.01648341 | ||||
| Transfer | 11332089 | 1938 days ago | IN | 0 ETH | 0.00227442 | ||||
| Approve | 11241113 | 1952 days ago | IN | 0 ETH | 0.00058716 | ||||
| Transfer | 11241069 | 1952 days ago | IN | 0 ETH | 0.00071466 | ||||
| Transfer | 10922801 | 2002 days ago | IN | 0 ETH | 0.0120765 | ||||
| Transfer | 10910645 | 2003 days ago | IN | 0 ETH | 0.00416978 | ||||
| Transfer | 10883662 | 2008 days ago | IN | 0 ETH | 0.0155926 | ||||
| Transfer | 10883650 | 2008 days ago | IN | 0 ETH | 0.0155926 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
VKFtoken
Compiler Version
v0.4.22+commit.4cb486ee
Contract Source Code (Solidity Multiple files format)
pragma solidity >=0.4.22 <0.8.0;
import "./Context.sol";
import "./ERC20.sol";
import "./ERC20Detailed.sol";
/**
* @title SimpleToken
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
* Note they can later distribute these tokens as they wish using `transfer` and other
* `ERC20` functions.
*/
contract VKFtoken is Context, ERC20, ERC20Detailed {
uint256 public totalSupplyofToken;
address private owner;
mapping(address => bytes32[]) public lockReason;
mapping(address => mapping(bytes32 => lockToken)) public locked;
struct lockToken {
uint256 amount;
uint256 validity;
}
modifier onlyOwner () {
require(_msgSender() == owner);
_;
}
/**
* @dev Constructor that gives _msgSender() all of existing tokens.
*/
constructor () public ERC20Detailed("VKFtoken", "vkf", 18) ERC20(_msgSender()) {
owner = _msgSender();
totalSupplyofToken = 1470000000 * (10 ** uint256(decimals()));
_mint(_msgSender(), totalSupplyofToken);
}
function mint(uint256 _amount) public onlyOwner {
uint256 mint_amount = _amount * (10 ** uint256(decimals()));
_mint(_msgSender(), mint_amount);
}
function burn(uint256 _amount) public onlyOwner {
uint256 burn_amount = _amount * (10 ** uint256(decimals()));
_burn(_msgSender(), burn_amount);
}
function transferLock(address _recipient, uint256 _amount, bytes32 _reason, uint256 _time) onlyOwner public returns (bool){
_transferToken(_recipient, _amount);
lock(_recipient, _reason, _amount, _time);
return true;
}
function transfer(address _recipient, uint256 _amount) public returns (bool) {
uint256 transferableToken = transferableBalanceOf(_msgSender());
require(transferableToken.sub(_amount) >= 0);
_transferToken(_recipient, _amount);
return true;
}
/**
* @dev Locks a specified amount of tokens against an address,
* for a specified reason and time
*/
function lock(address _user, bytes32 _reason, uint256 _amount, uint256 _time) onlyOwner public returns (bool){
uint256 validUntil = block.timestamp.add(_time);
// If tokens are already locked, the functions extendLock or
// increaseLockAmount should be used to make any changes
//require(tokensLocked(_user, _reason, block.timestamp) == 0);
require(_amount <= transferableBalanceOf(_user));
if (locked[_user][_reason].amount == 0)
lockReason[_user].push(_reason);
if(tokensLocked(_user, _reason, block.timestamp) == 0){
locked[_user][_reason] = lockToken(_amount, validUntil);
}else{
locked[_user][_reason].amount += _amount;
}
return true;
}
/**
* @dev Returns tokens locked for a specified address for a
* specified reason at a specified time
*
* @param _user The address whose tokens are locked
* @param _reason The reason to query the lock tokens for
* @param _time The timestamp to query the lock tokens for
*/
function tokensLocked(address _user, bytes32 _reason, uint256 _time) public view returns (uint256 amount){
if (locked[_user][_reason].validity > _time)
amount = locked[_user][_reason].amount;
}
function transferableBalanceOf(address _user) public view returns (uint256){
uint256 totalBalance;
uint256 lockedAmount;
uint256 amount;
for (uint256 i=0; i < lockReason[_user].length; i++) {
lockedAmount += tokensLocked(_user,lockReason[_user][i], block.timestamp);
}
totalBalance = balanceOf(_user);
amount = totalBalance.sub(lockedAmount);
return amount;
}
}pragma solidity >=0.4.22 <0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-vkfy-blocks
function _msgSender() internal view returns (address) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}pragma solidity >=0.4.22 <0.8.0;
import "./Context.sol";
import "./IERC20.sol";
import "./SafeMath.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
address _owner;
modifier onlyOwner () {
require(_msgSender() == _owner);
_;
}
constructor (address owner) public {
_owner = owner;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
// function transfer(address recipient, uint256 amount) public returns (bool) {
// _transfer(_msgSender(), recipient, amount);
// return true;
// }
function _transferToken(address recipient, uint256 amount) internal returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
// function transferOwner(address recipient, uint256 amount) onlyOwner public returns (bool) {
// _transfer(_msgSender(), recipient, amount);
// return true;
// }
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}pragma solidity >=0.4.22 <0.8.0;
import "./IERC20.sol";
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}pragma solidity >=0.4.22 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
// function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.8.0;
contract Migrations {
address public owner = msg.sender;
uint public last_completed_migration;
modifier restricted() {
require(
msg.sender == owner,
"This function is restricted to the contract's owner"
);
_;
}
function setCompleted(uint completed) public restricted {
last_completed_migration = completed;
}
}
pragma solidity >=0.4.22 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_reason","type":"bytes32"},{"name":"_amount","type":"uint256"},{"name":"_time","type":"uint256"}],"name":"lock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyofToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_reason","type":"bytes32"},{"name":"_time","type":"uint256"}],"name":"transferLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"},{"name":"_reason","type":"bytes32"},{"name":"_time","type":"uint256"}],"name":"tokensLocked","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"lockReason","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"transferableBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"locked","outputs":[{"name":"amount","type":"uint256"},{"name":"validity","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]Contract Creation Code
60806040523480156200001157600080fd5b506040805190810160405280600881526020017f564b46746f6b656e0000000000000000000000000000000000000000000000008152506040805190810160405280600381526020017f766b660000000000000000000000000000000000000000000000000000000000815250601262000099620001ea640100000000026401000000009004565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508260049080519060200190620000f392919062000472565b5081600590805190602001906200010c92919062000472565b5080600660006101000a81548160ff021916908360ff16021790555050505062000144620001ea640100000000026401000000009004565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019d620001f2640100000000026401000000009004565b60ff16600a0a63579e6b8002600781905550620001e4620001cc620001ea640100000000026401000000009004565b60075462000209640100000000026401000000009004565b62000521565b600033905090565b6000600660009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515620002af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002d481600254620003e7640100000000026200145c179091906401000000009004565b6002819055506200033b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003e7640100000000026200145c179091906401000000009004565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015151562000468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004b557805160ff1916838001178555620004e6565b82800160010185558215620004e6579182015b82811115620004e5578251825591602001919060010190620004c8565b5b509050620004f59190620004f9565b5090565b6200051e91905b808211156200051a57600081600090555060010162000500565b5090565b90565b61203e80620005316000396000f300608060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610117578063087fad41146101a7578063095ea7b31461022457806318160ddd14610289578063231224ef146102b457806323b872dd146102df57806325c8a8bc14610364578063313ce567146103e157806339509351146104125780633cd8e5a51461047757806342966c68146104e657806370a082311461051357806371d66f001461056a57806395d89b41146105d3578063a0712d6814610663578063a457c2d714610690578063a9059cbb146106f5578063c7d9f4d11461075a578063d71be8db146107b1578063dd62ed3e1461081d575b600080fd5b34801561012357600080fd5b5061012c610894565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016c578082015181840152602081019050610151565b50505050905090810190601f1680156101995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b357600080fd5b5061020a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080356000191690602001909291908035906020019092919080359060200190929190505050610936565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b5061026f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610baf565b604051808215151515815260200191505060405180910390f35b34801561029557600080fd5b5061029e610bcd565b6040518082815260200191505060405180910390f35b3480156102c057600080fd5b506102c9610bd7565b6040518082815260200191505060405180910390f35b3480156102eb57600080fd5b5061034a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bdd565b604051808215151515815260200191505060405180910390f35b34801561037057600080fd5b506103c7600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560001916906020019092919080359060200190929190505050610cfa565b604051808215151515815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d83565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b5061045d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d9a565b604051808215151515815260200191505060405180910390f35b34801561048357600080fd5b506104d0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919080359060200190929190505050610e4d565b6040518082815260200191505060405180910390f35b3480156104f257600080fd5b5061051160048036038101908080359060200190929190505050610f18565b005b34801561051f57600080fd5b50610554600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fa4565b6040518082815260200191505060405180910390f35b34801561057657600080fd5b506105b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fec565b60405180826000191660001916815260200191505060405180910390f35b3480156105df57600080fd5b506105e861101c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062857808201518184015260208101905061060d565b50505050905090810190601f1680156106555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561066f57600080fd5b5061068e600480360381019080803590602001909291905050506110be565b005b34801561069c57600080fd5b506106db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114a565b604051808215151515815260200191505060405180910390f35b34801561070157600080fd5b50610740600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b604051808215151515815260200191505060405180910390f35b34801561076657600080fd5b5061079b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a8565b6040518082815260200191505060405180910390f35b3480156107bd57600080fd5b50610800600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919050505061139c565b604051808381526020018281526020019250505060405180910390f35b34801561082957600080fd5b5061087e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097a611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561099c57600080fd5b6109af834261145c90919063ffffffff16565b90506109ba866112a8565b84111515156109c857600080fd5b6000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001541415610a9c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208590806001815401808255809150509060018203906000526020600020016000909192909190915090600019169055505b6000610aa9878742610e4d565b1415610b3857604080519081016040528085815260200182815250600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087600019166000191681526020019081526020016000206000820151816000015560208201518160010155905050610ba2565b83600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001600082825401925050819055505b6001915050949350505050565b6000610bc3610bbc611454565b84846114e6565b6001905092915050565b6000600254905090565b60075481565b6000610bea848484611767565b610cef84610bf6611454565b610cea85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ca0611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b600190509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d3d611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610d5f57600080fd5b610d698585611bac565b50610d7685848685610936565b5060019050949350505050565b6000600660009054906101000a900460ff16905090565b6000610e43610da7611454565b84610e3e8560016000610db8611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6114e6565b6001905092915050565b600081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008560001916600019168152602001908152602001600020600101541115610f1157600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084600019166000191681526020019081526020016000206000015490505b9392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610f7d57600080fd5b610f85610d83565b60ff16600a0a82029050610fa0610f9a611454565b82611bca565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60096020528160005260406000208181548110151561100757fe5b90600052602060002001600091509150505481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b45780601f10611089576101008083540402835291602001916110b4565b820191906000526020600020905b81548152906001019060200180831161109757829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611101611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561112357600080fd5b61112b610d83565b60ff16600a0a82029050611146611140611454565b82611e0b565b5050565b6000611251611157611454565b8461124c85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006111c5611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b6001905092915050565b60008061126e611269611454565b6112a8565b905060006112858483611fc890919063ffffffff16565b1015151561129257600080fd5b61129c8484611bac565b50600191505092915050565b60008060008060008090505b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156113705761135f86600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561134e57fe5b906000526020600020015442610e4d565b8301925080806001019150506112b4565b61137986610fa4565b935061138e8385611fc890919063ffffffff16565b915081945050505050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b60008082840190508381101515156114dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6119ac81606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000808484111583901515611b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b60578082015181840152602081019050611b45565b50505050905090810190601f168015611b8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000611bc0611bb9611454565b8484611767565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611c95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611d4481606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d9b81600254611fc890919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ec58160025461145c90919063ffffffff16565b600281905550611f1c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061200a83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aeb565b9050929150505600a165627a7a72305820d15bc4e2b9514838ca4270aa7d541aed2e8bd102ff86edb0b2f85d652d469a430029
Deployed Bytecode
0x608060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610117578063087fad41146101a7578063095ea7b31461022457806318160ddd14610289578063231224ef146102b457806323b872dd146102df57806325c8a8bc14610364578063313ce567146103e157806339509351146104125780633cd8e5a51461047757806342966c68146104e657806370a082311461051357806371d66f001461056a57806395d89b41146105d3578063a0712d6814610663578063a457c2d714610690578063a9059cbb146106f5578063c7d9f4d11461075a578063d71be8db146107b1578063dd62ed3e1461081d575b600080fd5b34801561012357600080fd5b5061012c610894565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016c578082015181840152602081019050610151565b50505050905090810190601f1680156101995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b357600080fd5b5061020a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080356000191690602001909291908035906020019092919080359060200190929190505050610936565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b5061026f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610baf565b604051808215151515815260200191505060405180910390f35b34801561029557600080fd5b5061029e610bcd565b6040518082815260200191505060405180910390f35b3480156102c057600080fd5b506102c9610bd7565b6040518082815260200191505060405180910390f35b3480156102eb57600080fd5b5061034a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bdd565b604051808215151515815260200191505060405180910390f35b34801561037057600080fd5b506103c7600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560001916906020019092919080359060200190929190505050610cfa565b604051808215151515815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d83565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b5061045d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d9a565b604051808215151515815260200191505060405180910390f35b34801561048357600080fd5b506104d0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919080359060200190929190505050610e4d565b6040518082815260200191505060405180910390f35b3480156104f257600080fd5b5061051160048036038101908080359060200190929190505050610f18565b005b34801561051f57600080fd5b50610554600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fa4565b6040518082815260200191505060405180910390f35b34801561057657600080fd5b506105b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fec565b60405180826000191660001916815260200191505060405180910390f35b3480156105df57600080fd5b506105e861101c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062857808201518184015260208101905061060d565b50505050905090810190601f1680156106555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561066f57600080fd5b5061068e600480360381019080803590602001909291905050506110be565b005b34801561069c57600080fd5b506106db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114a565b604051808215151515815260200191505060405180910390f35b34801561070157600080fd5b50610740600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b604051808215151515815260200191505060405180910390f35b34801561076657600080fd5b5061079b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a8565b6040518082815260200191505060405180910390f35b3480156107bd57600080fd5b50610800600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919050505061139c565b604051808381526020018281526020019250505060405180910390f35b34801561082957600080fd5b5061087e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097a611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561099c57600080fd5b6109af834261145c90919063ffffffff16565b90506109ba866112a8565b84111515156109c857600080fd5b6000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001541415610a9c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208590806001815401808255809150509060018203906000526020600020016000909192909190915090600019169055505b6000610aa9878742610e4d565b1415610b3857604080519081016040528085815260200182815250600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087600019166000191681526020019081526020016000206000820151816000015560208201518160010155905050610ba2565b83600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001600082825401925050819055505b6001915050949350505050565b6000610bc3610bbc611454565b84846114e6565b6001905092915050565b6000600254905090565b60075481565b6000610bea848484611767565b610cef84610bf6611454565b610cea85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ca0611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b600190509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d3d611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610d5f57600080fd5b610d698585611bac565b50610d7685848685610936565b5060019050949350505050565b6000600660009054906101000a900460ff16905090565b6000610e43610da7611454565b84610e3e8560016000610db8611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6114e6565b6001905092915050565b600081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008560001916600019168152602001908152602001600020600101541115610f1157600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084600019166000191681526020019081526020016000206000015490505b9392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610f7d57600080fd5b610f85610d83565b60ff16600a0a82029050610fa0610f9a611454565b82611bca565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60096020528160005260406000208181548110151561100757fe5b90600052602060002001600091509150505481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b45780601f10611089576101008083540402835291602001916110b4565b820191906000526020600020905b81548152906001019060200180831161109757829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611101611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561112357600080fd5b61112b610d83565b60ff16600a0a82029050611146611140611454565b82611e0b565b5050565b6000611251611157611454565b8461124c85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006111c5611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b6001905092915050565b60008061126e611269611454565b6112a8565b905060006112858483611fc890919063ffffffff16565b1015151561129257600080fd5b61129c8484611bac565b50600191505092915050565b60008060008060008090505b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156113705761135f86600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561134e57fe5b906000526020600020015442610e4d565b8301925080806001019150506112b4565b61137986610fa4565b935061138e8385611fc890919063ffffffff16565b915081945050505050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b60008082840190508381101515156114dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6119ac81606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000808484111583901515611b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b60578082015181840152602081019050611b45565b50505050905090810190601f168015611b8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000611bc0611bb9611454565b8484611767565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611c95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611d4481606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d9b81600254611fc890919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ec58160025461145c90919063ffffffff16565b600281905550611f1c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061200a83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aeb565b9050929150505600a165627a7a72305820d15bc4e2b9514838ca4270aa7d541aed2e8bd102ff86edb0b2f85d652d469a430029
Deployed Bytecode Sourcemap
341:3580:6:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653:81:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;653:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;653:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2181:796:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2181:796:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3082:149:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3082:149:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1741:89:1;;;;;;;;;;;;;;;;;;;;;;;403:33:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;403:33:6;;;;;;;;;;;;;;;;;;;;;;;3689:300:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3689:300:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1465:259:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1465:259:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481:81:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1481:81:2;;;;;;;;;;;;;;;;;;;;;;;;;;;4394:207:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4394:207:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3304:217:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3304:217:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1289:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1289:166:6;;;;;;;;;;;;;;;;;;;;;;;;;;1888:108:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1888:108:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474:47:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;474:47:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847:85:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;847:85:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;847:85:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1112:166:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1112:166:6;;;;;;;;;;;;;;;;;;;;;;;;;;5088:258:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5088:258:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1735:304:6;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1735:304:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3531:386;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3531:386:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;524:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;524:63:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2812:132:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2812:132:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653:81:2;690:6;722:5;715:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;653:81;:::o;2181:796:6:-;2285:4;2300:18;735:5;;;;;;;;;;;719:21;;:12;:10;:12::i;:::-;:21;;;711:30;;;;;;;;2321:26;2341:5;2321:15;:19;;:26;;;;:::i;:::-;2300:47;;2581:28;2603:5;2581:21;:28::i;:::-;2570:7;:39;;2562:48;;;;;;;;2666:1;2633:6;:13;2640:5;2633:13;;;;;;;;;;;;;;;:22;2647:7;2633:22;;;;;;;;;;;;;;;;;:29;;;:34;2629:83;;;2681:10;:17;2692:5;2681:17;;;;;;;;;;;;;;;2704:7;2681:31;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;2681:31:6;;;;;;;;;;;;;;;;;;;;;;;;;;;2629:83;2783:1;2734:45;2747:5;2754:7;2763:15;2734:12;:45::i;:::-;:50;2731:210;;;2824:30;;;;;;;;;2834:7;2824:30;;;;2843:10;2824:30;;;2799:6;:13;2806:5;2799:13;;;;;;;;;;;;;;;:22;2813:7;2799:22;;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;;2731:210;;;2920:7;2887:6;:13;2894:5;2887:13;;;;;;;;;;;;;;;:22;2901:7;2887:22;;;;;;;;;;;;;;;;;:29;;;:40;;;;;;;;;;;2731:210;2966:4;2959:11;;2181:796;;;;;;;:::o;3082:149:1:-;3148:4;3164:39;3173:12;:10;:12::i;:::-;3187:7;3196:6;3164:8;:39::i;:::-;3220:4;3213:11;;3082:149;;;;:::o;1741:89::-;1785:7;1811:12;;1804:19;;1741:89;:::o;403:33:6:-;;;;:::o;3689:300:1:-;3778:4;3794:36;3804:6;3812:9;3823:6;3794:9;:36::i;:::-;3840:121;3849:6;3857:12;:10;:12::i;:::-;3871:89;3909:6;3871:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;3883:6;3871:19;;;;;;;;;;;;;;;:33;3891:12;:10;:12::i;:::-;3871:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;3840:8;:121::i;:::-;3978:4;3971:11;;3689:300;;;;;:::o;1465:259:6:-;1582:4;735:5;;;;;;;;;;;719:21;;:12;:10;:12::i;:::-;:21;;;711:30;;;;;;;;1597:35;1612:10;1624:7;1597:14;:35::i;:::-;;1651:41;1656:10;1668:7;1677;1686:5;1651:4;:41::i;:::-;;1713:4;1706:11;;1465:259;;;;;;:::o;1481:81:2:-;1522:5;1546:9;;;;;;;;;;;1539:16;;1481:81;:::o;4394:207:1:-;4474:4;4490:83;4499:12;:10;:12::i;:::-;4513:7;4522:50;4561:10;4522:11;:25;4534:12;:10;:12::i;:::-;4522:25;;;;;;;;;;;;;;;:34;4548:7;4522:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;4490:8;:83::i;:::-;4590:4;4583:11;;4394:207;;;;:::o;3304:217:6:-;3394:14;3457:5;3423:6;:13;3430:5;3423:13;;;;;;;;;;;;;;;:22;3437:7;3423:22;;;;;;;;;;;;;;;;;:31;;;:39;3419:95;;;3485:6;:13;3492:5;3485:13;;;;;;;;;;;;;;;:22;3499:7;3485:22;;;;;;;;;;;;;;;;;:29;;;3476:38;;3419:95;3304:217;;;;;:::o;1289:166::-;1347:19;735:5;;;;;;;;;;;719:21;;:12;:10;:12::i;:::-;:21;;;711:30;;;;;;;;1394:10;:8;:10::i;:::-;1386:19;;1380:2;:25;1369:7;:37;1347:59;;1416:32;1422:12;:10;:12::i;:::-;1436:11;1416:5;:32::i;:::-;1289:166;;:::o;1888:108:1:-;1945:7;1971:9;:18;1981:7;1971:18;;;;;;;;;;;;;;;;1964:25;;1888:108;;;:::o;474:47:6:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;847:85:2:-;886:6;918:7;911:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;847:85;:::o;1112:166:6:-;1170:19;735:5;;;;;;;;;;;719:21;;:12;:10;:12::i;:::-;:21;;;711:30;;;;;;;;1217:10;:8;:10::i;:::-;1209:19;;1203:2;:25;1192:7;:37;1170:59;;1239:32;1245:12;:10;:12::i;:::-;1259:11;1239:5;:32::i;:::-;1112:166;;:::o;5088:258:1:-;5173:4;5189:129;5198:12;:10;:12::i;:::-;5212:7;5221:96;5260:15;5221:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;5233:12;:10;:12::i;:::-;5221:25;;;;;;;;;;;;;;;:34;5247:7;5221:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;5189:8;:129::i;:::-;5335:4;5328:11;;5088:258;;;;:::o;1735:304:6:-;1806:4;1831:25;1859:35;1881:12;:10;:12::i;:::-;1859:21;:35::i;:::-;1831:63;;1955:1;1921:30;1943:7;1921:17;:21;;:30;;;;:::i;:::-;:35;;1913:44;;;;;;;;1976:35;1991:10;2003:7;1976:14;:35::i;:::-;;2028:4;2021:11;;1735:304;;;;;:::o;3531:386::-;3598:7;3610:20;3634;3658:14;3684:9;3694:1;3684:11;;3679:136;3701:10;:17;3712:5;3701:17;;;;;;;;;;;;;;;:24;;;;3697:1;:28;3679:136;;;3753:57;3766:5;3772:10;:17;3783:5;3772:17;;;;;;;;;;;;;;;3790:1;3772:20;;;;;;;;;;;;;;;;;;3794:15;3753:12;:57::i;:::-;3737:73;;;;3727:3;;;;;;;3679:136;;;3836:16;3846:5;3836:9;:16::i;:::-;3821:31;;3866:30;3883:12;3866;:16;;:30;;;;:::i;:::-;3857:39;;3907:6;3900:13;;3531:386;;;;;;;:::o;524:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2812:132:1:-;2884:7;2910:11;:18;2922:5;2910:18;;;;;;;;;;;;;;;:27;2929:7;2910:27;;;;;;;;;;;;;;;;2903:34;;2812:132;;;;:::o;796:88:0:-;841:7;867:10;860:17;;796:88;:::o;845:176:5:-;903:7;922:9;938:1;934;:5;922:17;;962:1;957;:6;;949:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1013:1;1006:8;;845:176;;;;;:::o;7946:332:1:-;8056:1;8039:19;;:5;:19;;;;8031:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8136:1;8117:21;;:7;:21;;;;8109:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8218:6;8188:11;:18;8200:5;8188:18;;;;;;;;;;;;;;;:27;8207:7;8188:27;;;;;;;;;;;;;;;:36;;;;8255:7;8239:32;;8248:5;8239:32;;;8264:6;8239:32;;;;;;;;;;;;;;;;;;7946:332;;;:::o;5822:464::-;5937:1;5919:20;;:6;:20;;;;5911:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6020:1;5999:23;;:9;:23;;;;5991:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6093;6115:6;6093:71;;;;;;;;;;;;;;;;;;;;;;;:9;:17;6103:6;6093:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;6073:9;:17;6083:6;6073:17;;;;;;;;;;;;;;;:91;;;;6197:32;6222:6;6197:9;:20;6207:9;6197:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;6174:9;:20;6184:9;6174:20;;;;;;;;;;;;;;;:55;;;;6261:9;6244:35;;6253:6;6244:35;;;6272:6;6244:35;;;;;;;;;;;;;;;;;;5822:464;;;:::o;1743:187:5:-;1829:7;1887:9;1861:1;1856;:6;;1864:12;1848:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1848:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1903:1;1899;:5;1887:17;;1922:1;1915:8;;1743:187;;;;;;:::o;2381:181:1:-;2458:4;2483:42;2493:12;:10;:12::i;:::-;2507:9;2518:6;2483:9;:42::i;:::-;2542:4;2535:11;;2381:181;;;;:::o;7177:342::-;7271:1;7252:21;;:7;:21;;;;7244:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7343:68;7366:6;7343:68;;;;;;;;;;;;;;;;;;;;;;;:9;:18;7353:7;7343:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;7322:9;:18;7332:7;7322:18;;;;;;;;;;;;;;;:89;;;;7436:24;7453:6;7436:12;;:16;;:24;;;;:::i;:::-;7421:12;:39;;;;7501:1;7475:37;;7484:7;7475:37;;;7505:6;7475:37;;;;;;;;;;;;;;;;;;7177:342;;:::o;6556:302::-;6650:1;6631:21;;:7;:21;;;;6623:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6714:24;6731:6;6714:12;;:16;;:24;;;;:::i;:::-;6699:12;:39;;;;6769:30;6792:6;6769:9;:18;6779:7;6769:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;6748:9;:18;6758:7;6748:18;;;;;;;;;;;;;;;:51;;;;6835:7;6814:37;;6831:1;6814:37;;;6844:6;6814:37;;;;;;;;;;;;;;;;;;6556:302;;:::o;1285:134:5:-;1343:7;1369:43;1373:1;1376;1369:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1362:50;;1285:134;;;;:::o
Swarm Source
bzzr://d15bc4e2b9514838ca4270aa7d541aed2e8bd102ff86edb0b2f85d652d469a43
Loading...
Loading
Loading...
Loading
Net Worth in USD
$332.53
Net Worth in ETH
0.150407
Token Allocations
BNB
100.00%
Multichain Portfolio | 33 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.