Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
9,758,945.4684636422093421 DEV
Holders
1,756 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$8,013.75
Circulating Supply Market Cap
$2,027.57
Other Info
Token Contract (WITH 18 Decimals)
Balance
30.453880892524398983 DEVValue
$0.03 ( ~9.39768622335374E-06 Eth) [0.0003%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | LBank | DEV-USDT | $0.0008 0.0000003 Eth | $1,038,722.00 1,281,163,027.240 DEV | 100.0000% |
2 | Uniswap V2 (Ethereum) | 0X5CAF454BA92E6F2C929DF14667EE360ED9FD5B26-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.086 0.0000353 Eth | $65.01 755.785 0X5CAF454BA92E6F2C929DF14667EE360ED9FD5B26 | 0.0001% |
Contract Name:
Dev
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-02-04 */ pragma solidity ^0.5.0; // prettier-ignore /** * @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); } /** * @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; } } // prettier-ignore /* * @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; } } /** * @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; } } /** * @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")); } } /** * @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]; } } 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); } } /** * @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; } } // prettier-ignore /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // prettier-ignore contract IGroup { function isGroup(address _addr) public view returns (bool); function addGroup(address _addr) external; function getGroupKey(address _addr) internal pure returns (bytes32) { return keccak256(abi.encodePacked("_group", _addr)); } } contract AddressValidator { string constant errorMessage = "this is illegal address"; function validateIllegalAddress(address _addr) external pure { require(_addr != address(0), errorMessage); } function validateGroup(address _addr, address _groupAddr) external view { require(IGroup(_groupAddr).isGroup(_addr), errorMessage); } function validateGroups( address _addr, address _groupAddr1, address _groupAddr2 ) external view { if (IGroup(_groupAddr1).isGroup(_addr)) { return; } require(IGroup(_groupAddr2).isGroup(_addr), errorMessage); } function validateAddress(address _addr, address _target) external pure { require(_addr == _target, errorMessage); } function validateAddresses( address _addr, address _target1, address _target2 ) external pure { if (_addr == _target1) { return; } require(_addr == _target2, errorMessage); } } contract UsingValidator { AddressValidator private _validator; constructor() public { _validator = new AddressValidator(); } function addressValidator() internal view returns (AddressValidator) { return _validator; } } contract Killable { address payable public _owner; constructor() internal { _owner = msg.sender; } function kill() public { require(msg.sender == _owner, "only owner method"); selfdestruct(_owner); } } /** * @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 { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @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; } } contract AddressConfig is Ownable, UsingValidator, Killable { address public token = 0x98626E2C9231f03504273d55f397409deFD4a093; address public allocator; address public allocatorStorage; address public withdraw; address public withdrawStorage; address public marketFactory; address public marketGroup; address public propertyFactory; address public propertyGroup; address public metricsGroup; address public metricsFactory; address public policy; address public policyFactory; address public policySet; address public policyGroup; address public lockup; address public lockupStorage; address public voteTimes; address public voteTimesStorage; address public voteCounter; address public voteCounterStorage; function setAllocator(address _addr) external onlyOwner { allocator = _addr; } function setAllocatorStorage(address _addr) external onlyOwner { allocatorStorage = _addr; } function setWithdraw(address _addr) external onlyOwner { withdraw = _addr; } function setWithdrawStorage(address _addr) external onlyOwner { withdrawStorage = _addr; } function setMarketFactory(address _addr) external onlyOwner { marketFactory = _addr; } function setMarketGroup(address _addr) external onlyOwner { marketGroup = _addr; } function setPropertyFactory(address _addr) external onlyOwner { propertyFactory = _addr; } function setPropertyGroup(address _addr) external onlyOwner { propertyGroup = _addr; } function setMetricsFactory(address _addr) external onlyOwner { metricsFactory = _addr; } function setMetricsGroup(address _addr) external onlyOwner { metricsGroup = _addr; } function setPolicyFactory(address _addr) external onlyOwner { policyFactory = _addr; } function setPolicyGroup(address _addr) external onlyOwner { policyGroup = _addr; } function setPolicySet(address _addr) external onlyOwner { policySet = _addr; } function setPolicy(address _addr) external { addressValidator().validateAddress(msg.sender, policyFactory); policy = _addr; } function setToken(address _addr) external onlyOwner { token = _addr; } function setLockup(address _addr) external onlyOwner { lockup = _addr; } function setLockupStorage(address _addr) external onlyOwner { lockupStorage = _addr; } function setVoteTimes(address _addr) external onlyOwner { voteTimes = _addr; } function setVoteTimesStorage(address _addr) external onlyOwner { voteTimesStorage = _addr; } function setVoteCounter(address _addr) external onlyOwner { voteCounter = _addr; } function setVoteCounterStorage(address _addr) external onlyOwner { voteCounterStorage = _addr; } } contract UsingConfig { AddressConfig private _config; constructor(address _addressConfig) public { _config = AddressConfig(_addressConfig); } function config() internal view returns (AddressConfig) { return _config; } function configAddress() external view returns (address) { return address(_config); } } // prettier-ignore contract PauserRole is Context { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(_msgSender()); } modifier onlyPauser() { require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(_msgSender()); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context, PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(_msgSender()); } } library Decimals { using SafeMath for uint256; uint120 private constant basisValue = 1000000000000000000; function outOf(uint256 _a, uint256 _b) internal pure returns (uint256 result) { if (_a == 0) { return 0; } uint256 a = _a.mul(basisValue); require(a > _b, "the denominator is too big"); return (a.div(_b)); } function basis() external pure returns (uint120) { return basisValue; } } // prettier-ignore contract IAllocator { function allocate(address _metrics) external; function calculatedCallback(address _metrics, uint256 _value) external; function beforeBalanceChange(address _property, address _from, address _to) external; function getRewardsAmount(address _property) external view returns (uint256); function allocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ) public pure returns ( // solium-disable-next-line indentation uint256 ); } contract EternalStorage { address private currentOwner = msg.sender; mapping(bytes32 => uint256) private uIntStorage; mapping(bytes32 => string) private stringStorage; mapping(bytes32 => address) private addressStorage; mapping(bytes32 => bytes32) private bytesStorage; mapping(bytes32 => bool) private boolStorage; mapping(bytes32 => int256) private intStorage; modifier onlyCurrentOwner() { require(msg.sender == currentOwner, "not current owner"); _; } function changeOwner(address _newOwner) external { require(msg.sender == currentOwner, "not current owner"); currentOwner = _newOwner; } // *** Getter Methods *** function getUint(bytes32 _key) external view returns (uint256) { return uIntStorage[_key]; } function getString(bytes32 _key) external view returns (string memory) { return stringStorage[_key]; } function getAddress(bytes32 _key) external view returns (address) { return addressStorage[_key]; } function getBytes(bytes32 _key) external view returns (bytes32) { return bytesStorage[_key]; } function getBool(bytes32 _key) external view returns (bool) { return boolStorage[_key]; } function getInt(bytes32 _key) external view returns (int256) { return intStorage[_key]; } // *** Setter Methods *** function setUint(bytes32 _key, uint256 _value) external onlyCurrentOwner { uIntStorage[_key] = _value; } function setString(bytes32 _key, string calldata _value) external onlyCurrentOwner { stringStorage[_key] = _value; } function setAddress(bytes32 _key, address _value) external onlyCurrentOwner { addressStorage[_key] = _value; } function setBytes(bytes32 _key, bytes32 _value) external onlyCurrentOwner { bytesStorage[_key] = _value; } function setBool(bytes32 _key, bool _value) external onlyCurrentOwner { boolStorage[_key] = _value; } function setInt(bytes32 _key, int256 _value) external onlyCurrentOwner { intStorage[_key] = _value; } // *** Delete Methods *** function deleteUint(bytes32 _key) external onlyCurrentOwner { delete uIntStorage[_key]; } function deleteString(bytes32 _key) external onlyCurrentOwner { delete stringStorage[_key]; } function deleteAddress(bytes32 _key) external onlyCurrentOwner { delete addressStorage[_key]; } function deleteBytes(bytes32 _key) external onlyCurrentOwner { delete bytesStorage[_key]; } function deleteBool(bytes32 _key) external onlyCurrentOwner { delete boolStorage[_key]; } function deleteInt(bytes32 _key) external onlyCurrentOwner { delete intStorage[_key]; } } contract UsingStorage is Ownable { address private _storage; modifier hasStorage() { require(_storage != address(0), "storage is not setted"); _; } function eternalStorage() internal view hasStorage returns (EternalStorage) { return EternalStorage(_storage); } function getStorageAddress() external view hasStorage returns (address) { return _storage; } function createStorage() external onlyOwner { require(_storage == address(0), "storage is setted"); EternalStorage tmp = new EternalStorage(); _storage = address(tmp); } function setStorage(address _storageAddress) external onlyOwner { _storage = _storageAddress; } function changeOwner(address newOwner) external onlyOwner { EternalStorage(_storage).changeOwner(newOwner); } } contract VoteTimesStorage is UsingStorage, UsingConfig, UsingValidator, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // Vote Times function getVoteTimes() external view returns (uint256) { return eternalStorage().getUint(getVoteTimesKey()); } function setVoteTimes(uint256 times) external { addressValidator().validateAddress(msg.sender, config().voteTimes()); return eternalStorage().setUint(getVoteTimesKey(), times); } function getVoteTimesKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_voteTimes")); } //Vote Times By Property function getVoteTimesByProperty(address _property) external view returns (uint256) { return eternalStorage().getUint(getVoteTimesByPropertyKey(_property)); } function setVoteTimesByProperty(address _property, uint256 times) external { addressValidator().validateAddress(msg.sender, config().voteTimes()); return eternalStorage().setUint( getVoteTimesByPropertyKey(_property), times ); } function getVoteTimesByPropertyKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_voteTimesByProperty", _property)); } } contract VoteTimes is UsingConfig, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addVoteTime() external { addressValidator().validateAddresses( msg.sender, config().marketFactory(), config().policyFactory() ); uint256 voteTimes = getStorage().getVoteTimes(); voteTimes = voteTimes.add(1); getStorage().setVoteTimes(voteTimes); } function addVoteTimesByProperty(address _property) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); uint256 voteTimesByProperty = getStorage().getVoteTimesByProperty( _property ); voteTimesByProperty = voteTimesByProperty.add(1); getStorage().setVoteTimesByProperty(_property, voteTimesByProperty); } function resetVoteTimesByProperty(address _property) external { addressValidator().validateAddresses( msg.sender, config().allocator(), config().propertyFactory() ); uint256 voteTimes = getStorage().getVoteTimes(); getStorage().setVoteTimesByProperty(_property, voteTimes); } function getAbstentionTimes(address _property) external view returns (uint256) { uint256 voteTimes = getStorage().getVoteTimes(); uint256 voteTimesByProperty = getStorage().getVoteTimesByProperty( _property ); return voteTimes.sub(voteTimesByProperty); } function getStorage() private view returns (VoteTimesStorage) { return VoteTimesStorage(config().voteTimesStorage()); } } // prettier-ignore contract VoteCounterStorage is UsingStorage, UsingConfig, UsingValidator, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // Already Vote Flg function setAlreadyVoteFlg( address _user, address _sender, address _property ) external { addressValidator().validateAddress(msg.sender, config().voteCounter()); bytes32 alreadyVoteKey = getAlreadyVoteKey(_user, _sender, _property); return eternalStorage().setBool(alreadyVoteKey, true); } function getAlreadyVoteFlg( address _user, address _sender, address _property ) external view returns (bool) { bytes32 alreadyVoteKey = getAlreadyVoteKey(_user, _sender, _property); return eternalStorage().getBool(alreadyVoteKey); } function getAlreadyVoteKey( address _sender, address _target, address _property ) private pure returns (bytes32) { return keccak256( abi.encodePacked("_alreadyVote", _sender, _target, _property) ); } // Agree Count function getAgreeCount(address _sender) external view returns (uint256) { return eternalStorage().getUint(getAgreeVoteCountKey(_sender)); } function setAgreeCount(address _sender, uint256 count) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().voteCounter()); eternalStorage().setUint(getAgreeVoteCountKey(_sender), count); } function getAgreeVoteCountKey(address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked(_sender, "_agreeVoteCount")); } // Opposite Count function getOppositeCount(address _sender) external view returns (uint256) { return eternalStorage().getUint(getOppositeVoteCountKey(_sender)); } function setOppositeCount(address _sender, uint256 count) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().voteCounter()); eternalStorage().setUint(getOppositeVoteCountKey(_sender), count); } function getOppositeVoteCountKey(address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked(_sender, "_oppositeVoteCount")); } } contract VoteCounter is UsingConfig, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addVoteCount(address _user, address _property, bool _agree) external { addressValidator().validateGroups( msg.sender, config().marketGroup(), config().policyGroup() ); bool alreadyVote = getStorage().getAlreadyVoteFlg( _user, msg.sender, _property ); require(alreadyVote == false, "already vote"); uint256 voteCount = getVoteCount(_user, _property); require(voteCount != 0, "vote count is 0"); getStorage().setAlreadyVoteFlg(_user, msg.sender, _property); if (_agree) { addAgreeCount(msg.sender, voteCount); } else { addOppositeCount(msg.sender, voteCount); } } function getAgreeCount(address _sender) external view returns (uint256) { return getStorage().getAgreeCount(_sender); } function getOppositeCount(address _sender) external view returns (uint256) { return getStorage().getOppositeCount(_sender); } function getVoteCount(address _sender, address _property) private returns (uint256) { uint256 voteCount; if (Property(_property).author() == _sender) { // solium-disable-next-line operator-whitespace voteCount = Lockup(config().lockup()) .getPropertyValue(_property) .add( Allocator(config().allocator()).getRewardsAmount(_property) ); VoteTimes(config().voteTimes()).addVoteTimesByProperty(_property); } else { voteCount = Lockup(config().lockup()).getValue(_property, _sender); } return voteCount; } function addAgreeCount(address _target, uint256 _voteCount) private { uint256 agreeCount = getStorage().getAgreeCount(_target); agreeCount = agreeCount.add(_voteCount); getStorage().setAgreeCount(_target, agreeCount); } function addOppositeCount(address _target, uint256 _voteCount) private { uint256 oppositeCount = getStorage().getOppositeCount(_target); oppositeCount = oppositeCount.add(_voteCount); getStorage().setOppositeCount(_target, oppositeCount); } function getStorage() private view returns (VoteCounterStorage) { return VoteCounterStorage(config().voteCounterStorage()); } } contract IMarket { function calculate(address _metrics, uint256 _start, uint256 _end) external returns (bool); function authenticate( address _prop, string memory _args1, string memory _args2, string memory _args3, string memory _args4, string memory _args5 ) public returns ( // solium-disable-next-line indentation address ); function getAuthenticationFee(address _property) private view returns (uint256); function authenticatedCallback(address _property, bytes32 _idHash) external returns (address); function vote(address _property, bool _agree) external; function schema() external view returns (string memory); } contract IMarketBehavior { string public schema; function authenticate( address _prop, string calldata _args1, string calldata _args2, string calldata _args3, string calldata _args4, string calldata _args5, address market ) external returns ( // solium-disable-next-line indentation address ); function calculate(address _metrics, uint256 _start, uint256 _end) external returns (bool); } contract PropertyGroup is UsingConfig, UsingStorage, UsingValidator, IGroup, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().propertyFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } } contract IPolicy { function rewards(uint256 _lockups, uint256 _assets) external view returns (uint256); function holdersShare(uint256 _amount, uint256 _lockups) external view returns (uint256); function assetValue(uint256 _value, uint256 _lockups) external view returns (uint256); function authenticationFee(uint256 _assets, uint256 _propertyAssets) external view returns (uint256); function marketApproval(uint256 _agree, uint256 _opposite) external view returns (bool); function policyApproval(uint256 _agree, uint256 _opposite) external view returns (bool); function marketVotingBlocks() external view returns (uint256); function policyVotingBlocks() external view returns (uint256); function abstentionPenalty(uint256 _count) external view returns (uint256); function lockUpBlocks() external view returns (uint256); } contract MarketGroup is UsingConfig, UsingStorage, IGroup, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) UsingStorage() {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().marketFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); addCount(); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } function addCount() private { bytes32 key = getCountKey(); uint256 number = eternalStorage().getUint(key); number = number.add(1); eternalStorage().setUint(key, number); } function getCount() external view returns (uint256) { bytes32 key = getCountKey(); return eternalStorage().getUint(key); } function getCountKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_count")); } } contract PolicySet is UsingConfig, UsingStorage, UsingValidator, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addSet(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); uint256 index = eternalStorage().getUint(getPlicySetIndexKey()); bytes32 key = getIndexKey(index); eternalStorage().setAddress(key, _addr); index = index.add(1); eternalStorage().setUint(getPlicySetIndexKey(), index); } function deleteAll() external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); uint256 index = eternalStorage().getUint(getPlicySetIndexKey()); for (uint256 i = 0; i < index; i++) { bytes32 key = getIndexKey(i); eternalStorage().setAddress(key, address(0)); } eternalStorage().setUint(getPlicySetIndexKey(), 0); } function count() external view returns (uint256) { return eternalStorage().getUint(getPlicySetIndexKey()); } function get(uint256 _index) external view returns (address) { bytes32 key = getIndexKey(_index); return eternalStorage().getAddress(key); } function getIndexKey(uint256 _index) private pure returns (bytes32) { return keccak256(abi.encodePacked("_index", _index)); } function getPlicySetIndexKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_policySetIndex")); } } contract PolicyGroup is UsingConfig, UsingStorage, UsingValidator, IGroup, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); } function deleteGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().policyFactory() ); require(isGroup(_addr), "not enabled"); return eternalStorage().setBool(getGroupKey(_addr), false); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } } contract PolicyFactory is Pausable, UsingConfig, UsingValidator, Killable { event Create(address indexed _from, address _policy, address _innerPolicy); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function create(address _newPolicyAddress) external returns (address) { require(paused() == false, "You cannot use that"); addressValidator().validateIllegalAddress(_newPolicyAddress); Policy policy = new Policy(address(config()), _newPolicyAddress); address policyAddress = address(policy); emit Create(msg.sender, policyAddress, _newPolicyAddress); if (config().policy() == address(0)) { config().setPolicy(policyAddress); } else { VoteTimes(config().voteTimes()).addVoteTime(); } PolicyGroup policyGroup = PolicyGroup(config().policyGroup()); policyGroup.addGroup(policyAddress); PolicySet policySet = PolicySet(config().policySet()); policySet.addSet(policyAddress); return policyAddress; } function convergePolicy(address _currentPolicyAddress) external { addressValidator().validateGroup(msg.sender, config().policyGroup()); config().setPolicy(_currentPolicyAddress); PolicySet policySet = PolicySet(config().policySet()); PolicyGroup policyGroup = PolicyGroup(config().policyGroup()); for (uint256 i = 0; i < policySet.count(); i++) { address policyAddress = policySet.get(i); if (policyAddress == _currentPolicyAddress) { continue; } Policy(policyAddress).kill(); policyGroup.deleteGroup(policyAddress); } policySet.deleteAll(); policySet.addSet(_currentPolicyAddress); } } contract Policy is Killable, UsingConfig, UsingValidator { using SafeMath for uint256; IPolicy private _policy; uint256 private _votingEndBlockNumber; constructor(address _config, address _innerPolicyAddress) public UsingConfig(_config) { addressValidator().validateAddress( msg.sender, config().policyFactory() ); _policy = IPolicy(_innerPolicyAddress); setVotingEndBlockNumber(); } function voting() public view returns (bool) { return block.number <= _votingEndBlockNumber; } function rewards(uint256 _lockups, uint256 _assets) external view returns (uint256) { return _policy.rewards(_lockups, _assets); } function holdersShare(uint256 _amount, uint256 _lockups) external view returns (uint256) { return _policy.holdersShare(_amount, _lockups); } function assetValue(uint256 _value, uint256 _lockups) external view returns (uint256) { return _policy.assetValue(_value, _lockups); } function authenticationFee(uint256 _assets, uint256 _propertyAssets) external view returns (uint256) { return _policy.authenticationFee(_assets, _propertyAssets); } function marketApproval(uint256 _agree, uint256 _opposite) external view returns (bool) { return _policy.marketApproval(_agree, _opposite); } function policyApproval(uint256 _agree, uint256 _opposite) external view returns (bool) { return _policy.policyApproval(_agree, _opposite); } function marketVotingBlocks() external view returns (uint256) { return _policy.marketVotingBlocks(); } function policyVotingBlocks() external view returns (uint256) { return _policy.policyVotingBlocks(); } function abstentionPenalty(uint256 _count) external view returns (uint256) { return _policy.abstentionPenalty(_count); } function lockUpBlocks() external view returns (uint256) { return _policy.lockUpBlocks(); } function vote(address _property, bool _agree) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(config().policy() != address(this), "this policy is current"); require(voting(), "voting deadline is over"); VoteCounter voteCounter = VoteCounter(config().voteCounter()); voteCounter.addVoteCount(msg.sender, _property, _agree); bool result = Policy(config().policy()).policyApproval( voteCounter.getAgreeCount(address(this)), voteCounter.getOppositeCount(address(this)) ); if (result == false) { return; } PolicyFactory(config().policyFactory()).convergePolicy(address(this)); _votingEndBlockNumber = 0; } function setVotingEndBlockNumber() private { if (config().policy() == address(0)) { return; } uint256 tmp = Policy(config().policy()).policyVotingBlocks(); _votingEndBlockNumber = block.number.add(tmp); } } contract Metrics { address public market; address public property; constructor(address _market, address _property) public { //Do not validate because there is no AddressConfig market = _market; property = _property; } } contract MetricsGroup is UsingConfig, UsingStorage, UsingValidator, IGroup, Killable { using SafeMath for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function addGroup(address _addr) external { addressValidator().validateAddress( msg.sender, config().metricsFactory() ); require(isGroup(_addr) == false, "already enabled"); eternalStorage().setBool(getGroupKey(_addr), true); uint256 totalCount = eternalStorage().getUint(getTotalCountKey()); totalCount = totalCount.add(1); eternalStorage().setUint(getTotalCountKey(), totalCount); } function isGroup(address _addr) public view returns (bool) { return eternalStorage().getBool(getGroupKey(_addr)); } function totalIssuedMetrics() external view returns (uint256) { return eternalStorage().getUint(getTotalCountKey()); } function getTotalCountKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_totalCount")); } } contract MetricsFactory is Pausable, UsingConfig, UsingValidator, Killable { event Create(address indexed _from, address _metrics); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function create(address _property) external returns (address) { require(paused() == false, "You cannot use that"); addressValidator().validateGroup(msg.sender, config().marketGroup()); Metrics metrics = new Metrics(msg.sender, _property); MetricsGroup metricsGroup = MetricsGroup(config().metricsGroup()); address metricsAddress = address(metrics); metricsGroup.addGroup(metricsAddress); emit Create(msg.sender, metricsAddress); return metricsAddress; } } contract Market is UsingConfig, IMarket, UsingValidator { using SafeMath for uint256; bool public enabled; address public behavior; uint256 private _votingEndBlockNumber; uint256 public issuedMetrics; mapping(bytes32 => bool) private idMap; constructor(address _config, address _behavior) public UsingConfig(_config) { addressValidator().validateAddress( msg.sender, config().marketFactory() ); behavior = _behavior; enabled = false; uint256 marketVotingBlocks = Policy(config().policy()) .marketVotingBlocks(); _votingEndBlockNumber = block.number.add(marketVotingBlocks); } function toEnable() external { addressValidator().validateAddress( msg.sender, config().marketFactory() ); enabled = true; } function calculate(address _metrics, uint256 _start, uint256 _end) external returns (bool) { addressValidator().validateAddress(msg.sender, config().allocator()); return IMarketBehavior(behavior).calculate(_metrics, _start, _end); } function authenticate( address _prop, string memory _args1, string memory _args2, string memory _args3, string memory _args4, string memory _args5 ) public returns (address) { addressValidator().validateAddress( msg.sender, Property(_prop).author() ); require(enabled, "market is not enabled"); uint256 len = bytes(_args1).length; require(len > 0, "id is required"); return IMarketBehavior(behavior).authenticate( _prop, _args1, _args2, _args3, _args4, _args5, address(this) ); } function getAuthenticationFee(address _property) private view returns (uint256) { uint256 tokenValue = Lockup(config().lockup()).getPropertyValue( _property ); Policy policy = Policy(config().policy()); MetricsGroup metricsGroup = MetricsGroup(config().metricsGroup()); return policy.authenticationFee( metricsGroup.totalIssuedMetrics(), tokenValue ); } function authenticatedCallback(address _property, bytes32 _idHash) external returns (address) { addressValidator().validateAddress(msg.sender, behavior); require(enabled, "market is not enabled"); require(idMap[_idHash] == false, "id is duplicated"); idMap[_idHash] = true; address sender = Property(_property).author(); MetricsFactory metricsFactory = MetricsFactory( config().metricsFactory() ); address metrics = metricsFactory.create(_property); uint256 authenticationFee = getAuthenticationFee(_property); require( Dev(config().token()).fee(sender, authenticationFee), "dev fee failed" ); issuedMetrics = issuedMetrics.add(1); return metrics; } function vote(address _property, bool _agree) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(enabled == false, "market is already enabled"); require( block.number <= _votingEndBlockNumber, "voting deadline is over" ); VoteCounter voteCounter = VoteCounter(config().voteCounter()); voteCounter.addVoteCount(msg.sender, _property, _agree); enabled = Policy(config().policy()).marketApproval( voteCounter.getAgreeCount(address(this)), voteCounter.getOppositeCount(address(this)) ); } function schema() external view returns (string memory) { return IMarketBehavior(behavior).schema(); } } // prettier-ignore contract WithdrawStorage is UsingStorage, UsingConfig, UsingValidator, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} // RewardsAmount function setRewardsAmount(address _property, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint(getRewardsAmountKey(_property), _value); } function getRewardsAmount(address _property) external view returns (uint256) { return eternalStorage().getUint(getRewardsAmountKey(_property)); } function getRewardsAmountKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_rewardsAmount", _property)); } // CumulativePrice function setCumulativePrice(address _property, uint256 _value) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint(getCumulativePriceKey(_property), _value); } function getCumulativePrice(address _property) external view returns (uint256) { return eternalStorage().getUint(getCumulativePriceKey(_property)); } function getCumulativePriceKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_cumulativePrice", _property)); } // WithdrawalLimitTotal function setWithdrawalLimitTotal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getWithdrawalLimitTotalKey(_property, _user), _value ); } function getWithdrawalLimitTotal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getWithdrawalLimitTotalKey(_property, _user) ); } function getWithdrawalLimitTotalKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalLimitTotal", _property, _user) ); } // WithdrawalLimitBalance function setWithdrawalLimitBalance( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getWithdrawalLimitBalanceKey(_property, _user), _value ); } function getWithdrawalLimitBalance(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getWithdrawalLimitBalanceKey(_property, _user) ); } function getWithdrawalLimitBalanceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalLimitBalance", _property, _user) ); } //LastWithdrawalPrice function setLastWithdrawalPrice( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getLastWithdrawalPriceKey(_property, _user), _value ); } function getLastWithdrawalPrice(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getLastWithdrawalPriceKey(_property, _user) ); } function getLastWithdrawalPriceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastWithdrawalPrice", _property, _user) ); } //PendingWithdrawal function setPendingWithdrawal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().withdraw()); eternalStorage().setUint( getPendingWithdrawalKey(_property, _user), _value ); } function getPendingWithdrawal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint(getPendingWithdrawalKey(_property, _user)); } function getPendingWithdrawalKey(address _property, address _user) private pure returns (bytes32) { return keccak256(abi.encodePacked("_pendingWithdrawal", _property, _user)); } } contract Withdraw is Pausable, UsingConfig, UsingValidator, Killable { using SafeMath for uint256; using Decimals for uint256; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function withdraw(address _property) external { require(paused() == false, "You cannot use that"); addressValidator().validateGroup(_property, config().propertyGroup()); uint256 value = _calculateWithdrawableAmount(_property, msg.sender); require(value != 0, "withdraw value is 0"); uint256 price = getStorage().getCumulativePrice(_property); getStorage().setLastWithdrawalPrice(_property, msg.sender, price); getStorage().setPendingWithdrawal(_property, msg.sender, 0); ERC20Mintable erc20 = ERC20Mintable(config().token()); require(erc20.mint(msg.sender, value), "dev mint failed"); } function beforeBalanceChange(address _property, address _from, address _to) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 price = getStorage().getCumulativePrice(_property); uint256 amountFrom = _calculateAmount(_property, _from); uint256 amountTo = _calculateAmount(_property, _to); getStorage().setLastWithdrawalPrice(_property, _from, price); getStorage().setLastWithdrawalPrice(_property, _to, price); uint256 pendFrom = getStorage().getPendingWithdrawal(_property, _from); uint256 pendTo = getStorage().getPendingWithdrawal(_property, _to); getStorage().setPendingWithdrawal( _property, _from, pendFrom.add(amountFrom) ); getStorage().setPendingWithdrawal(_property, _to, pendTo.add(amountTo)); uint256 totalLimit = getStorage().getWithdrawalLimitTotal( _property, _to ); uint256 total = getStorage().getRewardsAmount(_property); if (totalLimit != total) { getStorage().setWithdrawalLimitTotal(_property, _to, total); getStorage().setWithdrawalLimitBalance( _property, _to, ERC20(_property).balanceOf(_to) ); } } function increment(address _property, uint256 _allocationResult) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 priceValue = _allocationResult.outOf( ERC20(_property).totalSupply() ); uint256 total = getStorage().getRewardsAmount(_property); getStorage().setRewardsAmount(_property, total.add(_allocationResult)); uint256 price = getStorage().getCumulativePrice(_property); getStorage().setCumulativePrice(_property, price.add(priceValue)); } function getRewardsAmount(address _property) external view returns (uint256) { return getStorage().getRewardsAmount(_property); } function _calculateAmount(address _property, address _user) private view returns (uint256) { uint256 _last = getStorage().getLastWithdrawalPrice(_property, _user); uint256 totalLimit = getStorage().getWithdrawalLimitTotal( _property, _user ); uint256 balanceLimit = getStorage().getWithdrawalLimitBalance( _property, _user ); uint256 price = getStorage().getCumulativePrice(_property); uint256 priceGap = price.sub(_last); uint256 balance = ERC20(_property).balanceOf(_user); uint256 total = getStorage().getRewardsAmount(_property); if (totalLimit == total) { balance = balanceLimit; } uint256 value = priceGap.mul(balance); return value.div(Decimals.basis()); } function calculateAmount(address _property, address _user) external view returns (uint256) { return _calculateAmount(_property, _user); } function _calculateWithdrawableAmount(address _property, address _user) private view returns (uint256) { uint256 _value = _calculateAmount(_property, _user); uint256 value = _value.add( getStorage().getPendingWithdrawal(_property, _user) ); return value; } function calculateWithdrawableAmount(address _property, address _user) external view returns (uint256) { return _calculateWithdrawableAmount(_property, _user); } function getStorage() private view returns (WithdrawStorage) { return WithdrawStorage(config().withdrawStorage()); } } contract AllocatorStorage is UsingStorage, UsingConfig, UsingValidator, Killable { constructor(address _config) public UsingConfig(_config) UsingStorage() {} // Last Block Number function setLastBlockNumber(address _metrics, uint256 _blocks) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint(getLastBlockNumberKey(_metrics), _blocks); } function getLastBlockNumber(address _metrics) external view returns (uint256) { return eternalStorage().getUint(getLastBlockNumberKey(_metrics)); } function getLastBlockNumberKey(address _metrics) private pure returns (bytes32) { return keccak256(abi.encodePacked("_lastBlockNumber", _metrics)); } // Base Block Number function setBaseBlockNumber(uint256 _blockNumber) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint(getBaseBlockNumberKey(), _blockNumber); } function getBaseBlockNumber() external view returns (uint256) { return eternalStorage().getUint(getBaseBlockNumberKey()); } function getBaseBlockNumberKey() private pure returns (bytes32) { return keccak256(abi.encodePacked("_baseBlockNumber")); } // PendingIncrement function setPendingIncrement(address _metrics, bool value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setBool(getPendingIncrementKey(_metrics), value); } function getPendingIncrement(address _metrics) external view returns (bool) { return eternalStorage().getBool(getPendingIncrementKey(_metrics)); } function getPendingIncrementKey(address _metrics) private pure returns (bytes32) { return keccak256(abi.encodePacked("_pendingIncrement", _metrics)); } // LastAllocationBlockEachMetrics function setLastAllocationBlockEachMetrics( address _metrics, uint256 blockNumber ) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint( getLastAllocationBlockEachMetricsKey(_metrics), blockNumber ); } function getLastAllocationBlockEachMetrics(address _metrics) external view returns (uint256) { return eternalStorage().getUint( getLastAllocationBlockEachMetricsKey(_metrics) ); } function getLastAllocationBlockEachMetricsKey(address _addr) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastAllocationBlockEachMetrics", _addr) ); } // LastAssetValueEachMetrics function setLastAssetValueEachMetrics(address _metrics, uint256 value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint( getLastAssetValueEachMetricsKey(_metrics), value ); } function getLastAssetValueEachMetrics(address _metrics) external view returns (uint256) { return eternalStorage().getUint(getLastAssetValueEachMetricsKey(_metrics)); } function getLastAssetValueEachMetricsKey(address _addr) private pure returns (bytes32) { return keccak256(abi.encodePacked("_lastAssetValueEachMetrics", _addr)); } // lastAssetValueEachMarketPerBlock function setLastAssetValueEachMarketPerBlock(address _market, uint256 value) external { addressValidator().validateAddress(msg.sender, config().allocator()); eternalStorage().setUint( getLastAssetValueEachMarketPerBlockKey(_market), value ); } function getLastAssetValueEachMarketPerBlock(address _market) external view returns (uint256) { return eternalStorage().getUint( getLastAssetValueEachMarketPerBlockKey(_market) ); } function getLastAssetValueEachMarketPerBlockKey(address _addr) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastAssetValueEachMarketPerBlock", _addr) ); } } contract Allocator is Killable, Ownable, UsingConfig, IAllocator, UsingValidator { using SafeMath for uint256; using Decimals for uint256; event BeforeAllocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ); uint64 public constant basis = 1000000000000000000; // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function allocate(address _metrics) external { addressValidator().validateGroup(_metrics, config().metricsGroup()); validateTargetPeriod(_metrics); address market = Metrics(_metrics).market(); getStorage().setPendingIncrement(_metrics, true); Market(market).calculate( _metrics, getLastAllocationBlockNumber(_metrics), block.number ); getStorage().setLastBlockNumber(_metrics, block.number); } function calculatedCallback(address _metrics, uint256 _value) external { addressValidator().validateGroup(_metrics, config().metricsGroup()); Metrics metrics = Metrics(_metrics); Market market = Market(metrics.market()); require( msg.sender == market.behavior(), "don't call from other than market behavior" ); require( getStorage().getPendingIncrement(_metrics), "not asking for an indicator" ); Policy policy = Policy(config().policy()); uint256 totalAssets = MetricsGroup(config().metricsGroup()) .totalIssuedMetrics(); uint256 lockupValue = Lockup(config().lockup()).getPropertyValue( metrics.property() ); uint256 blocks = block.number.sub( getStorage().getLastAllocationBlockEachMetrics(_metrics) ); uint256 mint = policy.rewards(lockupValue, totalAssets); uint256 value = (policy.assetValue(_value, lockupValue).mul(basis)).div( blocks ); uint256 marketValue = getStorage() .getLastAssetValueEachMarketPerBlock(metrics.market()) .sub(getStorage().getLastAssetValueEachMetrics(_metrics)) .add(value); uint256 assets = market.issuedMetrics(); getStorage().setLastAllocationBlockEachMetrics(_metrics, block.number); getStorage().setLastAssetValueEachMetrics(_metrics, value); getStorage().setLastAssetValueEachMarketPerBlock( metrics.market(), marketValue ); emit BeforeAllocation( blocks, mint, value, marketValue, assets, totalAssets ); uint256 result = allocation( blocks, mint, value, marketValue, assets, totalAssets ); increment(metrics.property(), result, lockupValue); getStorage().setPendingIncrement(_metrics, false); } function increment(address _property, uint256 _reward, uint256 _lockup) private { uint256 holders = Policy(config().policy()).holdersShare( _reward, _lockup ); uint256 interest = _reward.sub(holders); Withdraw(config().withdraw()).increment(_property, holders); Lockup(config().lockup()).increment(_property, interest); } function beforeBalanceChange(address _property, address _from, address _to) external { addressValidator().validateGroup(msg.sender, config().propertyGroup()); Withdraw(config().withdraw()).beforeBalanceChange( _property, _from, _to ); } function getRewardsAmount(address _property) external view returns (uint256) { return Withdraw(config().withdraw()).getRewardsAmount(_property); } function allocation( uint256 _blocks, uint256 _mint, uint256 _value, uint256 _marketValue, uint256 _assets, uint256 _totalAssets ) public pure returns (uint256) { uint256 aShare = _totalAssets > 0 ? _assets.outOf(_totalAssets) : Decimals.basis(); uint256 vShare = _marketValue > 0 ? _value.outOf(_marketValue) : Decimals.basis(); uint256 mint = _mint.mul(_blocks); return mint.mul(aShare).mul(vShare).div(Decimals.basis()).div( Decimals.basis() ); } function validateTargetPeriod(address _metrics) private { address property = Metrics(_metrics).property(); VoteTimes voteTimes = VoteTimes(config().voteTimes()); uint256 abstentionCount = voteTimes.getAbstentionTimes(property); uint256 notTargetPeriod = Policy(config().policy()).abstentionPenalty( abstentionCount ); if (notTargetPeriod == 0) { return; } uint256 blockNumber = getLastAllocationBlockNumber(_metrics); uint256 notTargetBlockNumber = blockNumber.add(notTargetPeriod); require( notTargetBlockNumber < block.number, "outside the target period" ); getStorage().setLastBlockNumber(_metrics, notTargetBlockNumber); voteTimes.resetVoteTimesByProperty(property); } function getLastAllocationBlockNumber(address _metrics) private returns (uint256) { uint256 blockNumber = getStorage().getLastBlockNumber(_metrics); uint256 baseBlockNumber = getStorage().getBaseBlockNumber(); if (baseBlockNumber == 0) { getStorage().setBaseBlockNumber(block.number); } uint256 lastAllocationBlockNumber = blockNumber > 0 ? blockNumber : getStorage().getBaseBlockNumber(); return lastAllocationBlockNumber; } function getStorage() private view returns (AllocatorStorage) { return AllocatorStorage(config().allocatorStorage()); } } contract Property is ERC20, ERC20Detailed, UsingConfig, UsingValidator { uint8 private constant _decimals = 18; uint256 private constant _supply = 10000000; address public author; constructor( address _config, address _own, string memory _name, string memory _symbol ) public UsingConfig(_config) ERC20Detailed(_name, _symbol, _decimals) { addressValidator().validateAddress( msg.sender, config().propertyFactory() ); author = _own; _mint(author, _supply); } function transfer(address _to, uint256 _value) public returns (bool) { addressValidator().validateIllegalAddress(_to); require(_value != 0, "illegal transfer value"); Allocator(config().allocator()).beforeBalanceChange( address(this), msg.sender, _to ); _transfer(msg.sender, _to, _value); } function withdraw(address _sender, uint256 _value) external { addressValidator().validateAddress(msg.sender, config().lockup()); ERC20 devToken = ERC20(config().token()); devToken.transfer(_sender, _value); } } contract LockupStorage is UsingConfig, UsingStorage, UsingValidator, Killable { // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} //Value function setValue(address _property, address _sender, uint256 _value) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getValueKey(_property, _sender); eternalStorage().setUint(key, _value); } function getValue(address _property, address _sender) external view returns (uint256) { bytes32 key = getValueKey(_property, _sender); return eternalStorage().getUint(key); } function getValueKey(address _property, address _sender) private pure returns (bytes32) { return keccak256(abi.encodePacked("_value", _property, _sender)); } //PropertyValue function setPropertyValue(address _property, uint256 _value) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getPropertyValueKey(_property); eternalStorage().setUint(key, _value); } function getPropertyValue(address _property) external view returns (uint256) { bytes32 key = getPropertyValueKey(_property); return eternalStorage().getUint(key); } function getPropertyValueKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_propertyValue", _property)); } //WithdrawalStatus function setWithdrawalStatus( address _property, address _from, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); bytes32 key = getWithdrawalStatusKey(_property, _from); eternalStorage().setUint(key, _value); } function getWithdrawalStatus(address _property, address _from) external view returns (uint256) { bytes32 key = getWithdrawalStatusKey(_property, _from); return eternalStorage().getUint(key); } function getWithdrawalStatusKey(address _property, address _sender) private pure returns (bytes32) { return keccak256( abi.encodePacked("_withdrawalStatus", _property, _sender) ); } //InterestPrice function setInterestPrice(address _property, uint256 _value) external returns (uint256) { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint(getInterestPriceKey(_property), _value); } function getInterestPrice(address _property) external view returns (uint256) { return eternalStorage().getUint(getInterestPriceKey(_property)); } function getInterestPriceKey(address _property) private pure returns (bytes32) { return keccak256(abi.encodePacked("_interestTotals", _property)); } //LastInterestPrice function setLastInterestPrice( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint( getLastInterestPriceKey(_property, _user), _value ); } function getLastInterestPrice(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint(getLastInterestPriceKey(_property, _user)); } function getLastInterestPriceKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_lastLastInterestPrice", _property, _user) ); } //PendingWithdrawal function setPendingInterestWithdrawal( address _property, address _user, uint256 _value ) external { addressValidator().validateAddress(msg.sender, config().lockup()); eternalStorage().setUint( getPendingInterestWithdrawalKey(_property, _user), _value ); } function getPendingInterestWithdrawal(address _property, address _user) external view returns (uint256) { return eternalStorage().getUint( getPendingInterestWithdrawalKey(_property, _user) ); } function getPendingInterestWithdrawalKey(address _property, address _user) private pure returns (bytes32) { return keccak256( abi.encodePacked("_pendingInterestWithdrawal", _property, _user) ); } } contract Lockup is Pausable, UsingConfig, UsingValidator, Killable { using SafeMath for uint256; using Decimals for uint256; event Lockedup(address _from, address _property, uint256 _value); // solium-disable-next-line no-empty-blocks constructor(address _config) public UsingConfig(_config) {} function lockup(address _from, address _property, uint256 _value) external { require(paused() == false, "You cannot use that"); addressValidator().validateAddress(msg.sender, config().token()); addressValidator().validateGroup(_property, config().propertyGroup()); require(_value != 0, "illegal lockup value"); bool isWaiting = getStorage().getWithdrawalStatus(_property, _from) != 0; require(isWaiting == false, "lockup is already canceled"); updatePendingInterestWithdrawal(_property, _from); addValue(_property, _from, _value); addPropertyValue(_property, _value); getStorage().setLastInterestPrice( _property, _from, getStorage().getInterestPrice(_property) ); emit Lockedup(_from, _property, _value); } function cancel(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(hasValue(_property, msg.sender), "dev token is not locked"); bool isWaiting = getStorage().getWithdrawalStatus( _property, msg.sender ) != 0; require(isWaiting == false, "lockup is already canceled"); uint256 blockNumber = Policy(config().policy()).lockUpBlocks(); blockNumber = blockNumber.add(block.number); getStorage().setWithdrawalStatus(_property, msg.sender, blockNumber); } function withdraw(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); require(possible(_property, msg.sender), "waiting for release"); uint256 lockupedValue = getStorage().getValue(_property, msg.sender); require(lockupedValue != 0, "dev token is not locked"); updatePendingInterestWithdrawal(_property, msg.sender); Property(_property).withdraw(msg.sender, lockupedValue); getStorage().setValue(_property, msg.sender, 0); subPropertyValue(_property, lockupedValue); getStorage().setWithdrawalStatus(_property, msg.sender, 0); } function increment(address _property, uint256 _interestResult) external { addressValidator().validateAddress(msg.sender, config().allocator()); uint256 priceValue = _interestResult.outOf( getStorage().getPropertyValue(_property) ); incrementInterest(_property, priceValue); } function _calculateInterestAmount(address _property, address _user) private view returns (uint256) { uint256 _last = getStorage().getLastInterestPrice(_property, _user); uint256 price = getStorage().getInterestPrice(_property); uint256 priceGap = price.sub(_last); uint256 lockupedValue = getStorage().getValue(_property, _user); uint256 value = priceGap.mul(lockupedValue); return value.div(Decimals.basis()); } function calculateInterestAmount(address _property, address _user) external view returns (uint256) { return _calculateInterestAmount(_property, _user); } function _calculateWithdrawableInterestAmount( address _property, address _user ) private view returns (uint256) { uint256 pending = getStorage().getPendingInterestWithdrawal( _property, _user ); return _calculateInterestAmount(_property, _user).add(pending); } function calculateWithdrawableInterestAmount( address _property, address _user ) external view returns (uint256) { return _calculateWithdrawableInterestAmount(_property, _user); } function withdrawInterest(address _property) external { addressValidator().validateGroup(_property, config().propertyGroup()); uint256 value = _calculateWithdrawableInterestAmount( _property, msg.sender ); require(value > 0, "your interest amount is 0"); getStorage().setLastInterestPrice( _property, msg.sender, getStorage().getInterestPrice(_property) ); getStorage().setPendingInterestWithdrawal(_property, msg.sender, 0); ERC20Mintable erc20 = ERC20Mintable(config().token()); require(erc20.mint(msg.sender, value), "dev mint failed"); } function getPropertyValue(address _property) external view returns (uint256) { return getStorage().getPropertyValue(_property); } function getValue(address _property, address _sender) external view returns (uint256) { return getStorage().getValue(_property, _sender); } function addValue(address _property, address _sender, uint256 _value) private { uint256 value = getStorage().getValue(_property, _sender); value = value.add(_value); getStorage().setValue(_property, _sender, value); } function hasValue(address _property, address _sender) private view returns (bool) { uint256 value = getStorage().getValue(_property, _sender); return value != 0; } function addPropertyValue(address _property, uint256 _value) private { uint256 value = getStorage().getPropertyValue(_property); value = value.add(_value); getStorage().setPropertyValue(_property, value); } function subPropertyValue(address _property, uint256 _value) private { uint256 value = getStorage().getPropertyValue(_property); value = value.sub(_value); getStorage().setPropertyValue(_property, value); } function incrementInterest(address _property, uint256 _priceValue) private { uint256 price = getStorage().getInterestPrice(_property); getStorage().setInterestPrice(_property, price.add(_priceValue)); } function updatePendingInterestWithdrawal(address _property, address _user) private { uint256 pending = getStorage().getPendingInterestWithdrawal( _property, _user ); getStorage().setPendingInterestWithdrawal( _property, _user, _calculateInterestAmount(_property, _user).add(pending) ); } function possible(address _property, address _from) private view returns (bool) { uint256 blockNumber = getStorage().getWithdrawalStatus( _property, _from ); if (blockNumber == 0) { return false; } return blockNumber <= block.number; } function getStorage() private view returns (LockupStorage) { return LockupStorage(config().lockupStorage()); } } contract Dev is ERC20Detailed, ERC20Mintable, ERC20Burnable, UsingConfig, UsingValidator { constructor(address _config) public ERC20Detailed("Dev", "DEV", 18) UsingConfig(_config) {} function deposit(address _to, uint256 _amount) external returns (bool) { require(transfer(_to, _amount), "dev transfer failed"); lock(msg.sender, _to, _amount); return true; } function depositFrom(address _from, address _to, uint256 _amount) external returns (bool) { require(transferFrom(_from, _to, _amount), "dev transferFrom failed"); lock(_from, _to, _amount); return true; } function fee(address _from, uint256 _amount) external returns (bool) { addressValidator().validateGroup(msg.sender, config().marketGroup()); _burn(_from, _amount); return true; } function lock(address _from, address _to, uint256 _amount) private { Lockup(config().lockup()).lockup(_from, _to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_config","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"configAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"depositFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"fee","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":false,"inputs":[],"name":"renounceMinter","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001ea338038062001ea3833981810160405260208110156200003757600080fd5b50516040805180820182526003808252622232bb60e91b60208381019182528451808601909552918452622222ab60e91b918401919091528151849391601291620000859160009162000290565b5081516200009b90600190602085019062000290565b506002805460ff191660ff9290921691909117905550620000d09050620000c162000143565b6001600160e01b036200014816565b600780546001600160a01b0319166001600160a01b0392909216919091179055604051620000fe9062000315565b604051809103906000f0801580156200011b573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b03929092169190911790555062000340565b335b90565b620001638160066200019a60201b620012001790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620001af82826001600160e01b036200022716565b1562000202576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002705760405162461bcd60e51b815260040180806020018281038252602281526020018062001e816022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002d357805160ff191683800117855562000303565b8280016001018555821562000303579182015b8281111562000303578251825591602001919060010190620002e6565b506200031192915062000323565b5090565b610639806200184883390190565b6200014591905b808211156200031157600081556001016200032a565b6114f880620003506000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780639e6eda181161007c5780639e6eda18146103c8578063a457c2d7146103f4578063a9059cbb14610420578063aa271e1a1461044c578063d6c3187114610472578063dd62ed3e1461049657610137565b806370a082311461034057806379cc67901461036657806395d89b4114610392578063983b2d561461039a57806398650275146103c057610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806347e7ef24146102de57806368a9674d1461030a57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b6101446104c4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561055a565b604080519115158252519081900360200190f35b610201610577565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561057d565b61025161060a565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610613565b6101e5600480360360408110156102a957600080fd5b506001600160a01b038135169060200135610667565b6102dc600480360360208110156102d557600080fd5b50356106be565b005b6101e5600480360360408110156102f457600080fd5b506001600160a01b0381351690602001356106d2565b6101e56004803603606081101561032057600080fd5b506001600160a01b03813581169160208101359091169060400135610730565b6102016004803603602081101561035657600080fd5b50356001600160a01b0316610799565b6102dc6004803603604081101561037c57600080fd5b506001600160a01b0381351690602001356107b4565b6101446107c2565b6102dc600480360360208110156103b057600080fd5b50356001600160a01b0316610822565b6102dc610871565b6101e5600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610883565b6101e56004803603604081101561040a57600080fd5b506001600160a01b038135169060200135610978565b6101e56004803603604081101561043657600080fd5b506001600160a01b0381351690602001356109e6565b6101e56004803603602081101561046257600080fd5b50356001600160a01b03166109fa565b61047a610a13565b604080516001600160a01b039092168252519081900360200190f35b610201600480360360408110156104ac57600080fd5b506001600160a01b0381358116916020013516610a22565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056e610567610a4d565b8484610a51565b50600192915050565b60055490565b600061058a848484610b3d565b61060084610596610a4d565b6105fb856040518060600160405280602881526020016113c7602891396001600160a01b038a166000908152600460205260408120906105d4610a4d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c9b16565b610a51565b5060019392505050565b60025460ff1690565b600061056e610620610a4d565b846105fb8560046000610631610a4d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d3216565b6000610679610674610a4d565b6109fa565b6106b45760405162461bcd60e51b81526004018080602001828103825260308152602001806113766030913960400191505060405180910390fd5b61056e8383610d93565b6106cf6106c9610a4d565b82610e85565b50565b60006106de83836109e6565b610725576040805162461bcd60e51b815260206004820152601360248201527219195d881d1c985b9cd9995c8819985a5b1959606a1b604482015290519081900360640190fd5b61056e338484610f81565b600061073d84848461057d565b61078e576040805162461bcd60e51b815260206004820152601760248201527f646576207472616e7366657246726f6d206661696c6564000000000000000000604482015290519081900360640190fd5b610600848484610f81565b6001600160a01b031660009081526003602052604090205490565b6107be8282611064565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105505780601f1061052557610100808354040283529160200191610550565b61082d610674610a4d565b6108685760405162461bcd60e51b81526004018080602001828103825260308152602001806113766030913960400191505060405180910390fd5b6106cf816110b8565b61088161087c610a4d565b611100565b565b600061088d611148565b6001600160a01b031663d16ff470336108a4610a13565b6001600160a01b031663fd347d3e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561095657600080fd5b505afa15801561096a573d6000803e3d6000fd5b5050505061056e8383610e85565b600061056e610985610a4d565b846105fb8560405180606001604052806025815260200161149f60259139600460006109af610a4d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c9b16565b600061056e6109f3610a4d565b8484610b3d565b6000610a0d60068363ffffffff61115716565b92915050565b6007546001600160a01b031690565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610a965760405162461bcd60e51b815260040180806020018281038252602481526020018061147b6024913960400191505060405180910390fd5b6001600160a01b038216610adb5760405162461bcd60e51b815260040180806020018281038252602281526020018061132e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b825760405162461bcd60e51b81526004018080602001828103825260258152602001806114566025913960400191505060405180910390fd5b6001600160a01b038216610bc75760405162461bcd60e51b81526004018080602001828103825260238152602001806112e96023913960400191505060405180910390fd5b610c0a81604051806060016040528060268152602001611350602691396001600160a01b038616600090815260036020526040902054919063ffffffff610c9b16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610c3f908263ffffffff610d3216565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d2a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cef578181015183820152602001610cd7565b50505050905090810190601f168015610d1c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610dee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554610e01908263ffffffff610d3216565b6005556001600160a01b038216600090815260036020526040902054610e2d908263ffffffff610d3216565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610eca5760405162461bcd60e51b81526004018080602001828103825260218152602001806114356021913960400191505060405180910390fd5b610f0d8160405180606001604052806022815260200161130c602291396001600160a01b038516600090815260036020526040902054919063ffffffff610c9b16565b6001600160a01b038316600090815260036020526040902055600554610f39908263ffffffff6111be16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610f89610a13565b6001600160a01b03166306490f476040518163ffffffff1660e01b815260040160206040518083038186803b158015610fc157600080fd5b505afa158015610fd5573d6000803e3d6000fd5b505050506040513d6020811015610feb57600080fd5b50516040805163e35e8cf160e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163e35e8cf191606480830192600092919082900301818387803b15801561104757600080fd5b505af115801561105b573d6000803e3d6000fd5b50505050505050565b61106e8282610e85565b6107be8261107a610a4d565b6105fb84604051806060016040528060248152602001611411602491396001600160a01b0388166000908152600460205260408120906105d4610a4d565b6110c960068263ffffffff61120016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61111160068263ffffffff61128116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6008546001600160a01b031690565b60006001600160a01b03821661119e5760405162461bcd60e51b81526004018080602001828103825260228152602001806113ef6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000610d8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c9b565b61120a8282611157565b1561125c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b61128b8282611157565b6112c65760405162461bcd60e51b81526004018080602001828103825260218152602001806113a66021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582078cc72359199367e998faa39623d25bb7904547cfdb3a5255d7e481e7b47fc3264736f6c63430005100032608060405234801561001057600080fd5b50610619806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806349616d791461005c5780636dd893b91461008c578063a2192963146100c4578063b292b549146100fc578063d16ff47014610122575b600080fd5b61008a6004803603604081101561007257600080fd5b506001600160a01b0381358116916020013516610150565b005b61008a600480360360608110156100a257600080fd5b506001600160a01b038135811691602081013582169160409091013516610223565b61008a600480360360608110156100da57600080fd5b506001600160a01b0381358116916020810135821691604090910135166102d9565b61008a6004803603602081101561011257600080fd5b50356001600160a01b0316610461565b61008a6004803603604081101561013857600080fd5b506001600160a01b03813581169160200135166104e8565b806001600160a01b0316826001600160a01b031614604051806040016040528060178152602001767468697320697320696c6c6567616c206164647265737360481b8152509061021e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156101e35781810151838201526020016101cb565b50505050905090810190601f1680156102105780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050565b816001600160a01b0316836001600160a01b031614156102425761021e565b806001600160a01b0316836001600160a01b031614604051806040016040528060178152602001767468697320697320696c6c6567616c206164647265737360481b815250906102d35760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b50505050565b816001600160a01b0316639e0cc3c4846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561032f57600080fd5b505afa158015610343573d6000803e3d6000fd5b505050506040513d602081101561035957600080fd5b5051156103655761021e565b806001600160a01b0316639e0cc3c4846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156103bb57600080fd5b505afa1580156103cf573d6000803e3d6000fd5b505050506040513d60208110156103e557600080fd5b50516040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b6020820152906102d35760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b6040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b60208201526001600160a01b0382166104e45760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb565b5050565b806001600160a01b0316639e0cc3c4836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561053e57600080fd5b505afa158015610552573d6000803e3d6000fd5b505050506040513d602081101561056857600080fd5b50516040805180820190915260178152767468697320697320696c6c6567616c206164647265737360481b60208201529061021e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156101e35781810151838201526020016101cb56fea265627a7a72315820dffb01f2ba3c8bee6eb59608a87feb6af970340867d35d88ec02987eecc258ea64736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b85780639e6eda181161007c5780639e6eda18146103c8578063a457c2d7146103f4578063a9059cbb14610420578063aa271e1a1461044c578063d6c3187114610472578063dd62ed3e1461049657610137565b806370a082311461034057806379cc67901461036657806395d89b4114610392578063983b2d561461039a57806398650275146103c057610137565b806339509351116100ff578063395093511461026757806340c10f191461029357806342966c68146102bf57806347e7ef24146102de57806368a9674d1461030a57610137565b806306fdde031461013c578063095ea7b3146101b957806318160ddd146101f957806323b872dd14610213578063313ce56714610249575b600080fd5b6101446104c4565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017e578181015183820152602001610166565b50505050905090810190601f1680156101ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101e5600480360360408110156101cf57600080fd5b506001600160a01b03813516906020013561055a565b604080519115158252519081900360200190f35b610201610577565b60408051918252519081900360200190f35b6101e56004803603606081101561022957600080fd5b506001600160a01b0381358116916020810135909116906040013561057d565b61025161060a565b6040805160ff9092168252519081900360200190f35b6101e56004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610613565b6101e5600480360360408110156102a957600080fd5b506001600160a01b038135169060200135610667565b6102dc600480360360208110156102d557600080fd5b50356106be565b005b6101e5600480360360408110156102f457600080fd5b506001600160a01b0381351690602001356106d2565b6101e56004803603606081101561032057600080fd5b506001600160a01b03813581169160208101359091169060400135610730565b6102016004803603602081101561035657600080fd5b50356001600160a01b0316610799565b6102dc6004803603604081101561037c57600080fd5b506001600160a01b0381351690602001356107b4565b6101446107c2565b6102dc600480360360208110156103b057600080fd5b50356001600160a01b0316610822565b6102dc610871565b6101e5600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610883565b6101e56004803603604081101561040a57600080fd5b506001600160a01b038135169060200135610978565b6101e56004803603604081101561043657600080fd5b506001600160a01b0381351690602001356109e6565b6101e56004803603602081101561046257600080fd5b50356001600160a01b03166109fa565b61047a610a13565b604080516001600160a01b039092168252519081900360200190f35b610201600480360360408110156104ac57600080fd5b506001600160a01b0381358116916020013516610a22565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105505780601f1061052557610100808354040283529160200191610550565b820191906000526020600020905b81548152906001019060200180831161053357829003601f168201915b5050505050905090565b600061056e610567610a4d565b8484610a51565b50600192915050565b60055490565b600061058a848484610b3d565b61060084610596610a4d565b6105fb856040518060600160405280602881526020016113c7602891396001600160a01b038a166000908152600460205260408120906105d4610a4d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610c9b16565b610a51565b5060019392505050565b60025460ff1690565b600061056e610620610a4d565b846105fb8560046000610631610a4d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d3216565b6000610679610674610a4d565b6109fa565b6106b45760405162461bcd60e51b81526004018080602001828103825260308152602001806113766030913960400191505060405180910390fd5b61056e8383610d93565b6106cf6106c9610a4d565b82610e85565b50565b60006106de83836109e6565b610725576040805162461bcd60e51b815260206004820152601360248201527219195d881d1c985b9cd9995c8819985a5b1959606a1b604482015290519081900360640190fd5b61056e338484610f81565b600061073d84848461057d565b61078e576040805162461bcd60e51b815260206004820152601760248201527f646576207472616e7366657246726f6d206661696c6564000000000000000000604482015290519081900360640190fd5b610600848484610f81565b6001600160a01b031660009081526003602052604090205490565b6107be8282611064565b5050565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156105505780601f1061052557610100808354040283529160200191610550565b61082d610674610a4d565b6108685760405162461bcd60e51b81526004018080602001828103825260308152602001806113766030913960400191505060405180910390fd5b6106cf816110b8565b61088161087c610a4d565b611100565b565b600061088d611148565b6001600160a01b031663d16ff470336108a4610a13565b6001600160a01b031663fd347d3e6040518163ffffffff1660e01b815260040160206040518083038186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039384166004820152929091166024830152516044808301926000929190829003018186803b15801561095657600080fd5b505afa15801561096a573d6000803e3d6000fd5b5050505061056e8383610e85565b600061056e610985610a4d565b846105fb8560405180606001604052806025815260200161149f60259139600460006109af610a4d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610c9b16565b600061056e6109f3610a4d565b8484610b3d565b6000610a0d60068363ffffffff61115716565b92915050565b6007546001600160a01b031690565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610a965760405162461bcd60e51b815260040180806020018281038252602481526020018061147b6024913960400191505060405180910390fd5b6001600160a01b038216610adb5760405162461bcd60e51b815260040180806020018281038252602281526020018061132e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b825760405162461bcd60e51b81526004018080602001828103825260258152602001806114566025913960400191505060405180910390fd5b6001600160a01b038216610bc75760405162461bcd60e51b81526004018080602001828103825260238152602001806112e96023913960400191505060405180910390fd5b610c0a81604051806060016040528060268152602001611350602691396001600160a01b038616600090815260036020526040902054919063ffffffff610c9b16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054610c3f908263ffffffff610d3216565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610d2a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610cef578181015183820152602001610cd7565b50505050905090810190601f168015610d1c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610d8c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610dee576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600554610e01908263ffffffff610d3216565b6005556001600160a01b038216600090815260036020526040902054610e2d908263ffffffff610d3216565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610eca5760405162461bcd60e51b81526004018080602001828103825260218152602001806114356021913960400191505060405180910390fd5b610f0d8160405180606001604052806022815260200161130c602291396001600160a01b038516600090815260036020526040902054919063ffffffff610c9b16565b6001600160a01b038316600090815260036020526040902055600554610f39908263ffffffff6111be16565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610f89610a13565b6001600160a01b03166306490f476040518163ffffffff1660e01b815260040160206040518083038186803b158015610fc157600080fd5b505afa158015610fd5573d6000803e3d6000fd5b505050506040513d6020811015610feb57600080fd5b50516040805163e35e8cf160e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163e35e8cf191606480830192600092919082900301818387803b15801561104757600080fd5b505af115801561105b573d6000803e3d6000fd5b50505050505050565b61106e8282610e85565b6107be8261107a610a4d565b6105fb84604051806060016040528060248152602001611411602491396001600160a01b0388166000908152600460205260408120906105d4610a4d565b6110c960068263ffffffff61120016565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b61111160068263ffffffff61128116565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b6008546001600160a01b031690565b60006001600160a01b03821661119e5760405162461bcd60e51b81526004018080602001828103825260228152602001806113ef6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6000610d8c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c9b565b61120a8282611157565b1561125c576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b61128b8282611157565b6112c65760405162461bcd60e51b81526004018080602001828103825260218152602001806113a66021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a7231582078cc72359199367e998faa39623d25bb7904547cfdb3a5255d7e481e7b47fc3264736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
-----Decoded View---------------
Arg [0] : _config (address): 0x1D415aa39D647834786EB9B5a333A50e9935b796
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b796
Deployed Bytecode Sourcemap
90415:957:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90415:957:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;3462:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13433:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13433:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12454:91;;;:::i;:::-;;;;;;;;;;;;;;;;14057:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14057:304:0;;;;;;;;;;;;;;;;;:::i;4314:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14770:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14770:210:0;;;;;;;;:::i;21598:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21598:143:0;;;;;;;;:::i;22140:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22140:83:0;;:::i;:::-;;90626:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;90626:186:0;;;;;;;;:::i;90817:223::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;90817:223:0;;;;;;;;;;;;;;;;;:::i;12608:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12608:110:0;-1:-1:-1;;;;;12608:110:0;;:::i;22285:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22285:103:0;;;;;;;;:::i;3664:87::-;;;:::i;20720:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20720:92:0;-1:-1:-1;;;;;20720:92:0;;:::i;20820:79::-;;;:::i;91045:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;91045:189:0;;;;;;;;:::i;15483:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15483:261:0;;;;;;;;:::i;12931:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12931:158:0;;;;;;;;:::i;20603:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20603:109:0;-1:-1:-1;;;;;20603:109:0;;:::i;29495:90::-;;;:::i;:::-;;;;-1:-1:-1;;;;;29495:90:0;;;;;;;;;;;;;;13152:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13152:134:0;;;;;;;;;;:::i;3462:83::-;3532:5;3525:12;;;;;;;;-1:-1:-1;;3525:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3499:13;;3525:12;;3532:5;;3525:12;;3532:5;3525:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3462:83;:::o;13433:152::-;13499:4;13516:39;13525:12;:10;:12::i;:::-;13539:7;13548:6;13516:8;:39::i;:::-;-1:-1:-1;13573:4:0;13433:152;;;;:::o;12454:91::-;12525:12;;12454:91;:::o;14057:304::-;14146:4;14163:36;14173:6;14181:9;14192:6;14163:9;:36::i;:::-;14210:121;14219:6;14227:12;:10;:12::i;:::-;14241:89;14279:6;14241:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14241:19:0;;;;;;:11;:19;;;;;;14261:12;:10;:12::i;:::-;-1:-1:-1;;;;;14241:33:0;;;;;;;;;;;;-1:-1:-1;14241:33:0;;;:89;;:37;:89;:::i;:::-;14210:8;:121::i;:::-;-1:-1:-1;14349:4:0;14057:304;;;;;:::o;4314:83::-;4380:9;;;;4314:83;:::o;14770:210::-;14850:4;14867:83;14876:12;:10;:12::i;:::-;14890:7;14899:50;14938:10;14899:11;:25;14911:12;:10;:12::i;:::-;-1:-1:-1;;;;;14899:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14899:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;21598:143::-;21672:4;20500:22;20509:12;:10;:12::i;:::-;20500:8;:22::i;:::-;20492:83;;;;-1:-1:-1;;;20492:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21689:22;21695:7;21704:6;21689:5;:22::i;22140:83::-;22188:27;22194:12;:10;:12::i;:::-;22208:6;22188:5;:27::i;:::-;22140:83;:::o;90626:186::-;90691:4;90710:22;90719:3;90724:7;90710:8;:22::i;:::-;90702:54;;;;;-1:-1:-1;;;90702:54:0;;;;;;;;;;;;-1:-1:-1;;;90702:54:0;;;;;;;;;;;;;;;90761:30;90766:10;90778:3;90783:7;90761:4;:30::i;90817:223::-;90907:4;90928:33;90941:5;90948:3;90953:7;90928:12;:33::i;:::-;90920:69;;;;;-1:-1:-1;;;90920:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;90994:25;90999:5;91006:3;91011:7;90994:4;:25::i;12608:110::-;-1:-1:-1;;;;;12692:18:0;12665:7;12692:18;;;:9;:18;;;;;;;12608:110::o;22285:103::-;22354:26;22364:7;22373:6;22354:9;:26::i;:::-;22285:103;;:::o;3664:87::-;3736:7;3729:14;;;;;;;;-1:-1:-1;;3729:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3703:13;;3729:14;;3736:7;;3729:14;;3736:7;3729:14;;;;;;;;;;;;;;;;;;;;;;;;20720:92;20500:22;20509:12;:10;:12::i;20500:22::-;20492:83;;;;-1:-1:-1;;;20492:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20785:19;20796:7;20785:10;:19::i;20820:79::-;20864:27;20878:12;:10;:12::i;:::-;20864:13;:27::i;:::-;20820:79::o;91045:189::-;91108:4;91119:18;:16;:18::i;:::-;-1:-1:-1;;;;;91119:32:0;;91152:10;91164:8;:6;:8::i;:::-;-1:-1:-1;;;;;91164:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91164:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91164:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91164:22:0;91119:68;;;-1:-1:-1;;;;;;91119:68:0;;;;;;;-1:-1:-1;;;;;91119:68:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;91119:68:0;;;;;;;;;;;5:2:-1;;;;30:1;27;20:12;5:2;91119:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91119:68:0;;;;91192:21;91198:5;91205:7;91192:5;:21::i;15483:261::-;15568:4;15585:129;15594:12;:10;:12::i;:::-;15608:7;15617:96;15656:15;15617:96;;;;;;;;;;;;;;;;;:11;:25;15629:12;:10;:12::i;:::-;-1:-1:-1;;;;;15617:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15617:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;12931:158::-;13000:4;13017:42;13027:12;:10;:12::i;:::-;13041:9;13052:6;13017:9;:42::i;20603:109::-;20659:4;20683:21;:8;20696:7;20683:21;:12;:21;:::i;:::-;20676:28;20603:109;-1:-1:-1;;20603:109:0:o;29495:90::-;29572:7;;-1:-1:-1;;;;;29572:7:0;29495:90;:::o;13152:134::-;-1:-1:-1;;;;;13251:18:0;;;13224:7;13251:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13152:134::o;5207:98::-;5287:10;5207:98;:::o;18415:338::-;-1:-1:-1;;;;;18509:19:0;;18501:68;;;;-1:-1:-1;;;18501:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18588:21:0;;18580:68;;;;-1:-1:-1;;;18580:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18661:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18713:32;;;;;;;;;;;;;;;;;18415:338;;;:::o;16234:471::-;-1:-1:-1;;;;;16332:20:0;;16324:70;;;;-1:-1:-1;;;16324:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16413:23:0;;16405:71;;;;-1:-1:-1;;;16405:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16509;16531:6;16509:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16509:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16489:17:0;;;;;;;:9;:17;;;;;;:91;;;;16614:20;;;;;;;:32;;16639:6;16614:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16591:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;16662:35;;;;;;;16591:20;;16662:35;;;;;;;;;;;;;16234:471;;;:::o;7306:192::-;7392:7;7428:12;7420:6;;;;7412:29;;;;-1:-1:-1;;;7412:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7412:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7464:5:0;;;7306:192::o;6377:181::-;6435:7;6467:5;;;6491:6;;;;6483:46;;;;;-1:-1:-1;;;6483:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6549:1;6377:181;-1:-1:-1;;;6377:181:0:o;16986:308::-;-1:-1:-1;;;;;17062:21:0;;17054:65;;;;;-1:-1:-1;;;17054:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17147:12;;:24;;17164:6;17147:24;:16;:24;:::i;:::-;17132:12;:39;-1:-1:-1;;;;;17203:18:0;;;;;;:9;:18;;;;;;:30;;17226:6;17203:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17182:18:0;;;;;;:9;:18;;;;;;;;:51;;;;17249:37;;;;;;;17182:18;;;;17249:37;;;;;;;;;;16986:308;;:::o;17627:348::-;-1:-1:-1;;;;;17703:21:0;;17695:67;;;;-1:-1:-1;;;17695:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17796:68;17819:6;17796:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17796:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17775:18:0;;;;;;:9;:18;;;;;:89;17890:12;;:24;;17907:6;17890:24;:16;:24;:::i;:::-;17875:12;:39;17930:37;;;;;;;;17956:1;;-1:-1:-1;;;;;17930:37:0;;;;;;;;;;;;17627:348;;:::o;91239:130::-;91318:8;:6;:8::i;:::-;-1:-1:-1;;;;;91318:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91318:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91318:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91318:17:0;91311:53;;;-1:-1:-1;;;91311:53:0;;-1:-1:-1;;;;;91311:53:0;;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;:53;;;;;-1:-1:-1;;91311:53:0;;;;;;;-1:-1:-1;91311:32:0;:53;;;5:2:-1;;;;30:1;27;20:12;5:2;91311:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91311:53:0;;;;91239:130;;;:::o;18939:232::-;19011:22;19017:7;19026:6;19011:5;:22::i;:::-;19044:119;19053:7;19062:12;:10;:12::i;:::-;19076:86;19115:6;19076:86;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19076:20:0;;;;;;:11;:20;;;;;;19097:12;:10;:12::i;20907:122::-;20964:21;:8;20977:7;20964:21;:12;:21;:::i;:::-;21001:20;;-1:-1:-1;;;;;21001:20:0;;;;;;;;20907:122;:::o;21037:130::-;21097:24;:8;21113:7;21097:24;:15;:24;:::i;:::-;21137:22;;-1:-1:-1;;;;;21137:22:0;;;;;;;;21037:130;:::o;23759:96::-;23840:10;;-1:-1:-1;;;;;23840:10:0;23759:96;:::o;19963:203::-;20035:4;-1:-1:-1;;;;;20060:21:0;;20052:68;;;;-1:-1:-1;;;20052:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20138:20:0;:11;:20;;;;;;;;;;;;;;;19963:203::o;6833:136::-;6891:7;6918:43;6922:1;6925;6918:43;;;;;;;;;;;;;;;;;:3;:43::i;19427:178::-;19505:18;19509:4;19515:7;19505:3;:18::i;:::-;19504:19;19496:63;;;;;-1:-1:-1;;;19496:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19570:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;19570:27:0;19593:4;19570:27;;;19427:178::o;19685:183::-;19765:18;19769:4;19775:7;19765:3;:18::i;:::-;19757:64;;;;-1:-1:-1;;;19757:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19832:20:0;19855:5;19832:20;;;;;;;;;;;:28;;-1:-1:-1;;19832:28:0;;;19685:183::o
Swarm Source
bzzr://dffb01f2ba3c8bee6eb59608a87feb6af970340867d35d88ec02987eecc258ea
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.