ETH Price: $2,431.36 (-0.35%)

Token

COVID19-DATA (C19D)
 

Overview

Max Total Supply

10,000,000 C19D

Holders

2

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x52801054...FEA0135b2
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Property

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MPL-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-03
*/

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.5.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

// File: contracts/interface/IAddressConfig.sol

// SPDX-License-Identifier: MPL-2.0
pragma solidity >=0.5.17;

interface IAddressConfig {
	function token() external view returns (address);

	function allocator() external view returns (address);

	function allocatorStorage() external view returns (address);

	function withdraw() external view returns (address);

	function withdrawStorage() external view returns (address);

	function marketFactory() external view returns (address);

	function marketGroup() external view returns (address);

	function propertyFactory() external view returns (address);

	function propertyGroup() external view returns (address);

	function metricsGroup() external view returns (address);

	function metricsFactory() external view returns (address);

	function policy() external view returns (address);

	function policyFactory() external view returns (address);

	function policySet() external view returns (address);

	function policyGroup() external view returns (address);

	function lockup() external view returns (address);

	function lockupStorage() external view returns (address);

	function voteTimes() external view returns (address);

	function voteTimesStorage() external view returns (address);

	function voteCounter() external view returns (address);

	function voteCounterStorage() external view returns (address);

	function setAllocator(address _addr) external;

	function setAllocatorStorage(address _addr) external;

	function setWithdraw(address _addr) external;

	function setWithdrawStorage(address _addr) external;

	function setMarketFactory(address _addr) external;

	function setMarketGroup(address _addr) external;

	function setPropertyFactory(address _addr) external;

	function setPropertyGroup(address _addr) external;

	function setMetricsFactory(address _addr) external;

	function setMetricsGroup(address _addr) external;

	function setPolicyFactory(address _addr) external;

	function setPolicyGroup(address _addr) external;

	function setPolicySet(address _addr) external;

	function setPolicy(address _addr) external;

	function setToken(address _addr) external;

	function setLockup(address _addr) external;

	function setLockupStorage(address _addr) external;

	function setVoteTimes(address _addr) external;

	function setVoteTimesStorage(address _addr) external;

	function setVoteCounter(address _addr) external;

	function setVoteCounterStorage(address _addr) external;
}

// File: contracts/src/common/config/UsingConfig.sol

pragma solidity 0.5.17;


/**
 * Module for using AddressConfig contracts.
 */
contract UsingConfig {
	address private _config;

	/**
	 * Initialize the argument as AddressConfig address.
	 */
	constructor(address _addressConfig) public {
		_config = _addressConfig;
	}

	/**
	 * Returns the latest AddressConfig instance.
	 */
	function config() internal view returns (IAddressConfig) {
		return IAddressConfig(_config);
	}

	/**
	 * Returns the latest AddressConfig address.
	 */
	function configAddress() external view returns (address) {
		return _config;
	}
}

// File: contracts/interface/IAllocator.sol

pragma solidity >=0.5.17;

interface IAllocator {
	function beforeBalanceChange(
		address _property,
		address _from,
		address _to
	) external;

	function calculateMaxRewardsPerBlock() external view returns (uint256);
}

// File: contracts/interface/IProperty.sol

pragma solidity >=0.5.17;

interface IProperty {
	function author() external view returns (address);

	function changeAuthor(address _nextAuthor) external;

	function changeName(string calldata _name) external;

	function changeSymbol(string calldata _symbol) external;

	function withdraw(address _sender, uint256 _value) external;
}

// File: contracts/interface/IPropertyFactory.sol

pragma solidity >=0.5.17;

interface IPropertyFactory {
	function create(
		string calldata _name,
		string calldata _symbol,
		address _author
	) external returns (address);

	function createAndAuthenticate(
		string calldata _name,
		string calldata _symbol,
		address _market,
		string calldata _args1,
		string calldata _args2,
		string calldata _args3
	) external returns (bool);

	function createChangeAuthorEvent(address _old, address _new) external;

	function createChangeNameEvent(string calldata _old, string calldata _new)
		external;

	function createChangeSymbolEvent(string calldata _old, string calldata _new)
		external;
}

// File: contracts/interface/IPolicy.sol

pragma solidity >=0.5.17;

interface IPolicy {
	function rewards(uint256 _lockups, uint256 _assets)
		external
		view
		returns (uint256);

