Token migration announcement. ClinTex CTI token contract has migrated to a new address.
ERC-20
Source Code
Overview
Max Total Supply
191,311,840.172296174381900566 CTI
Holders
1,055 (0.00%)
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
871.167972580806352605 CTIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
CLIToken
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-09-09
*/
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.0;
/**
* @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;
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.5.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-empty-blocks
function _msgSender() internal view returns (address payable) {
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;
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.5.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;
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.0;
/**
* @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;
/**
* @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;
}
/**
* @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"));
}
}
// File: @openzeppelin/contracts/ownership/Ownable.sol
pragma solidity ^0.5.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/managment/Constants.sol
pragma solidity 0.5.17;
contract Constants {
// Permissions bit constants
uint256 public constant CAN_MINT_TOKENS = 0;
uint256 public constant CAN_BURN_TOKENS = 1;
uint256 public constant CAN_UPDATE_STATE = 2;
uint256 public constant CAN_LOCK_TOKENS = 3;
uint256 public constant CAN_UPDATE_PRICE = 4;
uint256 public constant CAN_INTERACT_WITH_ALLOCATOR = 5;
uint256 public constant CAN_SET_ALLOCATOR_MAX_SUPPLY = 6;
uint256 public constant CAN_PAUSE_TOKENS = 7;
uint256 public constant ECLIUDED_ADDRESSES = 8;
uint256 public constant WHITELISTED = 9;
uint256 public constant SIGNERS = 10;
uint256 public constant EXTERNAL_CONTRIBUTORS = 11;
uint256 public constant CAN_SEE_BALANCE = 12;
uint256 public constant CAN_CANCEL_TRANSACTION = 13;
uint256 public constant CAN_ALLOCATE_REFERRAL_TOKENS = 14;
uint256 public constant CAN_SET_REFERRAL_MAX_SUPPLY = 15;
uint256 public constant MANUAL_TOKENS_ALLOCATION = 16;
uint256 public constant CAN_SET_WHITELISTED = 17;
// Contract Registry keys
uint256 public constant CONTRACT_TOKEN = 1;
uint256 public constant CONTRACT_PRICING = 2;
uint256 public constant CONTRACT_CROWDSALE = 3;
uint256 public constant CONTRACT_ALLOCATOR = 4;
uint256 public constant CONTRACT_AGENT = 5;
uint256 public constant CONTRACT_FORWARDER = 6;
uint256 public constant CONTRACT_REFERRAL = 7;
uint256 public constant CONTRACT_STATS = 8;
uint256 public constant CONTRACT_LOCKUP = 9;
uint256 public constant YEAR_IN_SECONDS = 31556952;
uint256 public constant SIX_MONTHS = 15778476;
uint256 public constant MONTH_IN_SECONDS = 2629746;
string public constant ERROR_ACCESS_DENIED = "ERROR_ACCESS_DENIED";
string public constant ERROR_WRONG_AMOUNT = "ERROR_WRONG_AMOUNT";
string public constant ERROR_NO_CONTRACT = "ERROR_NO_CONTRACT";
string public constant ERROR_NOT_AVAILABLE = "ERROR_NOT_AVAILABLE";
}
// File: contracts/managment/Management.sol
pragma solidity 0.5.17;
contract Management is Ownable, Constants {
// Contract Registry
mapping (uint256 => address payable) public contractRegistry;
// Permissions
mapping (address => mapping(uint256 => bool)) public permissions;
event PermissionsSet(
address subject,
uint256 permission,
bool value
);
event ContractRegistered(
uint256 key,
address source,
address target
);
function setPermission(
address _address,
uint256 _permission,
bool _value
)
public
onlyOwner
{
permissions[_address][_permission] = _value;
emit PermissionsSet(_address, _permission, _value);
}
function registerContract(
uint256 _key,
address payable _target
)
public
onlyOwner
{
contractRegistry[_key] = _target;
emit ContractRegistered(_key, address(0), _target);
}
function setWhitelisted(
address _address,
bool _value
)
public
{
require(
permissions[msg.sender][CAN_SET_WHITELISTED] == true,
ERROR_ACCESS_DENIED
);
permissions[_address][WHITELISTED] = _value;
emit PermissionsSet(_address, WHITELISTED, _value);
}
}
// File: contracts/managment/Managed.sol
pragma solidity 0.5.17;
contract Managed is Ownable, Constants {
using SafeMath for uint256;
Management public management;
modifier requirePermission(uint256 _permissionBit) {
require(
hasPermission(msg.sender, _permissionBit),
ERROR_ACCESS_DENIED
);
_;
}
modifier canCallOnlyRegisteredContract(uint256 _key) {
require(
msg.sender == management.contractRegistry(_key),
ERROR_ACCESS_DENIED
);
_;
}
modifier requireContractExistsInRegistry(uint256 _key) {
require(
management.contractRegistry(_key) != address(0),
ERROR_NO_CONTRACT
);
_;
}
constructor(address _managementAddress) public {
management = Management(_managementAddress);
}
function setManagementContract(address _management) public onlyOwner {
require(address(0) != _management, ERROR_NO_CONTRACT);
management = Management(_management);
}
function hasPermission(address _subject, uint256 _permissionBit)
internal
view
returns (bool)
{
return management.permissions(_subject, _permissionBit);
}
}
// File: contracts/LockupContract.sol
pragma solidity 0.5.17;
contract LockupContract is Managed {
using SafeMath for uint256;
uint256 public constant PERCENT_ABS_MAX = 100;
bool public isPostponedStart;
uint256 public postponedStartDate;
mapping(address => uint256[]) public lockedAllocationData;
mapping(address => uint256) public manuallyLockedBalances;
event Lock(address holderAddress, uint256 amount);
constructor(address _management) public Managed(_management) {
isPostponedStart = true;
}
function isTransferAllowed(
address _address,
uint256 _value,
uint256 _time,
uint256 _holderBalance
)
external
view
returns (bool)
{
uint256 unlockedBalance = getUnlockedBalance(
_address,
_time,
_holderBalance
);
if (unlockedBalance >= _value) {
return true;
}
return false;
}
function allocationLog(
address _address,
uint256 _amount,
uint256 _startingAt,
uint256 _lockPeriodInSeconds,
uint256 _initialUnlockInPercent,
uint256 _releasePeriodInSeconds
)
public
requirePermission(CAN_LOCK_TOKENS)
{
lockedAllocationData[_address].push(_startingAt);
if (_initialUnlockInPercent > 0) {
_amount = _amount.mul(uint256(PERCENT_ABS_MAX)
.sub(_initialUnlockInPercent)).div(PERCENT_ABS_MAX);
}
lockedAllocationData[_address].push(_amount);
lockedAllocationData[_address].push(_lockPeriodInSeconds);
lockedAllocationData[_address].push(_releasePeriodInSeconds);
emit Lock(_address, _amount);
}
function getUnlockedBalance(
address _address,
uint256 _time,
uint256 _holderBalance
)
public
view
returns (uint256)
{
uint256 blockedAmount = manuallyLockedBalances[_address];
if (lockedAllocationData[_address].length == 0) {
return _holderBalance.sub(blockedAmount);
}
uint256[] memory addressLockupData = lockedAllocationData[_address];
for (uint256 i = 0; i < addressLockupData.length / 4; i++) {
uint256 lockedAt = addressLockupData[i.mul(4)];
uint256 lockedBalance = addressLockupData[i.mul(4).add(1)];
uint256 lockPeriodInSeconds = addressLockupData[i.mul(4).add(2)];
uint256 _releasePeriodInSeconds = addressLockupData[
i.mul(4).add(3)
];
if (lockedAt == 0 && true == isPostponedStart) {
if (postponedStartDate == 0) {
blockedAmount = blockedAmount.add(lockedBalance);
continue;
}
lockedAt = postponedStartDate;
}
if (lockedAt > _time) {
blockedAmount = blockedAmount.add(lockedBalance);
continue;
}
if (lockedAt.add(lockPeriodInSeconds) > _time) {
if (lockedBalance == 0) {
blockedAmount = _holderBalance;
break;
} else {
uint256 tokensUnlocked;
if (_releasePeriodInSeconds > 0) {
uint256 duration = (_time.sub(lockedAt))
.div(_releasePeriodInSeconds);
tokensUnlocked = lockedBalance.mul(duration)
.mul(_releasePeriodInSeconds)
.div(lockPeriodInSeconds);
}
blockedAmount = blockedAmount
.add(lockedBalance)
.sub(tokensUnlocked);
}
}
}
return _holderBalance.sub(blockedAmount);
}
function setManuallyLockedForAddress (
address _holder,
uint256 _balance
)
public
requirePermission(CAN_LOCK_TOKENS)
{
manuallyLockedBalances[_holder] = _balance;
}
function setPostponedStartDate(uint256 _postponedStartDate)
public
requirePermission(CAN_LOCK_TOKENS)
{
postponedStartDate = _postponedStartDate;
}
}
// File: @openzeppelin/contracts/access/Roles.sol
pragma solidity ^0.5.0;
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev Give an account access to this role.
*/
function add(Role storage role, address account) internal {
require(!has(role, account), "Roles: account already has role");
role.bearer[account] = true;
}
/**
* @dev Remove an account's access to this role.
*/
function remove(Role storage role, address account) internal {
require(has(role, account), "Roles: account does not have role");
role.bearer[account] = false;
}
/**
* @dev Check if an account has this role.
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0), "Roles: account is the zero address");
return role.bearer[account];
}
}
// File: @openzeppelin/contracts/access/roles/MinterRole.sol
pragma solidity ^0.5.0;
contract MinterRole is Context {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
constructor () internal {
_addMinter(_msgSender());
}
modifier onlyMinter() {
require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(_msgSender());
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
}
// File: @openzeppelin/contracts/token/ERC20/ERC20Mintable.sol
pragma solidity ^0.5.0;
/**
* @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
* which have permission to mint (create) new tokens as they see fit.
*
* At construction, the deployer of the contract is the only minter.
*/
contract ERC20Mintable is ERC20, MinterRole {
/**
* @dev See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the {MinterRole}.
*/
function mint(address account, uint256 amount) public onlyMinter returns (bool) {
_mint(account, amount);
return true;
}
}
// File: contracts/allocator/TokenAllocator.sol
pragma solidity 0.5.17;
/// @title TokenAllocator
/// @author Applicature
/// @notice Contract responsible for defining distribution logic of tokens.
/// @dev Base class
contract TokenAllocator is Managed {
uint256 public maxSupply;
constructor(uint256 _maxSupply, address _management)
public
Managed(_management)
{
maxSupply = _maxSupply;
}
function allocate(
address _holder,
uint256 _tokens,
uint256 _allocatedTokens
)
public
requirePermission(CAN_INTERACT_WITH_ALLOCATOR)
{
require(
tokensAvailable(_allocatedTokens) >= _tokens,
ERROR_WRONG_AMOUNT
);
internalAllocate(_holder, _tokens);
}
function updateMaxSupply(uint256 _maxSupply)
internal
requirePermission(CAN_INTERACT_WITH_ALLOCATOR)
{
maxSupply = _maxSupply;
}
/// @notice Check whether contract is initialised
/// @return true if initialized
function isInitialized() public view returns (bool) {
if (
address(management) == address(0) ||
management.contractRegistry(CONTRACT_TOKEN) == address(0) ||
management.contractRegistry(CONTRACT_ALLOCATOR) != address(this)
) {
return false;
}
return true;
}
/// @return available tokens
function tokensAvailable(uint256 _allocatedTokens)
public
view
returns (uint256)
{
return maxSupply.sub(_allocatedTokens);
}
function internalAllocate(
address _holder,
uint256 _tokens
)
internal;
}
// File: contracts/allocator/MintableTokenAllocator.sol
pragma solidity 0.5.17;
/// @title MintableTokenAllocator
/// @author Applicature
/// @notice Contract responsible for defining distribution logic of tokens.
/// @dev implementation
contract MintableTokenAllocator is TokenAllocator {
constructor(uint256 _maxSupply, address _management)
public
TokenAllocator(_maxSupply, _management)
{}
/// @notice Check whether contract is initialised
/// @return true if initialized
function isInitialized() public view returns (bool) {
return (
super.isInitialized() &&
hasPermission(address(this), CAN_MINT_TOKENS)
);
}
function decreaseCap(uint256 _valueToSubtract)
public
requirePermission(CAN_INTERACT_WITH_ALLOCATOR)
requireContractExistsInRegistry(CONTRACT_TOKEN)
{
require(
maxSupply.sub(_valueToSubtract) >= ERC20Mintable(
management.contractRegistry(CONTRACT_TOKEN)
).totalSupply(),
ERROR_WRONG_AMOUNT
);
updateMaxSupply(maxSupply.sub(_valueToSubtract));
}
function internalAllocate(
address _holder,
uint256 _tokens
)
internal
requireContractExistsInRegistry(CONTRACT_TOKEN)
requirePermission(CAN_INTERACT_WITH_ALLOCATOR)
{
ERC20Mintable(management.contractRegistry(CONTRACT_TOKEN))
.mint(_holder, _tokens);
}
}
// File: contracts/CLIAllocator.sol
pragma solidity 0.5.17;
contract CLIAllocator is MintableTokenAllocator {
/* solium-disable */
address public constant strategicPartners = 0xd5249aB86Ef7cE0651DF1b111E607f59950514c3;
address public constant promotionsBounty = 0x38069DD2C6D385a7dE7dbB90eF74E23B12D124e3;
address public constant shareholders = 0xA210F19b4C1c52dB213f88fdCA76fD83859052FA;
address public constant advisors = 0x5d6019C130158FC00bc4Dc1edc949Fa84b8ad098;
address public constant pharmaIndustrialTrials = 0x880574A5b701e017C254840063DFBd1f59dF9a15;
address public constant managementTeam = 0x1e2Ce74Bc0a9A9fB2D6b3f630d585E0c00FF66B0;
address public constant teamIncentive = 0xD4184B19170af014c595EF0b0321760d89918B95;
address public constant publicSaleTokensHolder = 0x9ED362b5A8aF29CBC06548ba5C2f40978ca48Ec1;
address public constant applicature = 0x63e638d15462037161003a6083A9c4AeD50f8F73;
uint256 public constant strategicPartnersTokensAmount = 20000000e18;
uint256 public constant promotionsBountyTokensAmount = 5200000e18;
uint256 public constant shareholdersTokensAmount = 25000000e18;
uint256 public constant advisorsTokensAmount = 8000000e18;
uint256 public constant applicatureTokensAmount = 2000000e18;
uint256 public constant pharmaIndustrialTrialsTokensAmount = 10000000e18;
uint256 public constant managementTeamTokensAmount = 25000000e18;
uint256 public constant teamIncentiveTokensAmount = 24000000e18;
uint256 public constant publicSaleTokensAmount = 60000000e18;
/* solium-enable */
bool public isAllocated;
constructor(uint256 _maxSupply, address _management)
public
MintableTokenAllocator(_maxSupply, _management)
{
}
function increasePublicSaleCap(uint256 valueToAdd)
external
canCallOnlyRegisteredContract(CONTRACT_CROWDSALE)
{
internalAllocate(publicSaleTokensHolder, valueToAdd);
}
function unlockManuallyLockedBalances(address _holder)
public
requirePermission(CAN_LOCK_TOKENS)
{
LockupContract lockupContract = LockupContract(
management.contractRegistry(CONTRACT_LOCKUP)
);
lockupContract.setManuallyLockedForAddress(
_holder,
0
);
}
function allocateRequiredTokensToHolders() public {
require(isAllocated == false, ERROR_NOT_AVAILABLE);
isAllocated = true;
allocateTokensWithSimpleLockUp();
allocateTokensWithComplicatedLockup();
allocateTokensWithManualUnlock();
allocatePublicSale();
}
function allocatePublicSale() private {
internalAllocate(publicSaleTokensHolder, publicSaleTokensAmount);
}
function allocateTokensWithSimpleLockUp() private {
LockupContract lockupContract = LockupContract(
management.contractRegistry(CONTRACT_LOCKUP)
);
internalAllocate(strategicPartners, strategicPartnersTokensAmount);
internalAllocate(promotionsBounty, promotionsBountyTokensAmount);
lockupContract.allocationLog(
promotionsBounty,
promotionsBountyTokensAmount,
0,
SIX_MONTHS,
0,
SIX_MONTHS
);
internalAllocate(advisors, advisorsTokensAmount);
lockupContract.allocationLog(
advisors,
advisorsTokensAmount,
0,
SIX_MONTHS,
0,
SIX_MONTHS
);
internalAllocate(applicature, applicatureTokensAmount);
// 25% each 6 months
lockupContract.allocationLog(
applicature,
applicatureTokensAmount,
0,
SIX_MONTHS.mul(4),
0,
SIX_MONTHS
);
}
function allocateTokensWithComplicatedLockup() private {
LockupContract lockupContract = LockupContract(
management.contractRegistry(CONTRACT_LOCKUP)
);
internalAllocate(shareholders, shareholdersTokensAmount);
lockupContract.allocationLog(
shareholders,
shareholdersTokensAmount.div(5),
0,
SIX_MONTHS,
0,
SIX_MONTHS
);
lockupContract.allocationLog(
shareholders,
shareholdersTokensAmount.sub(shareholdersTokensAmount.div(5)),
0,
uint256(48).mul(MONTH_IN_SECONDS),
0,
YEAR_IN_SECONDS
);
internalAllocate(managementTeam, managementTeamTokensAmount);
lockupContract.allocationLog(
managementTeam,
managementTeamTokensAmount.mul(2).div(5),
0,
SIX_MONTHS,
50,
SIX_MONTHS
);
lockupContract.allocationLog(
managementTeam,
managementTeamTokensAmount.sub(
managementTeamTokensAmount.mul(2).div(5)
),
0,
uint256(36).mul(MONTH_IN_SECONDS),
0,
YEAR_IN_SECONDS
);
}
function allocateTokensWithManualUnlock() private {
LockupContract lockupContract = LockupContract(
management.contractRegistry(CONTRACT_LOCKUP)
);
internalAllocate(
pharmaIndustrialTrials,
pharmaIndustrialTrialsTokensAmount
);
lockupContract.setManuallyLockedForAddress(
pharmaIndustrialTrials,
pharmaIndustrialTrialsTokensAmount
);
internalAllocate(teamIncentive, teamIncentiveTokensAmount);
lockupContract.setManuallyLockedForAddress(
teamIncentive,
teamIncentiveTokensAmount
);
}
}
// File: contracts/CLIToken.sol
pragma solidity 0.5.17;
contract CLIToken is ERC20, ERC20Detailed, Managed {
modifier requireUnlockedBalance(
address _address,
uint256 _value,
uint256 _time,
uint256 _holderBalance
) {
require(
LockupContract(
management.contractRegistry(CONTRACT_LOCKUP)
).isTransferAllowed(
_address,
_value,
_time,
_holderBalance
),
ERROR_NOT_AVAILABLE
);
_;
}
constructor(
address _management
)
public
ERC20Detailed("ClinTex", "CTI", 18)
Managed(_management)
{
_mint(0x8FAE27b50457C10556C45798c34f73AE263282a6, 151000000000000000);
}
function mint(
address _account,
uint256 _amount
)
public
requirePermission(CAN_MINT_TOKENS)
canCallOnlyRegisteredContract(CONTRACT_ALLOCATOR)
returns (bool)
{
require(
_amount <= CLIAllocator(
management.contractRegistry(CONTRACT_ALLOCATOR)
).tokensAvailable(totalSupply()),
ERROR_WRONG_AMOUNT
);
_mint(_account, _amount);
return true;
}
function transfer(
address _to,
uint256 _tokens
)
public
requireUnlockedBalance(
msg.sender,
_tokens,
block.timestamp,
balanceOf(msg.sender)
)
returns (bool)
{
super.transfer(_to, _tokens);
return true;
}
function transferFrom(
address _holder,
address _to,
uint256 _tokens
)
public
requireUnlockedBalance(
_holder,
_tokens,
block.timestamp,
balanceOf(_holder)
)
returns (bool)
{
super.transferFrom(_holder, _to, _tokens);
return true;
}
function burn(uint256 value)
public
requirePermission(CAN_BURN_TOKENS)
requireUnlockedBalance(
msg.sender,
value,
block.timestamp,
balanceOf(msg.sender)
)
{
require(balanceOf(msg.sender) >= value, ERROR_WRONG_AMOUNT);
super._burn(msg.sender, value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_management","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"CAN_ALLOCATE_REFERRAL_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_BURN_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_CANCEL_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_INTERACT_WITH_ALLOCATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_LOCK_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_MINT_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_PAUSE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_SEE_BALANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_SET_ALLOCATOR_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_SET_REFERRAL_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_SET_WHITELISTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_UPDATE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CAN_UPDATE_STATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_AGENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_ALLOCATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_CROWDSALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_FORWARDER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_LOCKUP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_PRICING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_REFERRAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_STATS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRACT_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ECLIUDED_ADDRESSES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ERROR_ACCESS_DENIED","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ERROR_NOT_AVAILABLE","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ERROR_NO_CONTRACT","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ERROR_WRONG_AMOUNT","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EXTERNAL_CONTRIBUTORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MANUAL_TOKENS_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MONTH_IN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SIGNERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SIX_MONTHS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"WHITELISTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"YEAR_IN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"management","outputs":[{"internalType":"contract Management","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_management","type":"address"}],"name":"setManagementContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b5060405162003a5538038062003a55833981810160405260208110156200003757600080fd5b8101908080519060200190929190505050806040518060400160405280600781526020017f436c696e546578000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435449000000000000000000000000000000000000000000000000000000000081525060128260039080519060200190620000cf9291906200048a565b508160049080519060200190620000e89291906200048a565b5080600560006101000a81548160ff021916908360ff1602179055505050506000620001196200022f60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000228738fae27b50457c10556c45798c34f73ae263282a667021875b3311580006200023760201b60201c565b5062000539565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002f7816002546200040160201b620029621790919060201c565b60028190555062000355816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200040160201b620029621790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082840190508381101562000480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004cd57805160ff1916838001178555620004fe565b82800160010185558215620004fe579182015b82811115620004fd578251825591602001919060010190620004e0565b5b5090506200050d919062000511565b5090565b6200053691905b808211156200053257600081600090555060010162000518565b5090565b90565b61350c80620005496000396000f3fe608060405234801561001057600080fd5b50600436106103275760003560e01c80637a05dfb8116101b8578063bbb998dc11610104578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610dcb578063f4ad386914610e0f578063fb4a45cf14610e2d578063fc1e7c6314610eb057610327565b8063dd62ed3e14610cb2578063e5e2003c14610d2a578063eedd93ad14610dad57610327565b8063c7b9fbea116100de578063c7b9fbea14610c3a578063c89c916614610c58578063d3a8388f14610c76578063d7d98dff14610c9457610327565b8063bbb998dc14610b7b578063bdc89f2214610b99578063c0e6249c14610bb757610327565b8063985eb07111610171578063a9059cbb1161014b578063a9059cbb14610abb578063ad92544914610b21578063b3733cae14610b3f578063ba579c7414610b5d57610327565b8063985eb07114610a19578063a457c2d714610a37578063a4f54d1c14610a9d57610327565b80637a05dfb81461083f57806388a8d602146108c25780638b52100d1461090c5780638da5cb5b1461092a5780638f32d59b1461097457806395d89b411461099657610327565b806340c10f191161027757806368fc875111610230578063715018a61161020a578063715018a6146107db5780637171225c146107e55780637847ea531461080357806379327b421461082157610327565b806368fc8751146107475780636c01e7ff1461076557806370a082311461078357610327565b806340c10f191461063b57806342966c68146106a15780635538640e146106cf5780635e16ea85146106ed5780635e3501b91461070b5780635e4912ac1461072957610327565b806318160ddd116102e457806323b872dd116102be57806323b872dd1461050d57806330e49a4714610593578063313ce567146105b157806339509351146105d557610327565b806318160ddd1461048d5780631d246d4c146104ab5780631df77caa146104c957610327565b8063011ae3211461032c57806306fdde031461034a578063095ea7b3146103cd5780630b71f116146104335780630c2b54e114610451578063174896b71461046f575b600080fd5b610334610ece565b6040518082815260200191505060405180910390f35b610352610ed3565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610392578082015181840152602081019050610377565b50505050905090810190601f1680156103bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610419600480360360408110156103e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f75565b604051808215151515815260200191505060405180910390f35b61043b610f93565b6040518082815260200191505060405180910390f35b610459610f98565b6040518082815260200191505060405180910390f35b610477610f9d565b6040518082815260200191505060405180910390f35b610495610fa2565b6040518082815260200191505060405180910390f35b6104b3610fac565b6040518082815260200191505060405180910390f35b61050b600480360360208110156104df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb1565b005b6105796004803603606081101561052357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061117d565b604051808215151515815260200191505060405180910390f35b61059b611401565b6040518082815260200191505060405180910390f35b6105b9611406565b604051808260ff1660ff16815260200191505060405180910390f35b610621600480360360408110156105eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141d565b604051808215151515815260200191505060405180910390f35b6106876004803603604081101561065157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d0565b604051808215151515815260200191505060405180910390f35b6106cd600480360360208110156106b757600080fd5b81019080803590602001909291905050506119ac565b005b6106d7611df7565b6040518082815260200191505060405180910390f35b6106f5611dfc565b6040518082815260200191505060405180910390f35b610713611e01565b6040518082815260200191505060405180910390f35b610731611e06565b6040518082815260200191505060405180910390f35b61074f611e0b565b6040518082815260200191505060405180910390f35b61076d611e10565b6040518082815260200191505060405180910390f35b6107c56004803603602081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e15565b6040518082815260200191505060405180910390f35b6107e3611e5d565b005b6107ed611f98565b6040518082815260200191505060405180910390f35b61080b611f9f565b6040518082815260200191505060405180910390f35b610829611fa7565b6040518082815260200191505060405180910390f35b610847611fac565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561088757808201518184015260208101905061086c565b50505050905090810190601f1680156108b45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108ca611fe5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61091461200b565b6040518082815260200191505060405180910390f35b610932612010565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61097c61203a565b604051808215151515815260200191505060405180910390f35b61099e612099565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109de5780820151818401526020810190506109c3565b50505050905090810190601f168015610a0b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a2161213b565b6040518082815260200191505060405180910390f35b610a8360048036036040811015610a4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612140565b604051808215151515815260200191505060405180910390f35b610aa561220d565b6040518082815260200191505060405180910390f35b610b0760048036036040811015610ad157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612212565b604051808215151515815260200191505060405180910390f35b610b29612494565b6040518082815260200191505060405180910390f35b610b47612499565b6040518082815260200191505060405180910390f35b610b6561249e565b6040518082815260200191505060405180910390f35b610b836124a5565b6040518082815260200191505060405180910390f35b610ba16124aa565b6040518082815260200191505060405180910390f35b610bbf6124af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bff578082015181840152602081019050610be4565b50505050905090810190601f168015610c2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c426124e8565b6040518082815260200191505060405180910390f35b610c606124ed565b6040518082815260200191505060405180910390f35b610c7e6124f2565b6040518082815260200191505060405180910390f35b610c9c6124f7565b6040518082815260200191505060405180910390f35b610d1460048036036040811015610cc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124fc565b6040518082815260200191505060405180910390f35b610d32612583565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d72578082015181840152602081019050610d57565b50505050905090810190601f168015610d9f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db56125bc565b6040518082815260200191505060405180910390f35b610e0d60048036036020811015610de157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c1565b005b610e17612647565b6040518082815260200191505060405180910390f35b610e3561264c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e75578082015181840152602081019050610e5a565b50505050905090810190601f168015610ea25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610eb8612685565b6040518082815260200191505060405180910390f35b600181565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261268a565b8484612692565b6001905092915050565b600981565b600281565b600381565b6000600254905090565b600881565b610fb961203a565b61102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601181526020017f4552524f525f4e4f5f434f4e545241435400000000000000000000000000000081525090611138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110fd5780820151818401526020810190506110e2565b50505050905090810190601f16801561112a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600083824261118b87611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156111ff57600080fd5b505afa158015611213573d6000803e3d6000fd5b505050506040513d602081101561122957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b1580156112ce57600080fd5b505afa1580156112e2573d6000803e3d6000fd5b505050506040513d60208110156112f857600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c4500000000000000000000000000815250906113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113aa57808201518184015260208101905061138f565b50505050905090810190601f1680156113d75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506113f1888888612889565b5060019450505050509392505050565b600f81565b6000600560009054906101000a900460ff16905090565b60006114c661142a61268a565b846114c1856001600061143b61268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b612692565b6001905092915050565b6000806114dd33826129ea565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e49454400000000000000000000000000815250906115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561157e578082015181840152602081019050611563565b50505050905090810190601f1680156115ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506004600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d602081101561165957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525090611774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561173957808201518184015260208101905061171e565b50505050905090810190601f1680156117665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60046040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156117e957600080fd5b505afa1580156117fd573d6000803e3d6000fd5b505050506040513d602081101561181357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166398ba6219611847610fa2565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561187b57600080fd5b505afa15801561188f573d6000803e3d6000fd5b505050506040513d60208110156118a557600080fd5b81019080805190602001909291905050508411156040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525090611995576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561195a57808201518184015260208101905061193f565b50505050905090810190601f1680156119875780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506119a08585612ad6565b60019250505092915050565b60016119b833826129ea565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525090611a94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a59578082015181840152602081019050611a3e565b50505050905090810190601f168015611a865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50338242611aa133611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611b1557600080fd5b505afa158015611b29573d6000803e3d6000fd5b505050506040513d6020811015611b3f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611be457600080fd5b505afa158015611bf8573d6000803e3d6000fd5b505050506040513d6020811015611c0e57600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c450000000000000000000000000081525090611cfb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cc0578082015181840152602081019050611ca5565b50505050905090810190601f168015611ced5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5085611d0633611e15565b10156040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525090611de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611da9578082015181840152602081019050611d8e565b50505050905090810190601f168015611dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611def3387612c91565b505050505050565b600b81565b600581565b600c81565b600081565b601081565b600781565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e6561203a565b611ed7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6228207281565b6301e1855881565b600281565b6040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c450000000000000000000000000081525081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e81565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661207d61268a565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121315780601f1061210657610100808354040283529160200191612131565b820191906000526020600020905b81548152906001019060200180831161211457829003601f168201915b5050505050905090565b600681565b600061220361214d61268a565b846121fe856040518060600160405280602581526020016134b3602591396001600061217761268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b612692565b6001905092915050565b600481565b600033824261222033611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561229457600080fd5b505afa1580156122a8573d6000803e3d6000fd5b505050506040513d60208110156122be57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561236357600080fd5b505afa158015612377573d6000803e3d6000fd5b505050506040513d602081101561238d57600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c45000000000000000000000000008152509061247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561243f578082015181840152602081019050612424565b50505050905090810190601f16801561246c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506124858787612f09565b50600194505050505092915050565b600d81565b600881565b62f0c2ac81565b600681565b600381565b6040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525081565b600781565b600581565b600a81565b601181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280601181526020017f4552524f525f4e4f5f434f4e545241435400000000000000000000000000000081525081565b600481565b6125c961203a565b61263b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61264481612f27565b50565b600181565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525081565b600981565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061348f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133d96022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061289684848461306d565b612957846128a261268a565b6129528560405180606001604052806028815260200161342160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061290861268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b612692565b600190509392505050565b6000808284019050838110156129e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e9d79b0e84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015612a9357600080fd5b505afa158015612aa7573d6000803e3d6000fd5b505050506040513d6020811015612abd57600080fd5b8101908080519060200190929190505050905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b8e8160025461296290919063ffffffff16565b600281905550612be5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134496021913960400191505060405180910390fd5b612d8281604051806060016040528060228152602001613391602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dd98160025461332390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ebb578082015181840152602081019050612ea0565b50505050905090810190601f168015612ee85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000612f1d612f1661268a565b848461306d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133b36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061346a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061336e6023913960400191505060405180910390fd5b6131e4816040518060600160405280602681526020016133fb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613277816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061336583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e49565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582060bc58db6373d43139c50a2e07bc476b7f0a30f0d88b3092757230d1e8ebf56964736f6c634300051100320000000000000000000000005475379562cff40032733220128e8d58a917e058
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103275760003560e01c80637a05dfb8116101b8578063bbb998dc11610104578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610dcb578063f4ad386914610e0f578063fb4a45cf14610e2d578063fc1e7c6314610eb057610327565b8063dd62ed3e14610cb2578063e5e2003c14610d2a578063eedd93ad14610dad57610327565b8063c7b9fbea116100de578063c7b9fbea14610c3a578063c89c916614610c58578063d3a8388f14610c76578063d7d98dff14610c9457610327565b8063bbb998dc14610b7b578063bdc89f2214610b99578063c0e6249c14610bb757610327565b8063985eb07111610171578063a9059cbb1161014b578063a9059cbb14610abb578063ad92544914610b21578063b3733cae14610b3f578063ba579c7414610b5d57610327565b8063985eb07114610a19578063a457c2d714610a37578063a4f54d1c14610a9d57610327565b80637a05dfb81461083f57806388a8d602146108c25780638b52100d1461090c5780638da5cb5b1461092a5780638f32d59b1461097457806395d89b411461099657610327565b806340c10f191161027757806368fc875111610230578063715018a61161020a578063715018a6146107db5780637171225c146107e55780637847ea531461080357806379327b421461082157610327565b806368fc8751146107475780636c01e7ff1461076557806370a082311461078357610327565b806340c10f191461063b57806342966c68146106a15780635538640e146106cf5780635e16ea85146106ed5780635e3501b91461070b5780635e4912ac1461072957610327565b806318160ddd116102e457806323b872dd116102be57806323b872dd1461050d57806330e49a4714610593578063313ce567146105b157806339509351146105d557610327565b806318160ddd1461048d5780631d246d4c146104ab5780631df77caa146104c957610327565b8063011ae3211461032c57806306fdde031461034a578063095ea7b3146103cd5780630b71f116146104335780630c2b54e114610451578063174896b71461046f575b600080fd5b610334610ece565b6040518082815260200191505060405180910390f35b610352610ed3565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610392578082015181840152602081019050610377565b50505050905090810190601f1680156103bf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610419600480360360408110156103e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f75565b604051808215151515815260200191505060405180910390f35b61043b610f93565b6040518082815260200191505060405180910390f35b610459610f98565b6040518082815260200191505060405180910390f35b610477610f9d565b6040518082815260200191505060405180910390f35b610495610fa2565b6040518082815260200191505060405180910390f35b6104b3610fac565b6040518082815260200191505060405180910390f35b61050b600480360360208110156104df57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fb1565b005b6105796004803603606081101561052357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061117d565b604051808215151515815260200191505060405180910390f35b61059b611401565b6040518082815260200191505060405180910390f35b6105b9611406565b604051808260ff1660ff16815260200191505060405180910390f35b610621600480360360408110156105eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061141d565b604051808215151515815260200191505060405180910390f35b6106876004803603604081101561065157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d0565b604051808215151515815260200191505060405180910390f35b6106cd600480360360208110156106b757600080fd5b81019080803590602001909291905050506119ac565b005b6106d7611df7565b6040518082815260200191505060405180910390f35b6106f5611dfc565b6040518082815260200191505060405180910390f35b610713611e01565b6040518082815260200191505060405180910390f35b610731611e06565b6040518082815260200191505060405180910390f35b61074f611e0b565b6040518082815260200191505060405180910390f35b61076d611e10565b6040518082815260200191505060405180910390f35b6107c56004803603602081101561079957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e15565b6040518082815260200191505060405180910390f35b6107e3611e5d565b005b6107ed611f98565b6040518082815260200191505060405180910390f35b61080b611f9f565b6040518082815260200191505060405180910390f35b610829611fa7565b6040518082815260200191505060405180910390f35b610847611fac565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561088757808201518184015260208101905061086c565b50505050905090810190601f1680156108b45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108ca611fe5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61091461200b565b6040518082815260200191505060405180910390f35b610932612010565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61097c61203a565b604051808215151515815260200191505060405180910390f35b61099e612099565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156109de5780820151818401526020810190506109c3565b50505050905090810190601f168015610a0b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a2161213b565b6040518082815260200191505060405180910390f35b610a8360048036036040811015610a4d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612140565b604051808215151515815260200191505060405180910390f35b610aa561220d565b6040518082815260200191505060405180910390f35b610b0760048036036040811015610ad157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612212565b604051808215151515815260200191505060405180910390f35b610b29612494565b6040518082815260200191505060405180910390f35b610b47612499565b6040518082815260200191505060405180910390f35b610b6561249e565b6040518082815260200191505060405180910390f35b610b836124a5565b6040518082815260200191505060405180910390f35b610ba16124aa565b6040518082815260200191505060405180910390f35b610bbf6124af565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bff578082015181840152602081019050610be4565b50505050905090810190601f168015610c2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c426124e8565b6040518082815260200191505060405180910390f35b610c606124ed565b6040518082815260200191505060405180910390f35b610c7e6124f2565b6040518082815260200191505060405180910390f35b610c9c6124f7565b6040518082815260200191505060405180910390f35b610d1460048036036040811015610cc857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124fc565b6040518082815260200191505060405180910390f35b610d32612583565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d72578082015181840152602081019050610d57565b50505050905090810190601f168015610d9f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610db56125bc565b6040518082815260200191505060405180910390f35b610e0d60048036036020811015610de157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125c1565b005b610e17612647565b6040518082815260200191505060405180910390f35b610e3561264c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e75578082015181840152602081019050610e5a565b50505050905090810190601f168015610ea25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610eb8612685565b6040518082815260200191505060405180910390f35b600181565b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261268a565b8484612692565b6001905092915050565b600981565b600281565b600381565b6000600254905090565b600881565b610fb961203a565b61102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff1614156040518060400160405280601181526020017f4552524f525f4e4f5f434f4e545241435400000000000000000000000000000081525090611138576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156110fd5780820151818401526020810190506110e2565b50505050905090810190601f16801561112a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600083824261118b87611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156111ff57600080fd5b505afa158015611213573d6000803e3d6000fd5b505050506040513d602081101561122957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b1580156112ce57600080fd5b505afa1580156112e2573d6000803e3d6000fd5b505050506040513d60208110156112f857600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c4500000000000000000000000000815250906113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113aa57808201518184015260208101905061138f565b50505050905090810190601f1680156113d75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506113f1888888612889565b5060019450505050509392505050565b600f81565b6000600560009054906101000a900460ff16905090565b60006114c661142a61268a565b846114c1856001600061143b61268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b612692565b6001905092915050565b6000806114dd33826129ea565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e49454400000000000000000000000000815250906115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561157e578082015181840152602081019050611563565b50505050905090810190601f1680156115ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506004600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a826040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d602081101561165957600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525090611774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561173957808201518184015260208101905061171e565b50505050905090810190601f1680156117665780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60046040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156117e957600080fd5b505afa1580156117fd573d6000803e3d6000fd5b505050506040513d602081101561181357600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166398ba6219611847610fa2565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561187b57600080fd5b505afa15801561188f573d6000803e3d6000fd5b505050506040513d60208110156118a557600080fd5b81019080805190602001909291905050508411156040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525090611995576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561195a57808201518184015260208101905061193f565b50505050905090810190601f1680156119875780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506119a08585612ad6565b60019250505092915050565b60016119b833826129ea565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525090611a94576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a59578082015181840152602081019050611a3e565b50505050905090810190601f168015611a865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50338242611aa133611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015611b1557600080fd5b505afa158015611b29573d6000803e3d6000fd5b505050506040513d6020811015611b3f57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611be457600080fd5b505afa158015611bf8573d6000803e3d6000fd5b505050506040513d6020811015611c0e57600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c450000000000000000000000000081525090611cfb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cc0578082015181840152602081019050611ca5565b50505050905090810190601f168015611ced5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5085611d0633611e15565b10156040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525090611de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611da9578082015181840152602081019050611d8e565b50505050905090810190601f168015611dd65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611def3387612c91565b505050505050565b600b81565b600581565b600c81565b600081565b601081565b600781565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e6561203a565b611ed7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6228207281565b6301e1855881565b600281565b6040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c450000000000000000000000000081525081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e81565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661207d61268a565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121315780601f1061210657610100808354040283529160200191612131565b820191906000526020600020905b81548152906001019060200180831161211457829003601f168201915b5050505050905090565b600681565b600061220361214d61268a565b846121fe856040518060600160405280602581526020016134b3602591396001600061217761268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b612692565b6001905092915050565b600481565b600033824261222033611e15565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b110205a60096040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561229457600080fd5b505afa1580156122a8573d6000803e3d6000fd5b505050506040513d60208110156122be57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff166345c6ef4d858585856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060206040518083038186803b15801561236357600080fd5b505afa158015612377573d6000803e3d6000fd5b505050506040513d602081101561238d57600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f4552524f525f4e4f545f415641494c41424c45000000000000000000000000008152509061247a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561243f578082015181840152602081019050612424565b50505050905090810190601f16801561246c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506124858787612f09565b50600194505050505092915050565b600d81565b600881565b62f0c2ac81565b600681565b600381565b6040518060400160405280601281526020017f4552524f525f57524f4e475f414d4f554e54000000000000000000000000000081525081565b600781565b600581565b600a81565b601181565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6040518060400160405280601181526020017f4552524f525f4e4f5f434f4e545241435400000000000000000000000000000081525081565b600481565b6125c961203a565b61263b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61264481612f27565b50565b600181565b6040518060400160405280601381526020017f4552524f525f4143434553535f44454e4945440000000000000000000000000081525081565b600981565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061348f6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806133d96022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600061289684848461306d565b612957846128a261268a565b6129528560405180606001604052806028815260200161342160289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061290861268a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b612692565b600190509392505050565b6000808284019050838110156129e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e9d79b0e84846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b158015612a9357600080fd5b505afa158015612aa7573d6000803e3d6000fd5b505050506040513d6020811015612abd57600080fd5b8101908080519060200190929190505050905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612b8e8160025461296290919063ffffffff16565b600281905550612be5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d17576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806134496021913960400191505060405180910390fd5b612d8281604051806060016040528060228152602001613391602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612dd98160025461332390919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000838311158290612ef6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612ebb578082015181840152602081019050612ea0565b50505050905090810190601f168015612ee85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000612f1d612f1661268a565b848461306d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806133b36026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061346a6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061336e6023913960400191505060405180910390fd5b6131e4816040518060600160405280602681526020016133fb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612e499092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613277816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461296290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600061336583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e49565b90509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582060bc58db6373d43139c50a2e07bc476b7f0a30f0d88b3092757230d1e8ebf56964736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005475379562cff40032733220128e8d58a917e058
-----Decoded View---------------
Arg [0] : _management (address): 0x5475379562CfF40032733220128e8D58A917E058
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005475379562cff40032733220128e8d58a917e058
Deployed Bytecode Sourcemap
43526:2411:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43526:2411:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22232:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3592:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;3592:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13790:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13790:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22663:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23242:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22333:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12811:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22610:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26486:190;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26486:190:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;45177:382;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45177:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22982:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4444:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15127:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15127:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44317:499;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44317:499:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45567:367;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45567:367:0;;;;;;;;;;;;;;;;;:::i;:::-;;22752:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22434:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22809:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22182:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23045:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23501:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12965:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12965:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21301:140;;;:::i;:::-;;23764:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23654;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22282:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24036:66;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;24036:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25722:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22918:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20490:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20856:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;3794:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;3794:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23448:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15840:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15840:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23346:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44824:345;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44824:345:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22860:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23553:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23711:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22496:56;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23293:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23896:64;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23896:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22559:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23399:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22709:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23105:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13509:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13509:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23967:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23967:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22383:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21596:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21596:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;23193:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23823:66;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;23823:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23602:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22232;22274:1;22232:43;:::o;3592:83::-;3629:13;3662:5;3655:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3592:83;:::o;13790:152::-;13856:4;13873:39;13882:12;:10;:12::i;:::-;13896:7;13905:6;13873:8;:39::i;:::-;13930:4;13923:11;;13790:152;;;;:::o;22663:39::-;22701:1;22663:39;:::o;23242:44::-;23285:1;23242:44;:::o;22333:43::-;22375:1;22333:43;:::o;12811:91::-;12855:7;12882:12;;12875:19;;12811:91;:::o;22610:46::-;22655:1;22610:46;:::o;26486:190::-;20702:9;:7;:9::i;:::-;20694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26588:11;26574:25;;26582:1;26574:25;;;;26601:17;;;;;;;;;;;;;;;;;26566:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;26566:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26656:11;26632:10;;:36;;;;;;;;;;;;;;;;;;26486:190;:::o;45177:382::-;45464:4;45342:7;45364;45386:15;45416:18;45426:7;45416:9;:18::i;:::-;43802:10;;;;;;;;;;;:27;;;23644:1;43802:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43802:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43802:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43802:44:0;;;;;;;;;;;;;;;;43769:110;;;43898:8;43925:6;43950:5;43974:14;43769:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43769:234:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43769:234:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43769:234:0;;;;;;;;;;;;;;;;44018:19;;;;;;;;;;;;;;;;;43747:301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;43747:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45486:41;45505:7;45514:3;45519:7;45486:18;:41::i;:::-;;45547:4;45540:11;;45177:382;;;;;;;;;:::o;22982:56::-;23036:2;22982:56;:::o;4444:83::-;4485:5;4510:9;;;;;;;;;;;4503:16;;4444:83;:::o;15127:210::-;15207:4;15224:83;15233:12;:10;:12::i;:::-;15247:7;15256:50;15295:10;15256:11;:25;15268:12;:10;:12::i;:::-;15256:25;;;;;;;;;;;;;;;:34;15282:7;15256:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15224:8;:83::i;:::-;15325:4;15318:11;;15127:210;;;;:::o;44317:499::-;44528:4;22224:1;25843:41;25857:10;25869:14;25843:13;:41::i;:::-;25899:19;;;;;;;;;;;;;;;;;25821:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;25821:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23391:1;26057:10;;;;;;;;;;;:27;;;26085:4;26057:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26057:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26057:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26057:33:0;;;;;;;;;;;;;;;;26043:47;;:10;:47;;;26105:19;;;;;;;;;;;;;;;;;26021:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;26021:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44614:10;;;;;;;;;;;:27;;;23391:1;44614:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44614:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44614:47:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44614:47:0;;;;;;;;;;;;;;;;44583:109;;;44693:13;:11;:13::i;:::-;44583:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44583:124:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44583:124:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44583:124:0;;;;;;;;;;;;;;;;44572:7;:135;;44722:18;;;;;;;;;;;;;;;;;44550:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;44550:201:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44762:24;44768:8;44778:7;44762:5;:24::i;:::-;44804:4;44797:11;;25940:1;44317:499;;;;;:::o;45567:367::-;22274:1;25843:41;25857:10;25869:14;25843:13;:41::i;:::-;25899:19;;;;;;;;;;;;;;;;;25821:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;25821:108:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45702:10;45727:5;45747:15;45777:21;45787:10;45777:9;:21::i;:::-;43802:10;;;;;;;;;;;:27;;;23644:1;43802:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43802:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43802:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43802:44:0;;;;;;;;;;;;;;;;43769:110;;;43898:8;43925:6;43950:5;43974:14;43769:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43769:234:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43769:234:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43769:234:0;;;;;;;;;;;;;;;;44018:19;;;;;;;;;;;;;;;;;43747:301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;43747:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45859:5;45834:21;45844:10;45834:9;:21::i;:::-;:30;;45866:18;;;;;;;;;;;;;;;;;45826:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;45826:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45896:30;45908:10;45920:5;45896:11;:30::i;:::-;25940:1;;;;45567:367;;:::o;22752:50::-;22800:2;22752:50;:::o;22434:55::-;22488:1;22434:55;:::o;22809:44::-;22851:2;22809:44;:::o;22182:43::-;22224:1;22182:43;:::o;23045:53::-;23096:2;23045:53;:::o;23501:45::-;23545:1;23501:45;:::o;12965:110::-;13022:7;13049:9;:18;13059:7;13049:18;;;;;;;;;;;;;;;;13042:25;;12965:110;;;:::o;21301:140::-;20702:9;:7;:9::i;:::-;20694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21400:1;21363:40;;21384:6;;;;;;;;;;;21363:40;;;;;;;;;;;;21431:1;21414:6;;:19;;;;;;;;;;;;;;;;;;21301:140::o;23764:50::-;23807:7;23764:50;:::o;23654:::-;23696:8;23654:50;:::o;22282:44::-;22325:1;22282:44;:::o;24036:66::-;;;;;;;;;;;;;;;;;;;:::o;25722:28::-;;;;;;;;;;;;;:::o;22918:57::-;22973:2;22918:57;:::o;20490:79::-;20528:7;20555:6;;;;;;;;;;;20548:13;;20490:79;:::o;20856:94::-;20896:4;20936:6;;;;;;;;;;;20920:22;;:12;:10;:12::i;:::-;:22;;;20913:29;;20856:94;:::o;3794:87::-;3833:13;3866:7;3859:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3794:87;:::o;23448:46::-;23493:1;23448:46;:::o;15840:261::-;15925:4;15942:129;15951:12;:10;:12::i;:::-;15965:7;15974:96;16013:15;15974:96;;;;;;;;;;;;;;;;;:11;:25;15986:12;:10;:12::i;:::-;15974:25;;;;;;;;;;;;;;;:34;16000:7;15974:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15942:8;:129::i;:::-;16089:4;16082:11;;15840:261;;;;:::o;23346:46::-;23391:1;23346:46;:::o;44824:345::-;45087:4;44959:10;44984:7;45006:15;45036:21;45046:10;45036:9;:21::i;:::-;43802:10;;;;;;;;;;;:27;;;23644:1;43802:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43802:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43802:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43802:44:0;;;;;;;;;;;;;;;;43769:110;;;43898:8;43925:6;43950:5;43974:14;43769:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43769:234:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;43769:234:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43769:234:0;;;;;;;;;;;;;;;;44018:19;;;;;;;;;;;;;;;;;43747:301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;43747:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45109:28;45124:3;45129:7;45109:14;:28::i;:::-;;45157:4;45150:11;;44824:345;;;;;;;;:::o;22860:51::-;22909:2;22860:51;:::o;23553:42::-;23594:1;23553:42;:::o;23711:46::-;23749:8;23711:46;:::o;22496:56::-;22551:1;22496:56;:::o;23293:46::-;23338:1;23293:46;:::o;23896:64::-;;;;;;;;;;;;;;;;;;;:::o;22559:44::-;22602:1;22559:44;:::o;23399:42::-;23440:1;23399:42;:::o;22709:36::-;22743:2;22709:36;:::o;23105:48::-;23151:2;23105:48;:::o;13509:134::-;13581:7;13608:11;:18;13620:5;13608:18;;;;;;;;;;;;;;;:27;13627:7;13608:27;;;;;;;;;;;;;;;;13601:34;;13509:134;;;;:::o;23967:62::-;;;;;;;;;;;;;;;;;;;:::o;22383:44::-;22426:1;22383:44;:::o;21596:109::-;20702:9;:7;:9::i;:::-;20694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21669:28;21688:8;21669:18;:28::i;:::-;21596:109;:::o;23193:42::-;23234:1;23193:42;:::o;23823:66::-;;;;;;;;;;;;;;;;;;;:::o;23602:43::-;23644:1;23602:43;:::o;5392:98::-;5437:15;5472:10;5465:17;;5392:98;:::o;18771:338::-;18882:1;18865:19;;:5;:19;;;;18857:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18963:1;18944:21;;:7;:21;;;;18936:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19047:6;19017:11;:18;19029:5;19017:18;;;;;;;;;;;;;;;:27;19036:7;19017:27;;;;;;;;;;;;;;;:36;;;;19085:7;19069:32;;19078:5;19069:32;;;19094:6;19069:32;;;;;;;;;;;;;;;;;;18771:338;;;:::o;14414:304::-;14503:4;14520:36;14530:6;14538:9;14549:6;14520:9;:36::i;:::-;14567:121;14576:6;14584:12;:10;:12::i;:::-;14598:89;14636:6;14598:89;;;;;;;;;;;;;;;;;:11;:19;14610:6;14598:19;;;;;;;;;;;;;;;:33;14618:12;:10;:12::i;:::-;14598:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14567:8;:121::i;:::-;14706:4;14699:11;;14414:304;;;;;:::o;6643:181::-;6701:7;6721:9;6737:1;6733;:5;6721:17;;6762:1;6757;:6;;6749:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6815:1;6808:8;;;6643:181;;;;:::o;26684:200::-;26799:4;26828:10;;;;;;;;;;;:22;;;26851:8;26861:14;26828:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26828:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26828:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26828:48:0;;;;;;;;;;;;;;;;26821:55;;26684:200;;;;:::o;17343:308::-;17438:1;17419:21;;:7;:21;;;;17411:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17504:24;17521:6;17504:12;;:16;;:24;;;;:::i;:::-;17489:12;:39;;;;17560:30;17583:6;17560:9;:18;17570:7;17560:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17539:9;:18;17549:7;17539:18;;;;;;;;;;;;;;;:51;;;;17627:7;17606:37;;17623:1;17606:37;;;17636:6;17606:37;;;;;;;;;;;;;;;;;;17343:308;;:::o;17983:348::-;18078:1;18059:21;;:7;:21;;;;18051:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18152:68;18175:6;18152:68;;;;;;;;;;;;;;;;;:9;:18;18162:7;18152:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18131:9;:18;18141:7;18131:18;;;;;;;;;;;;;;;:89;;;;18246:24;18263:6;18246:12;;:16;;:24;;;;:::i;:::-;18231:12;:39;;;;18312:1;18286:37;;18295:7;18286:37;;;18316:6;18286:37;;;;;;;;;;;;;;;;;;17983:348;;:::o;7572:192::-;7658:7;7691:1;7686;:6;;7694:12;7678: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;7678:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7718:9;7734:1;7730;:5;7718:17;;7755:1;7748:8;;;7572:192;;;;;:::o;13288:158::-;13357:4;13374:42;13384:12;:10;:12::i;:::-;13398:9;13409:6;13374:9;:42::i;:::-;13434:4;13427:11;;13288:158;;;;:::o;21811:229::-;21905:1;21885:22;;:8;:22;;;;21877:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21995:8;21966:38;;21987:6;;;;;;;;;;;21966:38;;;;;;;;;;;;22024:8;22015:6;;:17;;;;;;;;;;;;;;;;;;21811:229;:::o;16591:471::-;16707:1;16689:20;;:6;:20;;;;16681:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16791:1;16770:23;;:9;:23;;;;16762:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16866;16888:6;16866:71;;;;;;;;;;;;;;;;;:9;:17;16876:6;16866:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16846:9;:17;16856:6;16846:17;;;;;;;;;;;;;;;:91;;;;16971:32;16996:6;16971:9;:20;16981:9;16971:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16948:9;:20;16958:9;16948:20;;;;;;;;;;;;;;;:55;;;;17036:9;17019:35;;17028:6;17019:35;;;17047:6;17019:35;;;;;;;;;;;;;;;;;;16591:471;;;:::o;7099:136::-;7157:7;7184:43;7188:1;7191;7184:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7177:50;;7099:136;;;;:::o
Swarm Source
bzzr://60bc58db6373d43139c50a2e07bc476b7f0a30f0d88b3092757230d1e8ebf569
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)