	function holdersShare(uint256 _amount, 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 shareOfTreasury(uint256 _supply) external view returns (uint256);

	function treasury() external view returns (address);
}

// File: contracts/src/property/Property.sol

pragma solidity 0.5.17;








/**
 * A contract that represents the assets of the user and collects staking from the stakers.
 * Property contract inherits ERC20.
 * Holders of Property contracts(tokens) receive holder rewards according to their share.
 */
contract Property is ERC20, UsingConfig, IProperty {
	using SafeMath for uint256;
	uint8 private constant PROPERTY_DECIMALS = 18;
	uint256 private constant SUPPLY = 10000000000000000000000000;
	address private __author;
	string private __name;
	string private __symbol;
	uint8 private __decimals;

	/**
	 * @dev Initializes the passed value as AddressConfig address, author address, token name, and token symbol.
	 * @param _config AddressConfig address.
	 * @param _own The author address.
	 * @param _name The name of the new Property.
	 * @param _symbol The symbol of the new Property.
	 */
	constructor(
		address _config,
		address _own,
		string memory _name,
		string memory _symbol
	) public UsingConfig(_config) {
		/**
		 * Validates the sender is PropertyFactory contract.
		 */
		require(
			msg.sender == config().propertyFactory(),
			"this is illegal address"
		);
		/**
		 * Sets the author.
		 */
		__author = _own;

		/**
		 * Sets the ERO20 attributes
		 */
		__name = _name;
		__symbol = _symbol;
		__decimals = PROPERTY_DECIMALS;

		/**
		 * Mints to the author and  treasury contract.
		 */
		IPolicy policy = IPolicy(config().policy());
		uint256 toTreasury = policy.shareOfTreasury(SUPPLY);
		uint256 toAuthor = SUPPLY.sub(toTreasury);
		require(toAuthor != 0, "share of author is 0");
		_mint(__author, toAuthor);
		_mint(policy.treasury(), toTreasury);
	}

	/**
	 * @dev Throws if called by any account other than the author.
	 */
	modifier onlyAuthor() {
		require(msg.sender == __author, "illegal sender");
		_;
	}

	/**
	 * @dev Returns the name of the author.
	 * @return The the author address.
	 */
	function author() external view returns (address) {
		return __author;
	}

	/**
	 * @dev Returns the name of the token.
	 * @return The name of the token.
	 */
	function name() external view returns (string memory) {
		return __name;
	}

	/**
	 * @dev Returns the symbol of the token, usually a shorter version of the name.
	 * @return The symbol of the token, usually a shorter version of the name.
	 */
	function symbol() external 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}.
	 * @return The number of decimals used to get its user representation.
	 */
	function decimals() external view returns (uint8) {
		return __decimals;
	}

	/**
	 * @dev Changes the author.
	 * @param _nextAuthor The new author address.
	 */
	function changeAuthor(address _nextAuthor) external onlyAuthor {
		/**
		 * save author information
		 */
		IPropertyFactory(config().propertyFactory()).createChangeAuthorEvent(
			__author,
			_nextAuthor
		);

		/**
		 * Changes the author.
		 */
		__author = _nextAuthor;
	}

	/**
	 * @dev Changes the name.
	 * @param _name The new name.
	 */
	function changeName(string calldata _name) external onlyAuthor {
		IPropertyFactory(config().propertyFactory()).createChangeNameEvent(
			__name,
			_name
		);

		__name = _name;
	}

	/**
	 * @dev Changes the symbol.
	 * @param _symbol The new symbol.
	 */
	function changeSymbol(string calldata _symbol) external onlyAuthor {
		IPropertyFactory(config().propertyFactory()).createChangeSymbolEvent(
			__symbol,
			_symbol
		);

		__symbol = _symbol;
	}

	/**
	 * @dev Hook on `transfer` and call `Withdraw.beforeBalanceChange` function.
	 * @param _to The recipient address.
	 * @param _value The transfer amount.
	 */
	function transfer(address _to, uint256 _value) public returns (bool) {
		/**
		 * Validates the destination is not 0 address.
		 */
		require(_to != address(0), "this is illegal address");
		require(_value != 0, "illegal transfer value");

		/**
		 * Calls Withdraw contract via Allocator contract.
		 * Passing through the Allocator contract is due to the historical reason for the old Property contract.
		 */
		IAllocator(config().allocator()).beforeBalanceChange(
			address(this),
			msg.sender,
			_to
		);

		/**
		 * Calls the transfer of ERC20.
		 */
		_transfer(msg.sender, _to, _value);
		return true;
	}

	/**
	 * @dev Hook on `transferFrom` and call `Withdraw.beforeBalanceChange` function.
	 * @param _from The source address.
	 * @param _to The recipient address.
	 * @param _value The transfer amount.
	 */
	function transferFrom(
		address _from,
		address _to,
		uint256 _value
	) public returns (bool) {
		/**
		 * Validates the source and destination is not 0 address.
		 */
		require(_from != address(0), "this is illegal address");
		require(_to != address(0), "this is illegal address");
		require(_value != 0, "illegal transfer value");

		/**
		 * Calls Withdraw contract via Allocator contract.
		 * Passing through the Allocator contract is due to the historical reason for the old Property contract.
		 */
		IAllocator(config().allocator()).beforeBalanceChange(
			address(this),
			_from,
			_to
		);

		/**
		 * Calls the transfer of ERC20.
		 */
		_transfer(_from, _to, _value);

		/**
		 * Reduces the allowance amount.
		 */
		uint256 allowanceAmount = allowance(_from, msg.sender);
		_approve(
			_from,
			msg.sender,
			allowanceAmount.sub(
				_value,
				"ERC20: transfer amount exceeds allowance"
			)
		);
		return true;
	}

	/**
	 * @dev Transfers the staking amount to the original owner.
	 * @param _sender The Property Contract address as the source.
	 * @param _value The transfer amount.
	 */
	function withdraw(address _sender, uint256 _value) external {
		/**
		 * Validates the sender is Lockup contract.
		 */
		require(msg.sender == config().lockup(), "this is illegal address");

		/**
		 * Transfers the passed amount to the original owner.
		 */
		ERC20 devToken = ERC20(config().token());
		bool result = devToken.transfer(_sender, _value);
		require(result, "dev transfer failed");
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_config","type":"address"},{"internalType":"address","name":"_own","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"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":[],"name":"author","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"address","name":"_nextAuthor","type":"address"}],"name":"changeAuthor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"changeName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_symbol","type":"string"}],"name":"changeSymbol","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001ee838038062001ee8833981810160405260808110156200003757600080fd5b815160208301516040808501805191519395929483019291846401000000008211156200006357600080fd5b9083019060208201858111156200007957600080fd5b82516401000000008111828201881017156200009457600080fd5b82525081516020918201929091019080838360005b83811015620000c3578181015183820152602001620000a9565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b9083019060208201858111156200012b57600080fd5b82516401000000008111828201881017156200014657600080fd5b82525081516020918201929091019080838360005b83811015620001755781810151838201526020016200015b565b50505050905090810190601f168015620001a35780820380516001836020036101000a031916815260200191505b506040525050600380546001600160a01b0319166001600160a01b03871617905550620001cf6200050f565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020857600080fd5b505afa1580156200021d573d6000803e3d6000fd5b505050506040513d60208110156200023457600080fd5b50516001600160a01b0316331462000293576040805162461bcd60e51b815260206004820152601760248201527f7468697320697320696c6c6567616c2061646472657373000000000000000000604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0385161790558151620002c390600590602085019062000767565b508051620002d990600690602084019062000767565b506007805460ff191660121790556000620002fc6001600160e01b036200050f16565b6001600160a01b0316630505c8c96040518163ffffffff1660e01b815260040160206040518083038186803b1580156200033557600080fd5b505afa1580156200034a573d6000803e3d6000fd5b505050506040513d60208110156200036157600080fd5b505160408051636e9a712960e01b81526a084595161401484a000000600482015290519192506000916001600160a01b03841691636e9a7129916024808301926020929190829003018186803b158015620003bb57600080fd5b505afa158015620003d0573d6000803e3d6000fd5b505050506040513d6020811015620003e757600080fd5b505190506000620004106a084595161401484a000000836200051f602090811b6200155717901c565b90508062000465576040805162461bcd60e51b815260206004820152601460248201527f7368617265206f6620617574686f722069732030000000000000000000000000604482015290519081900360640190fd5b60045462000486906001600160a01b0316826001600160e01b036200057016565b62000502836001600160a01b03166361d027b36040518163ffffffff1660e01b815260040160206040518083038186803b158015620004c457600080fd5b505afa158015620004d9573d6000803e3d6000fd5b505050506040513d6020811015620004f057600080fd5b5051836001600160e01b036200057016565b5050505050505062000809565b6003546001600160a01b03165b90565b60006200056983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506200067160201b60201c565b9392505050565b6001600160a01b038216620005cc576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620005e8816002546200070c60201b6200145e1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200061b9183906200145e6200070c821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008184841115620007045760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620006c8578181015183820152602001620006ae565b50505050905090810190601f168015620006f65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101562000569576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007aa57805160ff1916838001178555620007da565b82800160010185558215620007da579182015b82811115620007da578251825591602001919060010190620007bd565b50620007e8929150620007ec565b5090565b6200051c91905b80821115620007e85760008155600101620007f3565b6116cf80620008196000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146103c7578063d13219e8146103f3578063d6c3187114610419578063dd62ed3e14610421578063f3fef3a31461044f5761010b565b806395d89b41146102ff578063a3895fff14610307578063a457c2d714610377578063a6c3e6b9146103a35761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b5780635353a2d81461026757806370a08231146102d95761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b61011861047b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610512565b604080519115158252519081900360200190f35b6101d561052f565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610535565b610225610762565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b03813516906020013561076b565b6102d76004803603602081101561027d57600080fd5b81019060208101813564010000000081111561029857600080fd5b8201836020820111156102aa57600080fd5b803590602001918460018302840111640100000000831117156102cc57600080fd5b5090925090506107bf565b005b6101d5600480360360208110156102ef57600080fd5b50356001600160a01b0316610999565b6101186109b4565b6102d76004803603602081101561031d57600080fd5b81019060208101813564010000000081111561033857600080fd5b82018360208201111561034a57600080fd5b8035906020019184600183028401116401000000008311171561036c57600080fd5b509092509050610a15565b6101b96004803603604081101561038d57600080fd5b506001600160a01b038135169060200135610bea565b6103ab610c58565b604080516001600160a01b039092168252519081900360200190f35b6101b9600480360360408110156103dd57600080fd5b506001600160a01b038135169060200135610c67565b6102d76004803603602081101561040957600080fd5b50356001600160a01b0316610def565b6103ab610f3d565b6101d56004803603604081101561043757600080fd5b506001600160a01b0381358116916020013516610f4c565b6102d76004803603604081101561046557600080fd5b506001600160a01b038135169060200135610f77565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b505050505090505b90565b600061052661051f61117b565b848461117f565b50600192915050565b60025490565b60006001600160a01b03841661058c576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0383166105e1576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b8161062c576040805162461bcd60e51b8152602060048201526016602482015275696c6c6567616c207472616e736665722076616c756560501b604482015290519081900360640190fd5b610634610f3d565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066c57600080fd5b505afa158015610680573d6000803e3d6000fd5b505050506040513d602081101561069657600080fd5b505160408051630224547360e11b81523060048201526001600160a01b038781166024830152868116604483015291519190921691630448a8e691606480830192600092919082900301818387803b1580156106f157600080fd5b505af1158015610705573d6000803e3d6000fd5b5050505061071484848461126b565b60006107208533610f4c565b90506107578533610752866040518060600160405280602881526020016116056028913986919063ffffffff6113c716565b61117f565b506001949350505050565b60075460ff1690565b600061052661077861117b565b84610752856001600061078961117b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61145e16565b6004546001600160a01b0316331461080f576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610817610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561084f57600080fd5b505afa158015610863573d6000803e3d6000fd5b505050506040513d602081101561087957600080fd5b5051604080516346ee86a760e11b8152600481019182526005805460026000196101006001841615020190911604604483018190526001600160a01b0390941693638ddd0d4e9391928792879290918291602482019160640190879080156109225780601f106108f757610100808354040283529160200191610922565b820191906000526020600020905b81548152906001019060200180831161090557829003601f168201915b50508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561096d57600080fd5b505af1158015610981573d6000803e3d6000fd5b50610994925060059150849050836114bf565b505050565b6001600160a01b031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105075780601f106104dc57610100808354040283529160200191610507565b6004546001600160a01b03163314610a65576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610a6d610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa557600080fd5b505afa158015610ab9573d6000803e3d6000fd5b505050506040513d6020811015610acf57600080fd5b50516040805163b761078960e01b8152600481019182526006805460026000196101006001841615020190911604604483018190526001600160a01b039094169363b7610789939192879287929091829160248201916064019087908015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b50508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610bc357600080fd5b505af1158015610bd7573d6000803e3d6000fd5b50610994925060069150849050836114bf565b6000610526610bf761117b565b84610752856040518060600160405280602581526020016116766025913960016000610c2161117b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113c716565b6004546001600160a01b031690565b60006001600160a01b038316610cbe576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b81610d09576040805162461bcd60e51b8152602060048201526016602482015275696c6c6567616c207472616e736665722076616c756560501b604482015290519081900360640190fd5b610d11610f3d565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d6020811015610d7357600080fd5b505160408051630224547360e11b81523060048201523360248201526001600160a01b03868116604483015291519190921691630448a8e691606480830192600092919082900301818387803b158015610dcc57600080fd5b505af1158015610de0573d6000803e3d6000fd5b5050505061052633848461126b565b6004546001600160a01b03163314610e3f576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610e47610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b158015610e7f57600080fd5b505afa158015610e93573d6000803e3d6000fd5b505050506040513d6020811015610ea957600080fd5b505160048054604080516301ff016960e01b81526001600160a01b03928316938101939093528482166024840152519216916301ff01699160448082019260009290919082900301818387803b158015610f0257600080fd5b505af1158015610f16573d6000803e3d6000fd5b5050600480546001600160a01b0319166001600160a01b0394909416939093179092555050565b6003546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f7f610f3d565b6001600160a01b03166306490f476040518163ffffffff1660e01b815260040160206040518083038186803b158015610fb757600080fd5b505afa158015610fcb573d6000803e3d6000fd5b505050506040513d6020811015610fe157600080fd5b50516001600160a01b03163314611039576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b6000611043610f3d565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561107b57600080fd5b505afa15801561108f573d6000803e3d6000fd5b505050506040513d60208110156110a557600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291519293506000929184169163a9059cbb9160448082019260209290919082900301818787803b1580156110ff57600080fd5b505af1158015611113573d6000803e3d6000fd5b505050506040513d602081101561112957600080fd5b5051905080611175576040805162461bcd60e51b815260206004820152601360248201527219195d881d1c985b9cd9995c8819985a5b1959606a1b604482015290519081900360640190fd5b50505050565b3390565b6001600160a01b0383166111c45760405162461bcd60e51b81526004018080602001828103825260248152602001806116526024913960400191505060405180910390fd5b6001600160a01b0382166112095760405162461bcd60e51b81526004018080602001828103825260228152602001806115bd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112b05760405162461bcd60e51b815260040180806020018281038252602581526020018061162d6025913960400191505060405180910390fd5b6001600160a01b0382166112f55760405162461bcd60e51b815260040180806020018281038252602381526020018061159a6023913960400191505060405180910390fd5b611338816040518060600160405280602681526020016115df602691396001600160a01b038616600090815260208190526040902054919063ffffffff6113c716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461136d908263ffffffff61145e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561141b578181015183820152602001611403565b50505050905090810190601f1680156114485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115005782800160ff1982351617855561152d565b8280016001018555821561152d579182015b8281111561152d578235825591602001919060010190611512565b5061153992915061153d565b5090565b61050f91905b808211156115395760008155600101611543565b60006114b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202457b57d8ba163deb038941321b8d6381cd4d78c2bfaf8209650b693c7b1556564736f6c634300051100320000000000000000000000001d415aa39d647834786eb9b5a333a50e9935b79600000000000000000000000053236cf2c19470f8b9be001534111e001513be4f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000004486944650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044849444500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806395d89b41116100a2578063a9059cbb11610071578063a9059cbb146103c7578063d13219e8146103f3578063d6c3187114610419578063dd62ed3e14610421578063f3fef3a31461044f5761010b565b806395d89b41146102ff578063a3895fff14610307578063a457c2d714610377578063a6c3e6b9146103a35761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b5780635353a2d81461026757806370a08231146102d95761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b61011861047b565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b038135169060200135610512565b604080519115158252519081900360200190f35b6101d561052f565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b03813581169160208101359091169060400135610535565b610225610762565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b03813516906020013561076b565b6102d76004803603602081101561027d57600080fd5b81019060208101813564010000000081111561029857600080fd5b8201836020820111156102aa57600080fd5b803590602001918460018302840111640100000000831117156102cc57600080fd5b5090925090506107bf565b005b6101d5600480360360208110156102ef57600080fd5b50356001600160a01b0316610999565b6101186109b4565b6102d76004803603602081101561031d57600080fd5b81019060208101813564010000000081111561033857600080fd5b82018360208201111561034a57600080fd5b8035906020019184600183028401116401000000008311171561036c57600080fd5b509092509050610a15565b6101b96004803603604081101561038d57600080fd5b506001600160a01b038135169060200135610bea565b6103ab610c58565b604080516001600160a01b039092168252519081900360200190f35b6101b9600480360360408110156103dd57600080fd5b506001600160a01b038135169060200135610c67565b6102d76004803603602081101561040957600080fd5b50356001600160a01b0316610def565b6103ab610f3d565b6101d56004803603604081101561043757600080fd5b506001600160a01b0381358116916020013516610f4c565b6102d76004803603604081101561046557600080fd5b506001600160a01b038135169060200135610f77565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b505050505090505b90565b600061052661051f61117b565b848461117f565b50600192915050565b60025490565b60006001600160a01b03841661058c576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b6001600160a01b0383166105e1576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b8161062c576040805162461bcd60e51b8152602060048201526016602482015275696c6c6567616c207472616e736665722076616c756560501b604482015290519081900360640190fd5b610634610f3d565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066c57600080fd5b505afa158015610680573d6000803e3d6000fd5b505050506040513d602081101561069657600080fd5b505160408051630224547360e11b81523060048201526001600160a01b038781166024830152868116604483015291519190921691630448a8e691606480830192600092919082900301818387803b1580156106f157600080fd5b505af1158015610705573d6000803e3d6000fd5b5050505061071484848461126b565b60006107208533610f4c565b90506107578533610752866040518060600160405280602881526020016116056028913986919063ffffffff6113c716565b61117f565b506001949350505050565b60075460ff1690565b600061052661077861117b565b84610752856001600061078961117b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61145e16565b6004546001600160a01b0316331461080f576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610817610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b15801561084f57600080fd5b505afa158015610863573d6000803e3d6000fd5b505050506040513d602081101561087957600080fd5b5051604080516346ee86a760e11b8152600481019182526005805460026000196101006001841615020190911604604483018190526001600160a01b0390941693638ddd0d4e9391928792879290918291602482019160640190879080156109225780601f106108f757610100808354040283529160200191610922565b820191906000526020600020905b81548152906001019060200180831161090557829003601f168201915b50508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b15801561096d57600080fd5b505af1158015610981573d6000803e3d6000fd5b50610994925060059150849050836114bf565b505050565b6001600160a01b031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105075780601f106104dc57610100808354040283529160200191610507565b6004546001600160a01b03163314610a65576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610a6d610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa557600080fd5b505afa158015610ab9573d6000803e3d6000fd5b505050506040513d6020811015610acf57600080fd5b50516040805163b761078960e01b8152600481019182526006805460026000196101006001841615020190911604604483018190526001600160a01b039094169363b7610789939192879287929091829160248201916064019087908015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b50508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610bc357600080fd5b505af1158015610bd7573d6000803e3d6000fd5b50610994925060069150849050836114bf565b6000610526610bf761117b565b84610752856040518060600160405280602581526020016116766025913960016000610c2161117b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6113c716565b6004546001600160a01b031690565b60006001600160a01b038316610cbe576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b81610d09576040805162461bcd60e51b8152602060048201526016602482015275696c6c6567616c207472616e736665722076616c756560501b604482015290519081900360640190fd5b610d11610f3d565b6001600160a01b031663aa5dcecc6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d4957600080fd5b505afa158015610d5d573d6000803e3d6000fd5b505050506040513d6020811015610d7357600080fd5b505160408051630224547360e11b81523060048201523360248201526001600160a01b03868116604483015291519190921691630448a8e691606480830192600092919082900301818387803b158015610dcc57600080fd5b505af1158015610de0573d6000803e3d6000fd5b5050505061052633848461126b565b6004546001600160a01b03163314610e3f576040805162461bcd60e51b815260206004820152600e60248201526d34b63632b3b0b61039b2b73232b960911b604482015290519081900360640190fd5b610e47610f3d565b6001600160a01b031663a3db54b06040518163ffffffff1660e01b815260040160206040518083038186803b158015610e7f57600080fd5b505afa158015610e93573d6000803e3d6000fd5b505050506040513d6020811015610ea957600080fd5b505160048054604080516301ff016960e01b81526001600160a01b03928316938101939093528482166024840152519216916301ff01699160448082019260009290919082900301818387803b158015610f0257600080fd5b505af1158015610f16573d6000803e3d6000fd5b5050600480546001600160a01b0319166001600160a01b0394909416939093179092555050565b6003546001600160a01b031690565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f7f610f3d565b6001600160a01b03166306490f476040518163ffffffff1660e01b815260040160206040518083038186803b158015610fb757600080fd5b505afa158015610fcb573d6000803e3d6000fd5b505050506040513d6020811015610fe157600080fd5b50516001600160a01b03163314611039576040805162461bcd60e51b81526020600482015260176024820152767468697320697320696c6c6567616c206164647265737360481b604482015290519081900360640190fd5b6000611043610f3d565b6001600160a01b031663fc0c546a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561107b57600080fd5b505afa15801561108f573d6000803e3d6000fd5b505050506040513d60208110156110a557600080fd5b50516040805163a9059cbb60e01b81526001600160a01b0386811660048301526024820186905291519293506000929184169163a9059cbb9160448082019260209290919082900301818787803b1580156110ff57600080fd5b505af1158015611113573d6000803e3d6000fd5b505050506040513d602081101561112957600080fd5b5051905080611175576040805162461bcd60e51b815260206004820152601360248201527219195d881d1c985b9cd9995c8819985a5b1959606a1b604482015290519081900360640190fd5b50505050565b3390565b6001600160a01b0383166111c45760405162461bcd60e51b81526004018080602001828103825260248152602001806116526024913960400191505060405180910390fd5b6001600160a01b0382166112095760405162461bcd60e51b81526004018080602001828103825260228152602001806115bd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112b05760405162461bcd60e51b815260040180806020018281038252602581526020018061162d6025913960400191505060405180910390fd5b6001600160a01b0382166112f55760405162461bcd60e51b815260040180806020018281038252602381526020018061159a6023913960400191505060405180910390fd5b611338816040518060600160405280602681526020016115df602691396001600160a01b038616600090815260208190526040902054919063ffffffff6113c716565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461136d908263ffffffff61145e16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114565760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561141b578181015183820152602001611403565b50505050905090810190601f1680156114485780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156114b8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106115005782800160ff1982351617855561152d565b8280016001018555821561152d579182015b8281111561152d578235825591602001919060010190611512565b5061153992915061153d565b5090565b61050f91905b808211156115395760008155600101611543565b60006114b883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506113c756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202457b57d8ba163deb038941321b8d6381cd4d78c2bfaf8209650b693c7b1556564736f6c63430005110032

Deployed Bytecode Sourcemap

23685:6415:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23685:6415:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25550:77;;;:::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;25550:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12136:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12136:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11157:91;;;:::i;:::-;;;;;;;;;;;;;;;;28522:979;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28522:979:0;;;;;;;;;;;;;;;;;:::i;26481:77::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13473:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13473:210:0;;;;;;;;:::i;27020:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27020:188:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;27020:188:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27020:188:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;27020:188:0;;-1:-1:-1;27020:188:0;-1:-1:-1;27020:188:0;:::i;:::-;;11311:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11311:110:0;-1:-1:-1;;;;;11311:110:0;;:::i;25803:81::-;;;:::i;27291:202::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27291:202:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;27291:202:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27291:202:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;27291:202:0;;-1:-1:-1;27291:202:0;-1:-1:-1;27291:202:0;:::i;14186:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14186:261:0;;;;;;;;:::i;25381:75::-;;;:::i;:::-;;;;-1:-1:-1;;;;;25381:75:0;;;;;;;;;;;;;;27668:637;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27668:637:0;;;;;;;;:::i;26653:290::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26653:290:0;-1:-1:-1;;;;;26653:290:0;;:::i;20990:81::-;;;:::i;11855:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11855:134:0;;;;;;;;;;:::i;29685:412::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29685:412:0;;;;;;;;:::i;25550:77::-;25616:6;25609:13;;;;;;;;-1:-1:-1;;25609:13:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25589;;25609;;25616:6;;25609:13;;25616:6;25609:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25550:77;;:::o;12136:152::-;12202:4;12219:39;12228:12;:10;:12::i;:::-;12242:7;12251:6;12219:8;:39::i;:::-;-1:-1:-1;12276:4:0;12136:152;;;;:::o;11157:91::-;11228:12;;11157:91;:::o;28522:979::-;28617:4;-1:-1:-1;;;;;28711:19:0;;28703:55;;;;;-1:-1:-1;;;28703:55:0;;;;;;;;;;;;-1:-1:-1;;;28703:55:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28771:17:0;;28763:53;;;;;-1:-1:-1;;;28763:53:0;;;;;;;;;;;;-1:-1:-1;;;28763:53:0;;;;;;;;;;;;;;;28829:11;28821:46;;;;;-1:-1:-1;;;28821:46:0;;;;;;;;;;;;-1:-1:-1;;;28821:46:0;;;;;;;;;;;;;;;29061:8;:6;:8::i;:::-;-1:-1:-1;;;;;29061:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29061:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29061:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29061:20:0;29050:96;;;-1:-1:-1;;;29050:96:0;;29116:4;29050:96;;;;-1:-1:-1;;;;;29050:96:0;;;;;;;;;;;;;;;;:52;;;;;;;:96;;;;;-1:-1:-1;;29050:96:0;;;;;;;-1:-1:-1;29050:52:0;:96;;;5:2:-1;;;;30:1;27;20:12;5:2;29050:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29050:96:0;;;;29202:29;29212:5;29219:3;29224:6;29202:9;:29::i;:::-;29288:23;29314:28;29324:5;29331:10;29314:9;:28::i;:::-;29288:54;;29347:133;29361:5;29372:10;29388:87;29414:6;29388:87;;;;;;;;;;;;;;;;;:15;;:87;;:19;:87;:::i;:::-;29347:8;:133::i;:::-;-1:-1:-1;29492:4:0;;28522:979;-1:-1:-1;;;;28522:979:0:o;26481:77::-;26543:10;;;;26481:77;:::o;13473:210::-;13553:4;13570:83;13579:12;:10;:12::i;:::-;13593:7;13602:50;13641:10;13602:11;:25;13614:12;:10;:12::i;:::-;-1:-1:-1;;;;;13602:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13602:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;27020:188::-;25247:8;;-1:-1:-1;;;;;25247:8:0;25233:10;:22;25225:49;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;;;;27105:8;:6;:8::i;:::-;-1:-1:-1;;;;;27105:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27105:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27105:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27105:26:0;27088:94;;;-1:-1:-1;;;27088:94:0;;;;;;;;27160:6;27088:94;;;-1:-1:-1;;27088:94:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27088:66:0;;;;;;27160:6;;27172:5;;;;27088:94;;;;;;;;;;;27160:6;;27088:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27088:94:0;;;;;;;;;;;;;;;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;27088:94:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27088:94:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;27189:14:0;;-1:-1:-1;27189:6:0;;-1:-1:-1;27198:5:0;;-1:-1:-1;27198:5:0;27189:14;:::i;:::-;;27020:188;;:::o;11311:110::-;-1:-1:-1;;;;;11395:18:0;11368:7;11395:18;;;;;;;;;;;;11311:110::o;25803:81::-;25871:8;25864:15;;;;;;;;-1:-1:-1;;25864:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25844:13;;25864:15;;25871:8;;25864:15;;25871:8;25864:15;;;;;;;;;;;;;;;;;;;;;;;;27291:202;25247:8;;-1:-1:-1;;;;;25247:8:0;25233:10;:22;25225:49;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;;;;27380:8;:6;:8::i;:::-;-1:-1:-1;;;;;27380:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27380:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27380:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27380:26:0;27363:100;;;-1:-1:-1;;;27363:100:0;;;;;;;;27437:8;27363:100;;;-1:-1:-1;;27363:100:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27363:68:0;;;;;;27437:8;;27451:7;;;;27363:100;;;;;;;;;;;27437:8;;27363:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27363:100:0;;;;;;;;;;;;;;;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;27363:100:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27363:100:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;27470:18:0;;-1:-1:-1;27470:8:0;;-1:-1:-1;27481:7:0;;-1:-1:-1;27481:7:0;27470:18;:::i;14186:261::-;14271:4;14288:129;14297:12;:10;:12::i;:::-;14311:7;14320:96;14359:15;14320:96;;;;;;;;;;;;;;;;;:11;:25;14332:12;:10;:12::i;:::-;-1:-1:-1;;;;;14320:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14320:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;25381:75::-;25443:8;;-1:-1:-1;;;;;25443:8:0;25381:75;:::o;27668:637::-;27731:4;-1:-1:-1;;;;;27814:17:0;;27806:53;;;;;-1:-1:-1;;;27806:53:0;;;;;;;;;;;;-1:-1:-1;;;27806:53:0;;;;;;;;;;;;;;;27872:11;27864:46;;;;;-1:-1:-1;;;27864:46:0;;;;;;;;;;;;-1:-1:-1;;;27864:46:0;;;;;;;;;;;;;;;28104:8;:6;:8::i;:::-;-1:-1:-1;;;;;28104:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28104:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28104:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28104:20:0;28093:101;;;-1:-1:-1;;;28093:101:0;;28159:4;28093:101;;;;28170:10;28093:101;;;;-1:-1:-1;;;;;28093:101:0;;;;;;;;;:52;;;;;;;:101;;;;;-1:-1:-1;;28093:101:0;;;;;;;-1:-1:-1;28093:52:0;:101;;;5:2:-1;;;;30:1;27;20:12;5:2;28093:101:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28093:101:0;;;;28250:34;28260:10;28272:3;28277:6;28250:9;:34::i;26653:290::-;25247:8;;-1:-1:-1;;;;;25247:8:0;25233:10;:22;25225:49;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;-1:-1:-1;;;25225:49:0;;;;;;;;;;;;;;;26782:8;:6;:8::i;:::-;-1:-1:-1;;;;;26782:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26782:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26782:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26782:26:0;26839:8;;;26765:104;;;-1:-1:-1;;;26765:104:0;;-1:-1:-1;;;;;26839:8:0;;;26765:104;;;;;;;;;;;;;;;:68;;;;;:104;;;;;26839:8;;26765:104;;;;;;;;26839:8;26765:68;:104;;;5:2:-1;;;;30:1;27;20:12;5:2;26765:104:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26916:8:0;:22;;-1:-1:-1;;;;;;26916:22:0;-1:-1:-1;;;;;26916:22:0;;;;;;;;;;;-1:-1:-1;;26653:290:0:o;20990:81::-;21059:7;;-1:-1:-1;;;;;21059:7:0;20990:81;:::o;11855:134::-;-1:-1:-1;;;;;11954:18:0;;;11927:7;11954:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11855:134::o;29685:412::-;29833:8;:6;:8::i;:::-;-1:-1:-1;;;;;29833:15:0;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29833:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29833:17:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29833:17:0;-1:-1:-1;;;;;29819:31:0;:10;:31;29811:67;;;;;-1:-1:-1;;;29811:67:0;;;;;;;;;;;;-1:-1:-1;;;29811:67:0;;;;;;;;;;;;;;;29956:14;29979:8;:6;:8::i;:::-;-1:-1:-1;;;;;29979:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29979:16:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29979:16:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29979:16:0;30015:34;;;-1:-1:-1;;;30015:34:0;;-1:-1:-1;;;;;30015:34:0;;;;;;;;;;;;;;;29979:16;;-1:-1:-1;30001:11:0;;30015:17;;;;;;:34;;;;;29979:16;;30015:34;;;;;;;;30001:11;30015:17;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;30015:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30015:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30015:34:0;;-1:-1:-1;30015:34:0;30054:38;;;;;-1:-1:-1;;;30054:38:0;;;;;;;;;;;;-1:-1:-1;;;30054:38:0;;;;;;;;;;;;;;;29685:412;;;;:::o;6368:98::-;6448:10;6368:98;:::o;17117:338::-;-1:-1:-1;;;;;17211:19:0;;17203:68;;;;-1:-1:-1;;;17203:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17290:21:0;;17282:68;;;;-1:-1:-1;;;17282:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17363:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17415:32;;;;;;;;;;;;;;;;;17117:338;;;:::o;14937:471::-;-1:-1:-1;;;;;15035:20:0;;15027:70;;;;-1:-1:-1;;;15027:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15116:23:0;;15108:71;;;;-1:-1:-1;;;15108:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212;15234:6;15212:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15212:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15192:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15317:20;;;;;;;:32;;15342:6;15317:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15294:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15365:35;;;;;;;15294:20;;15365:35;;;;;;;;;;;;;14937:471;;;:::o;1842:192::-;1928:7;1964:12;1956:6;;;;1948:29;;;;-1:-1:-1;;;1948: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;1948:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2000:5:0;;;1842:192::o;913:181::-;971:7;1003:5;;;1027:6;;;;1019:46;;;;;-1:-1:-1;;;1019:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1085:1;913:181;-1:-1:-1;;;913:181:0:o;23685:6415::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;23685:6415:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23685:6415:0;;;-1:-1:-1;23685:6415:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;1369:136;1427:7;1454:43;1458:1;1461;1454:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

bzzr://2457b57d8ba163deb038941321b8d6381cd4d78c2bfaf8209650b693c7b15565
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.