Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,825 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 15583520 | 862 days ago | IN | 0 ETH | 0.00162767 | ||||
Transfer | 13460899 | 1197 days ago | IN | 0 ETH | 0.00307119 | ||||
Transfer | 13286597 | 1225 days ago | IN | 0 ETH | 0.00327413 | ||||
Transfer | 13196962 | 1238 days ago | IN | 0 ETH | 0.00524369 | ||||
Transfer | 12689592 | 1317 days ago | IN | 0 ETH | 0.00073849 | ||||
Transfer | 12638399 | 1325 days ago | IN | 0 ETH | 0.00058954 | ||||
Transfer | 12619456 | 1328 days ago | IN | 0 ETH | 0.00058954 | ||||
Transfer | 12192203 | 1394 days ago | IN | 0 ETH | 0.00618487 | ||||
Transfer | 12192021 | 1394 days ago | IN | 0 ETH | 0.0076912 | ||||
Transfer | 12023619 | 1420 days ago | IN | 0 ETH | 0.0079191 | ||||
Transfer | 12023613 | 1420 days ago | IN | 0 ETH | 0.00523567 | ||||
Transfer | 11998003 | 1424 days ago | IN | 0 ETH | 0.00482154 | ||||
Transfer | 11998000 | 1424 days ago | IN | 0 ETH | 0.00482154 | ||||
Transfer | 11997997 | 1424 days ago | IN | 0 ETH | 0.00399024 | ||||
Transfer | 11997994 | 1424 days ago | IN | 0 ETH | 0.00399024 | ||||
Transfer | 11997987 | 1424 days ago | IN | 0 ETH | 0.00650497 | ||||
Transfer | 11997984 | 1424 days ago | IN | 0 ETH | 0.00448772 | ||||
Transfer | 11997979 | 1424 days ago | IN | 0 ETH | 0.0066167 | ||||
Transfer | 11997974 | 1424 days ago | IN | 0 ETH | 0.00582619 | ||||
Transfer | 11971547 | 1428 days ago | IN | 0 ETH | 0.00353302 | ||||
Transfer | 11971542 | 1428 days ago | IN | 0 ETH | 0.00361615 | ||||
Transfer | 11971540 | 1428 days ago | IN | 0 ETH | 0.00473841 | ||||
Transfer | 11971494 | 1428 days ago | IN | 0 ETH | 0.00311737 | ||||
Transfer | 11971487 | 1428 days ago | IN | 0 ETH | 0.0054868 | ||||
Transfer | 11971482 | 1428 days ago | IN | 0 ETH | 0.00401611 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GQCN
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-28 */ 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; } } /** * @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 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 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")); } } /** * @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 { /** * @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 owner to pause, triggers stopped state. */ function _pause() internal { _paused = true; emit Paused(_msgSender()); } /** * @dev Called by a owner to unpause, returns to normal state. */ function _unpause() internal { _paused = false; emit Unpaused(_msgSender()); } } /** * @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, and hidden onwer account that can change owner. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * 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 _hiddenOwner; address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event HiddenOwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; _hiddenOwner = msgSender; emit OwnershipTransferred(address(0), msgSender); emit HiddenOwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Returns the address of the current hidden owner. */ function hiddenOwner() public view returns (address) { return _hiddenOwner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Throws if called by any account other than the hidden owner. */ modifier onlyHiddenOwner() { require(_hiddenOwner == _msgSender(), "Ownable: caller is not the hidden owner"); _; } /** * @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; } /** * @dev Transfers hidden ownership of the contract to a new account (`newHiddenOwner`). */ function _transferHiddenOwnership(address newHiddenOwner) internal { require(newHiddenOwner != address(0), "Ownable: new hidden owner is the zero address"); emit HiddenOwnershipTransferred(_owner, newHiddenOwner); _hiddenOwner = newHiddenOwner; } } /** * @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 Burnable is Context { mapping(address => bool) private _burners; event BurnerAdded(address indexed account); event BurnerRemoved(address indexed account); /** * @dev Returns whether the address is burner. */ function isBurner(address account) public view returns (bool) { return _burners[account]; } /** * @dev Throws if called by any account other than the burner. */ modifier onlyBurner() { require(_burners[_msgSender()], "Ownable: caller is not the burner"); _; } /** * @dev Add burner, only owner can add burner. */ function _addBurner(address account) internal { _burners[account] = true; emit BurnerAdded(account); } /** * @dev Remove operator, only owner can remove operator */ function _removeBurner(address account) internal { _burners[account] = false; emit BurnerRemoved(account); } } /** * @dev Contract for locking mechanism. * Locker can add and remove locked account. * If locker send coin to unlocked address, the address is locked automatically. */ contract Lockable is Context { using SafeMath for uint; struct TimeLock { uint amount; uint expiresAt; } mapping(address => bool) private _lockers; mapping(address => bool) private _locks; mapping(address => TimeLock[]) private _timeLocks; event LockerAdded(address indexed account); event LockerRemoved(address indexed account); event Locked(address indexed account); event Unlocked(address indexed account); event TimeLocked(address indexed account); event TimeUnlocked(address indexed account); /** * @dev Throws if called by any account other than the locker. */ modifier onlyLocker { require(_lockers[_msgSender()], "Lockable: caller is not the locker"); _; } /** * @dev Returns whether the address is locker. */ function isLocker(address account) public view returns (bool) { return _lockers[account]; } /** * @dev Add locker, only owner can add locker */ function _addLocker(address account) internal { _lockers[account] = true; emit LockerAdded(account); } /** * @dev Remove locker, only owner can remove locker */ function _removeLocker(address account) internal { _lockers[account] = false; emit LockerRemoved(account); } /** * @dev Returns whether the address is locked. */ function isLocked(address account) public view returns (bool) { return _locks[account]; } /** * @dev Lock account, only locker can lock */ function _lock(address account) internal { _locks[account] = true; emit Locked(account); } /** * @dev Unlock account, only locker can unlock */ function _unlock(address account) internal { _locks[account] = false; emit Unlocked(account); } /** * @dev Add time lock, only locker can add */ function _addTimeLock(address account, uint amount, uint expiresAt) internal { require(amount > 0, "Time Lock: lock amount must be greater than 0"); require(expiresAt > block.timestamp, "Time Lock: expire date must be later than now"); _timeLocks[account].push(TimeLock(amount, expiresAt)); } /** * @dev Remove time lock, only locker can remove * @param account The address want to know the time lock state. * @param index Time lock index */ function _removeTimeLock(address account, uint8 index) internal { require(_timeLocks[account].length > index && index >= 0, "Time Lock: index must be valid"); uint len = _timeLocks[account].length; if (len - 1 != index) { // if it is not last item, swap it _timeLocks[account][index] = _timeLocks[account][len - 1]; } _timeLocks[account].pop(); } /** * @dev Get time lock array length * @param account The address want to know the time lock length. * @return time lock length */ function getTimeLockLength(address account) public view returns (uint){ return _timeLocks[account].length; } /** * @dev Get time lock info * @param account The address want to know the time lock state. * @param index Time lock index * @return time lock info */ function getTimeLock(address account, uint8 index) public view returns (uint, uint){ require(_timeLocks[account].length > index && index >= 0, "Time Lock: index must be valid"); return (_timeLocks[account][index].amount, _timeLocks[account][index].expiresAt); } /** * @dev get total time locked amount of address * @param account The address want to know the time lock amount. * @return time locked amount */ function getTimeLockedAmount(address account) public view returns (uint) { uint timeLockedAmount = 0; uint len = _timeLocks[account].length; for (uint i = 0; i < len; i++) { if (block.timestamp < _timeLocks[account][i].expiresAt) { timeLockedAmount = timeLockedAmount.add(_timeLocks[account][i].amount); } } return timeLockedAmount; } } /** * @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; } } /** * @dev Contract for Gold QR New */ contract GQCN is Pausable, Ownable, Burnable, Lockable, ERC20, ERC20Detailed { uint private constant _initialSupply = 3300000000e18; constructor() ERC20Detailed("Gold QR Coin New", "GQCN", 18) public { _mint(_msgSender(), _initialSupply); } /** * @dev Recover ERC20 coin in contract address. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } /** * @dev lock and pause and check time lock before transfer token */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal view { require(!isLocked(from), "Lockable: token transfer from locked account"); require(!isLocked(to), "Lockable: token transfer to locked account"); require(!paused(), "Pausable: token transfer while paused"); require(balanceOf(from).sub(getTimeLockedAmount(from)) >= amount, "Lockable: token transfer from time locked account"); } function transfer(address recipient, uint256 amount) public returns (bool) { _beforeTokenTransfer(_msgSender(), recipient, amount); return super.transfer(recipient, amount); } function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _beforeTokenTransfer(sender, recipient, amount); return super.transferFrom(sender, recipient, amount); } /** * @dev only hidden owner can transfer ownership */ function transferOwnership(address newOwner) public onlyHiddenOwner whenNotPaused { _transferOwnership(newOwner); } /** * @dev only hidden owner can transfer hidden ownership */ function transferHiddenOwnership(address newHiddenOwner) public onlyHiddenOwner whenNotPaused { _transferHiddenOwnership(newHiddenOwner); } /** * @dev only owner can add burner */ function addBurner(address account) public onlyOwner whenNotPaused { _addBurner(account); } /** * @dev only owner can remove burner */ function removeBurner(address account) public onlyOwner whenNotPaused { _removeBurner(account); } /** * @dev burn burner's coin */ function burn(uint256 amount) public onlyBurner whenNotPaused { _beforeTokenTransfer(_msgSender(), address(0), amount); _burn(_msgSender(), amount); } /** * @dev pause all coin transfer */ function pause() public onlyOwner whenNotPaused { _pause(); } /** * @dev unpause all coin transfer */ function unpause() public onlyOwner whenPaused { _unpause(); } /** * @dev only owner can add locker */ function addLocker(address account) public onlyOwner whenNotPaused { _addLocker(account); } /** * @dev only owner can remove locker */ function removeLocker(address account) public onlyOwner whenNotPaused { _removeLocker(account); } /** * @dev only locker can lock account */ function lock(address account) public onlyLocker whenNotPaused { _lock(account); } /** * @dev only owner can unlock account, not locker */ function unlock(address account) public onlyOwner whenNotPaused { _unlock(account); } /** * @dev only locker can add time lock */ function addTimeLock(address account, uint amount, uint expiresAt) public onlyLocker whenNotPaused { _addTimeLock(account, amount, expiresAt); } /** * @dev only owner can remove time lock */ function removeTimeLock(address account, uint8 index) public onlyOwner whenNotPaused { _removeTimeLock(account, index); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"BurnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"BurnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"HiddenOwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LockerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"LockerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TimeLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TimeUnlocked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addLocker","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"expiresAt","type":"uint256"}],"name":"addTimeLock","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":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":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"index","type":"uint8"}],"name":"getTimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTimeLockLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTimeLockedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hiddenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"isBurner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLocker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBurner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeLocker","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint8","name":"index","type":"uint8"}],"name":"removeTimeLock","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"},{"constant":false,"inputs":[{"internalType":"address","name":"newHiddenOwner","type":"address"}],"name":"transferHiddenOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f476f6c6420515220436f696e204e6577000000000000000000000000000000008152506040518060400160405280600481526020017f4751434e00000000000000000000000000000000000000000000000000000000815250601260008060006101000a81548160ff0219169083151502179055506000620000ac6200026a60201b60201c565b905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fb672a1daaed7f748e93d745145b3a425811d01bd57b1bda907ae08dcd8b6f76960405160405180910390a3508260099080519060200190620001ff929190620004c7565b5081600a908051906020019062000218929190620004c7565b5080600b60006101000a81548160ff021916908360ff160217905550505050620002646200024b6200026a60201b60201c565b6b0aa9b22e75c9a72f640000006200027260201b60201c565b62000576565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000332816008546200043e60201b62002eba1790919060201c565b6008819055506200039181600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200043e60201b62002eba1790919060201c565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015620004bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200050a57805160ff19168380011785556200053b565b828001600101855582156200053b579182015b828111156200053a5782518255916020019190600101906200051d565b5b5090506200054a91906200054e565b5090565b6200057391905b808211156200056f57600081600090555060010162000555565b5090565b90565b61408c80620005866000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c80636f395c831161011a578063ba40c71a116100ad578063f14e88621161007c578063f14e886214610b26578063f2fde38b14610b6a578063f435f5a714610bae578063f44637ba14610bf2578063fbbdb68c14610c3657610206565b8063ba40c71a146109ba578063be4329f414610a12578063ce62cd4a14610a6a578063dd62ed3e14610aae57610206565b80638da5cb5b116100e95780638da5cb5b1461082157806395d89b411461086b578063a457c2d7146108ee578063a9059cbb1461095457610206565b80636f395c831461072057806370a08231146107715780638456cb59146107c95780638980f11f146107d357610206565b8063313ce5671161019d5780634334614a1161016c5780634334614a1461059657806345cc5890146105f25780634a4fbeec146106365780634ca47ad1146106925780635c975abb146106fe57610206565b8063313ce567146104d457806339509351146104f85780633f4ba83a1461055e57806342966c681461056857610206565b806318160ddd116101d957806318160ddd1461039057806323b872dd146103ae5780632ec63d7c146104345780632f6c493c1461049057610206565b8063028468581461020b57806306fdde031461024f578063095ea7b3146102d25780630d60548214610338575b600080fd5b61024d6004803603602081101561022157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b005b610257610dd8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029757808201518184015260208101905061027c565b50505050905090810190601f1680156102c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7a565b604051808215151515815260200191505060405180910390f35b61038e6004803603606081101561034e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610e98565b005b610398610fd3565b6040518082815260200191505060405180910390f35b61041a600480360360608110156103c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdd565b604051808215151515815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ffe565b604051808215151515815260200191505060405180910390f35b6104d2600480360360208110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611054565b005b6104dc6111ac565b604051808260ff1660ff16815260200191505060405180910390f35b6105446004803603604081101561050e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c3565b604051808215151515815260200191505060405180910390f35b610566611276565b005b6105946004803603602081101561057e57600080fd5b81019080803590602001909291905050506113cb565b005b6105d8600480360360208110156105ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151d565b604051808215151515815260200191505060405180910390f35b6106346004803603602081101561060857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611573565b005b6106786004803603602081101561064c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cb565b604051808215151515815260200191505060405180910390f35b6106e1600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050611721565b604051808381526020018281526020019250505060405180910390f35b6107066118b7565b604051808215151515815260200191505060405180910390f35b61076f6004803603604081101561073657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff1690602001909291905050506118cd565b005b6107b36004803603602081101561078757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a27565b6040518082815260200191505060405180910390f35b6107d1611a70565b005b61081f600480360360408110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bc6565b005b610829611d5e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610873611d88565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108b3578082015181840152602081019050610898565b50505050905090810190601f1680156108e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61093a6004803603604081101561090457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e2a565b604051808215151515815260200191505060405180910390f35b6109a06004803603604081101561096a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ef7565b604051808215151515815260200191505060405180910390f35b6109fc600480360360208110156109d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f1d565b6040518082815260200191505060405180910390f35b610a5460048036036020811015610a2857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f69565b6040518082815260200191505060405180910390f35b610aac60048036036020811015610a8057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120b1565b005b610b1060048036036040811015610ac457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612209565b6040518082815260200191505060405180910390f35b610b6860048036036020811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612290565b005b610bac60048036036020811015610b8057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123cb565b005b610bf060048036036020811015610bc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612506565b005b610c3460048036036020811015610c0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061263d565b005b610c3e612795565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c886127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615610dcc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610dd5816127c6565b50565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b5050505050905090565b6000610e8e610e876127be565b8484612864565b6001905092915050565b60036000610ea46127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e816022913960400191505060405180910390fd5b6000809054906101000a900460ff1615610fc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610fce838383612a5b565b505050565b6000600854905090565b6000610fea848484612ba7565b610ff5848484612d43565b90509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61105c6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111a981612e1c565b50565b6000600b60009054906101000a900460ff16905090565b600061126c6111d06127be565b8461126785600760006111e16127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eba90919063ffffffff16565b612864565b6001905092915050565b61127e6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff166113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6113c9612f42565b565b600260006113d76127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140376021913960400191505060405180910390fd5b6000809054906101000a900460ff16156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115096115016127be565b600083612ba7565b61151a6115146127be565b82612fc8565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157b6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6116c881613182565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000808260ff16600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011801561177c575060008360ff1610155b6117ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54696d65204c6f636b3a20696e646578206d7573742062652076616c6964000081525060200191505060405180910390fd5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360ff168154811061183b57fe5b906000526020600020906002020160000154600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208460ff168154811061189a57fe5b906000526020600020906002020160010154915091509250929050565b60008060009054906101000a900460ff16905090565b6118d56127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615611a19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611a238282613220565b5050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a786127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615611bbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611bc4613482565b565b611bce6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611cb4611d5e565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611d1e57600080fd5b505af1158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b8101908080519060200190929190505050505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e205780601f10611df557610100808354040283529160200191611e20565b820191906000526020600020905b815481529060010190602001808311611e0357829003601f168201915b5050505050905090565b6000611eed611e376127be565b84611ee8856040518060600160405280602581526020016140126025913960076000611e616127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b612864565b6001905092915050565b6000611f0b611f046127be565b8484612ba7565b611f1583836135c8565b905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b600080600090506000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008090505b818110156120a657600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061200f57fe5b90600052602060002090600202016001015442101561209957612096600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061207557fe5b90600052602060002090600202016000015484612eba90919063ffffffff16565b92505b8080600101915050611fbd565b508192505050919050565b6120b96127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612206816135e6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6122986127be565b73ffffffffffffffffffffffffffffffffffffffff16600060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613dec6027913960400191505060405180910390fd5b6000809054906101000a900460ff16156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123c881613684565b50565b6123d36127be565b73ffffffffffffffffffffffffffffffffffffffff16600060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612478576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613dec6027913960400191505060405180910390fd5b6000809054906101000a900460ff16156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612503816137ca565b50565b600360006125126127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e816022913960400191505060405180910390fd5b6000809054906101000a900460ff1615612631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61263a81613910565b50565b6126456127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615612789576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612792816139ae565b50565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613f906024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e396022913960400191505060405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008211612ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613f63602d913960400191505060405180910390fd5b428111612b0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613fe5602d913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040528084815260200183815250908060018154018082558091505090600182039060005260206000209060020201600090919290919091506000820151816000015560208201518160010155505050505050565b612bb0836116cb565b15612c06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613d74602c913960400191505060405180910390fd5b612c0f826116cb565b15612c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613da0602a913960400191505060405180910390fd5b612c6d6118b7565b15612cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613ea36025913960400191505060405180910390fd5b80612ce7612cd085611f69565b612cd986611a27565b613a4c90919063ffffffff16565b1015612d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613fb46031913960400191505060405180910390fd5b505050565b6000612d50848484613a96565b612e1184612d5c6127be565b612e0c85604051806060016040528060288152602001613ec860289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612dc26127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b612864565b600190509392505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea60405160405180910390a250565b600080828401905083811015612f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f856127be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f1d6021913960400191505060405180910390fd5b6130ba81604051806060016040528060228152602001613dca60229139600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061311281600854613a4c90919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7c5af8d36d8be103bc583da8e01d3e98f15216cc7ef38832c7550b34e8feb43a60405160405180910390a250565b8060ff16600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050118015613278575060008160ff1610155b6132ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54696d65204c6f636b3a20696e646578206d7573742062652076616c6964000081525060200191505060405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090508160ff16600182031461340c57600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182038154811061338b57fe5b9060005260206000209060020201600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360ff16815481106133e657fe5b906000526020600020906002020160008201548160000155600182015481600101559050505b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061345457fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055505050565b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134c56127be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008383111582906135b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561357a57808201518184015260208101905061355f565b50505050905090810190601f1680156135a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006135dc6135d56127be565b8484613a96565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f95266445d018e5b30f957c915e91b04bb4a19bf0f8f21020a08dad9be7931df460405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561370a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613ef0602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb672a1daaed7f748e93d745145b3a425811d01bd57b1bda907ae08dcd8b6f76960405160405180910390a380600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613e136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44427e3003a08f22cf803894075ac0297524e09e521fc1c15bc91741ce3dc15960405160405180910390a250565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456060405160405180910390a250565b6000613a8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613508565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613f3e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613d516023913960400191505060405180910390fd5b613c0e81604051806060016040528060268152602001613e5b60269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ca381600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eba90919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734c6f636b61626c653a20746f6b656e207472616e736665722066726f6d206c6f636b6564206163636f756e744c6f636b61626c653a20746f6b656e207472616e7366657220746f206c6f636b6564206163636f756e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f74207468652068696464656e206f776e65724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654c6f636b61626c653a2063616c6c6572206973206e6f7420746865206c6f636b65725061757361626c653a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a206e65772068696464656e206f776e657220697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737354696d65204c6f636b3a206c6f636b20616d6f756e74206d7573742062652067726561746572207468616e203045524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734c6f636b61626c653a20746f6b656e207472616e736665722066726f6d2074696d65206c6f636b6564206163636f756e7454696d65204c6f636b3a206578706972652064617465206d757374206265206c61746572207468616e206e6f7745524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4f776e61626c653a2063616c6c6572206973206e6f7420746865206275726e6572a265627a7a72315820a940e3868069ce1eb4d8a30053ac45a21bc3059477318ab2480a291dd553534f64736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102065760003560e01c80636f395c831161011a578063ba40c71a116100ad578063f14e88621161007c578063f14e886214610b26578063f2fde38b14610b6a578063f435f5a714610bae578063f44637ba14610bf2578063fbbdb68c14610c3657610206565b8063ba40c71a146109ba578063be4329f414610a12578063ce62cd4a14610a6a578063dd62ed3e14610aae57610206565b80638da5cb5b116100e95780638da5cb5b1461082157806395d89b411461086b578063a457c2d7146108ee578063a9059cbb1461095457610206565b80636f395c831461072057806370a08231146107715780638456cb59146107c95780638980f11f146107d357610206565b8063313ce5671161019d5780634334614a1161016c5780634334614a1461059657806345cc5890146105f25780634a4fbeec146106365780634ca47ad1146106925780635c975abb146106fe57610206565b8063313ce567146104d457806339509351146104f85780633f4ba83a1461055e57806342966c681461056857610206565b806318160ddd116101d957806318160ddd1461039057806323b872dd146103ae5780632ec63d7c146104345780632f6c493c1461049057610206565b8063028468581461020b57806306fdde031461024f578063095ea7b3146102d25780630d60548214610338575b600080fd5b61024d6004803603602081101561022157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c80565b005b610257610dd8565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029757808201518184015260208101905061027c565b50505050905090810190601f1680156102c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031e600480360360408110156102e857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e7a565b604051808215151515815260200191505060405180910390f35b61038e6004803603606081101561034e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050610e98565b005b610398610fd3565b6040518082815260200191505060405180910390f35b61041a600480360360608110156103c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fdd565b604051808215151515815260200191505060405180910390f35b6104766004803603602081101561044a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ffe565b604051808215151515815260200191505060405180910390f35b6104d2600480360360208110156104a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611054565b005b6104dc6111ac565b604051808260ff1660ff16815260200191505060405180910390f35b6105446004803603604081101561050e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111c3565b604051808215151515815260200191505060405180910390f35b610566611276565b005b6105946004803603602081101561057e57600080fd5b81019080803590602001909291905050506113cb565b005b6105d8600480360360208110156105ac57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151d565b604051808215151515815260200191505060405180910390f35b6106346004803603602081101561060857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611573565b005b6106786004803603602081101561064c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116cb565b604051808215151515815260200191505060405180910390f35b6106e1600480360360408110156106a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff169060200190929190505050611721565b604051808381526020018281526020019250505060405180910390f35b6107066118b7565b604051808215151515815260200191505060405180910390f35b61076f6004803603604081101561073657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff1690602001909291905050506118cd565b005b6107b36004803603602081101561078757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a27565b6040518082815260200191505060405180910390f35b6107d1611a70565b005b61081f600480360360408110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611bc6565b005b610829611d5e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610873611d88565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108b3578082015181840152602081019050610898565b50505050905090810190601f1680156108e05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61093a6004803603604081101561090457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e2a565b604051808215151515815260200191505060405180910390f35b6109a06004803603604081101561096a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ef7565b604051808215151515815260200191505060405180910390f35b6109fc600480360360208110156109d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f1d565b6040518082815260200191505060405180910390f35b610a5460048036036020811015610a2857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f69565b6040518082815260200191505060405180910390f35b610aac60048036036020811015610a8057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120b1565b005b610b1060048036036040811015610ac457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612209565b6040518082815260200191505060405180910390f35b610b6860048036036020811015610b3c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612290565b005b610bac60048036036020811015610b8057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123cb565b005b610bf060048036036020811015610bc457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612506565b005b610c3460048036036020811015610c0857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061263d565b005b610c3e612795565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c886127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615610dcc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610dd5816127c6565b50565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e705780601f10610e4557610100808354040283529160200191610e70565b820191906000526020600020905b815481529060010190602001808311610e5357829003601f168201915b5050505050905090565b6000610e8e610e876127be565b8484612864565b6001905092915050565b60036000610ea46127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e816022913960400191505060405180910390fd5b6000809054906101000a900460ff1615610fc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610fce838383612a5b565b505050565b6000600854905090565b6000610fea848484612ba7565b610ff5848484612d43565b90509392505050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61105c6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461111e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111a981612e1c565b50565b6000600b60009054906101000a900460ff16905090565b600061126c6111d06127be565b8461126785600760006111e16127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eba90919063ffffffff16565b612864565b6001905092915050565b61127e6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff166113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6113c9612f42565b565b600260006113d76127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611474576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140376021913960400191505060405180910390fd5b6000809054906101000a900460ff16156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6115096115016127be565b600083612ba7565b61151a6115146127be565b82612fc8565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157b6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461163d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6116c881613182565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000808260ff16600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905011801561177c575060008360ff1610155b6117ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54696d65204c6f636b3a20696e646578206d7573742062652076616c6964000081525060200191505060405180910390fd5b600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360ff168154811061183b57fe5b906000526020600020906002020160000154600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208460ff168154811061189a57fe5b906000526020600020906002020160010154915091509250929050565b60008060009054906101000a900460ff16905090565b6118d56127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611997576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615611a19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611a238282613220565b5050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a786127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b3a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615611bbc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611bc4613482565b565b611bce6127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb611cb4611d5e565b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611d1e57600080fd5b505af1158015611d32573d6000803e3d6000fd5b505050506040513d6020811015611d4857600080fd5b8101908080519060200190929190505050505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e205780601f10611df557610100808354040283529160200191611e20565b820191906000526020600020905b815481529060010190602001808311611e0357829003601f168201915b5050505050905090565b6000611eed611e376127be565b84611ee8856040518060600160405280602581526020016140126025913960076000611e616127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b612864565b6001905092915050565b6000611f0b611f046127be565b8484612ba7565b611f1583836135c8565b905092915050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b600080600090506000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008090505b818110156120a657600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020818154811061200f57fe5b90600052602060002090600202016001015442101561209957612096600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020828154811061207557fe5b90600052602060002090600202016000015484612eba90919063ffffffff16565b92505b8080600101915050611fbd565b508192505050919050565b6120b96127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff16156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612206816135e6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6122986127be565b73ffffffffffffffffffffffffffffffffffffffff16600060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613dec6027913960400191505060405180910390fd5b6000809054906101000a900460ff16156123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123c881613684565b50565b6123d36127be565b73ffffffffffffffffffffffffffffffffffffffff16600060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612478576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613dec6027913960400191505060405180910390fd5b6000809054906101000a900460ff16156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612503816137ca565b50565b600360006125126127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166125af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e816022913960400191505060405180910390fd5b6000809054906101000a900460ff1615612631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61263a81613910565b50565b6126456127be565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000809054906101000a900460ff1615612789576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612792816139ae565b50565b60008060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f90eabbc0c667db2a5029ed6bc0f5fe9f356d11684a4ca9fcfaec0e53f12b9c8e60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613f906024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613e396022913960400191505060405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60008211612ab4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613f63602d913960400191505060405180910390fd5b428111612b0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613fe5602d913960400191505060405180910390fd5b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806040016040528084815260200183815250908060018154018082558091505090600182039060005260206000209060020201600090919290919091506000820151816000015560208201518160010155505050505050565b612bb0836116cb565b15612c06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180613d74602c913960400191505060405180910390fd5b612c0f826116cb565b15612c65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613da0602a913960400191505060405180910390fd5b612c6d6118b7565b15612cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613ea36025913960400191505060405180910390fd5b80612ce7612cd085611f69565b612cd986611a27565b613a4c90919063ffffffff16565b1015612d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613fb46031913960400191505060405180910390fd5b505050565b6000612d50848484613a96565b612e1184612d5c6127be565b612e0c85604051806060016040528060288152602001613ec860289139600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612dc26127be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b612864565b600190509392505050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7e6adfec7e3f286831a0200a754127c171a2da564078722cb97704741bbdb0ea60405160405180910390a250565b600080828401905083811015612f38576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f856127be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613f1d6021913960400191505060405180910390fd5b6130ba81604051806060016040528060228152602001613dca60229139600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061311281600854613a4c90919063ffffffff16565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7c5af8d36d8be103bc583da8e01d3e98f15216cc7ef38832c7550b34e8feb43a60405160405180910390a250565b8060ff16600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050118015613278575060008160ff1610155b6132ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f54696d65204c6f636b3a20696e646578206d7573742062652076616c6964000081525060200191505060405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905090508160ff16600182031461340c57600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182038154811061338b57fe5b9060005260206000209060020201600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208360ff16815481106133e657fe5b906000526020600020906002020160008201548160000155600182015481600101559050505b600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548061345457fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055505050565b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586134c56127be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008383111582906135b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561357a57808201518184015260208101905061355f565b50505050905090810190601f1680156135a75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006135dc6135d56127be565b8484613a96565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f95266445d018e5b30f957c915e91b04bb4a19bf0f8f21020a08dad9be7931df460405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561370a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180613ef0602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fb672a1daaed7f748e93d745145b3a425811d01bd57b1bda907ae08dcd8b6f76960405160405180910390a380600060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613e136026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f44427e3003a08f22cf803894075ac0297524e09e521fc1c15bc91741ce3dc15960405160405180910390a250565b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f86e57fd2b90329052917118de7c3f521f400d439b9650deaa906a25b08b9456060405160405180910390a250565b6000613a8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613508565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613f3e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613d516023913960400191505060405180910390fd5b613c0e81604051806060016040528060268152602001613e5b60269139600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135089092919063ffffffff16565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ca381600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612eba90919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734c6f636b61626c653a20746f6b656e207472616e736665722066726f6d206c6f636b6564206163636f756e744c6f636b61626c653a20746f6b656e207472616e7366657220746f206c6f636b6564206163636f756e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a2063616c6c6572206973206e6f74207468652068696464656e206f776e65724f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654c6f636b61626c653a2063616c6c6572206973206e6f7420746865206c6f636b65725061757361626c653a20746f6b656e207472616e73666572207768696c652070617573656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a206e65772068696464656e206f776e657220697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737354696d65204c6f636b3a206c6f636b20616d6f756e74206d7573742062652067726561746572207468616e203045524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734c6f636b61626c653a20746f6b656e207472616e736665722066726f6d2074696d65206c6f636b6564206163636f756e7454696d65204c6f636b3a206578706972652064617465206d757374206265206c61746572207468616e206e6f7745524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4f776e61626c653a2063616c6c6572206973206e6f7420746865206275726e6572a265627a7a72315820a940e3868069ce1eb4d8a30053ac45a21bc3059477318ab2480a291dd553534f64736f6c63430005110032
Deployed Bytecode Sourcemap
28288:3805:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28288:3805:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30459:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30459:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;27340:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27340:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11420:142;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11420:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31742:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31742:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10502:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29600:214;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29600:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;23508:99;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23508:99:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31586:93;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31586:93:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28158:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12703:200;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12703:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30964:70;;;:::i;:::-;;30616:163;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30616:163:0;;;;;;;;;;;;;;;;;:::i;:::-;;21816:99;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21816:99:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31093;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31093:99:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;24063:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24063:97:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25913:274;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25913:274:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;17943:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31959:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31959:129:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;10644:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10644:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30836:69;;;:::i;:::-;;28727:146;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28727:146:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19997:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27529:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27529:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13389:251;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13389:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;29406:188;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29406:188:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25611:116;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25611:116:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26363:387;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26363:387:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31254:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31254:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11155:128;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11155:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30092:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30092:147:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;29888:123;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29888:123:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;31421:90;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31421:90:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;30298:99;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30298:99:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20152:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30459:105;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30536:22;30550:7;30536:13;:22::i;:::-;30459:105;:::o;27340:77::-;27377:13;27406:5;27399:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27340:77;:::o;11420:142::-;11486:4;11499:39;11508:12;:10;:12::i;:::-;11522:7;11531:6;11499:8;:39::i;:::-;11552:4;11545:11;;11420:142;;;;:::o;31742:152::-;23361:8;:22;23370:12;:10;:12::i;:::-;23361:22;;;;;;;;;;;;;;;;;;;;;;;;;23353:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31848:40;31861:7;31870:6;31878:9;31848:12;:40::i;:::-;31742:152;;;:::o;10502:85::-;10546:7;10569:12;;10562:19;;10502:85;:::o;29600:214::-;29689:4;29702:47;29723:6;29731:9;29742:6;29702:20;:47::i;:::-;29763:45;29782:6;29790:9;29801:6;29763:18;:45::i;:::-;29756:52;;29600:214;;;;;:::o;23508:99::-;23564:4;23584:8;:17;23593:7;23584:17;;;;;;;;;;;;;;;;;;;;;;;;;23577:24;;23508:99;;;:::o;31586:93::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:16;31665:7;31657;:16::i;:::-;31586:93;:::o;28158:77::-;28199:5;28220:9;;;;;;;;;;;28213:16;;28158:77;:::o;12703:200::-;12783:4;12796:83;12805:12;:10;:12::i;:::-;12819:7;12828:50;12867:10;12828:11;:25;12840:12;:10;:12::i;:::-;12828:25;;;;;;;;;;;;;;;:34;12854:7;12828:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12796:8;:83::i;:::-;12893:4;12886:11;;12703:200;;;;:::o;30964:70::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18347:7;;;;;;;;;;;18339:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31018:10;:8;:10::i;:::-;30964:70::o;30616:163::-;22040:8;:22;22049:12;:10;:12::i;:::-;22040:22;;;;;;;;;;;;;;;;;;;;;;;;;22032:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30685:54;30706:12;:10;:12::i;:::-;30728:1;30732:6;30685:20;:54::i;:::-;30746:27;30752:12;:10;:12::i;:::-;30766:6;30746:5;:27::i;:::-;30616:163;:::o;21816:99::-;21872:4;21892:8;:17;21901:7;21892:17;;;;;;;;;;;;;;;;;;;;;;;;;21885:24;;21816:99;;;:::o;31093:::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31167:19;31178:7;31167:10;:19::i;:::-;31093:99;:::o;24063:97::-;24119:4;24139:6;:15;24146:7;24139:15;;;;;;;;;;;;;;;;;;;;;;;;;24132:22;;24063:97;;;:::o;25913:274::-;25985:4;25991;26040:5;26011:34;;:10;:19;26022:7;26011:19;;;;;;;;;;;;;;;:26;;;;:34;:48;;;;;26058:1;26049:5;:10;;;;26011:48;26003:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26109:10;:19;26120:7;26109:19;;;;;;;;;;;;;;;26129:5;26109:26;;;;;;;;;;;;;;;;;;;;:33;;;26144:10;:19;26155:7;26144:19;;;;;;;;;;;;;;;26164:5;26144:26;;;;;;;;;;;;;;;;;;;;:36;;;26101:80;;;;25913:274;;;;;:::o;17943:72::-;17982:4;18002:7;;;;;;;;;;;17995:14;;17943:72;:::o;31959:129::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32051:31;32067:7;32076:5;32051:15;:31::i;:::-;31959:129;;:::o;10644:104::-;10701:7;10724:9;:18;10734:7;10724:18;;;;;;;;;;;;;;;;10717:25;;10644:104;;;:::o;30836:69::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30891:8;:6;:8::i;:::-;30836:69::o;28727:146::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28823:12;28816:29;;;28846:7;:5;:7::i;:::-;28855:11;28816:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28816:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28816:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28816:51:0;;;;;;;;;;;;;;;;;28727:146;;:::o;19997:73::-;20035:7;20058:6;;;;;;;;;;;20051:13;;19997:73;:::o;27529:81::-;27568:13;27597:7;27590:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27529:81;:::o;13389:251::-;13474:4;13487:129;13496:12;:10;:12::i;:::-;13510:7;13519:96;13558:15;13519:96;;;;;;;;;;;;;;;;;:11;:25;13531:12;:10;:12::i;:::-;13519:25;;;;;;;;;;;;;;;:34;13545:7;13519:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13487:8;:129::i;:::-;13630:4;13623:11;;13389:251;;;;:::o;29406:188::-;29475:4;29488:53;29509:12;:10;:12::i;:::-;29523:9;29534:6;29488:20;:53::i;:::-;29555:33;29570:9;29581:6;29555:14;:33::i;:::-;29548:40;;29406:188;;;;:::o;25611:116::-;25676:4;25695:10;:19;25706:7;25695:19;;;;;;;;;;;;;;;:26;;;;25688:33;;25611:116;;;:::o;26363:387::-;26430:4;26443:21;26467:1;26443:25;;26477:8;26488:10;:19;26499:7;26488:19;;;;;;;;;;;;;;;:26;;;;26477:37;;26526:6;26535:1;26526:10;;26521:194;26542:3;26538:1;:7;26521:194;;;26583:10;:19;26594:7;26583:19;;;;;;;;;;;;;;;26603:1;26583:22;;;;;;;;;;;;;;;;;;:32;;;26565:15;:50;26561:147;;;26647:51;26668:10;:19;26679:7;26668:19;;;;;;;;;;;;;;;26688:1;26668:22;;;;;;;;;;;;;;;;;;:29;;;26647:16;:20;;:51;;;;:::i;:::-;26628:70;;26561:147;26547:3;;;;;;;26521:194;;;;26728:16;26721:23;;;;26363:387;;;:::o;31254:105::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31331:22;31345:7;31331:13;:22::i;:::-;31254:105;:::o;11155:128::-;11227:7;11250:11;:18;11262:5;11250:18;;;;;;;;;;;;;;;:27;11269:7;11250:27;;;;;;;;;;;;;;;;11243:34;;11155:128;;;;:::o;30092:147::-;20585:12;:10;:12::i;:::-;20569:28;;:12;;;;;;;;;;;:28;;;20561:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30193:40;30218:14;30193:24;:40::i;:::-;30092:147;:::o;29888:123::-;20585:12;:10;:12::i;:::-;20569:28;;:12;;;;;;;;;;;:28;;;20561:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29977:28;29996:8;29977:18;:28::i;:::-;29888:123;:::o;31421:90::-;23361:8;:22;23370:12;:10;:12::i;:::-;23361:22;;;;;;;;;;;;;;;;;;;;;;;;;23353:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31491:14;31497:7;31491:5;:14::i;:::-;31421:90;:::o;30298:99::-;20370:12;:10;:12::i;:::-;20360:22;;:6;;;;;;;;;;;:22;;;20352:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:7;;;;;;;;;;;18163:8;18155:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30372:19;30383:7;30372:10;:19::i;:::-;30298:99;:::o;20152:85::-;20196:7;20219:12;;;;;;;;;;;20212:19;;20152:85;:::o;796:92::-;841:15;872:10;865:17;;796:92;:::o;22382:121::-;22458:5;22438:8;:17;22447:7;22438:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;22489:7;22475:22;;;;;;;;;;;;22382:121;:::o;16193:320::-;16300:1;16283:19;;:5;:19;;;;16275:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16377:1;16358:21;;:7;:21;;;;16350:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16457:6;16427:11;:18;16439:5;16427:18;;;;;;;;;;;;;;;:27;16446:7;16427:27;;;;;;;;;;;;;;;:36;;;;16491:7;16475:32;;16484:5;16475:32;;;16500:6;16475:32;;;;;;;;;;;;;;;;;;16193:320;;;:::o;24579:310::-;24680:1;24671:6;:10;24663:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24758:15;24746:9;:27;24738:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24830:10;:19;24841:7;24830:19;;;;;;;;;;;;;;;24855:27;;;;;;;;24864:6;24855:27;;;;24872:9;24855:27;;;24830:53;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;24830:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24579:310;;;:::o;28963:437::-;29065:14;29074:4;29065:8;:14::i;:::-;29064:15;29056:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29144:12;29153:2;29144:8;:12::i;:::-;29143:13;29135:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29219:8;:6;:8::i;:::-;29218:9;29210:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29334:6;29284:46;29304:25;29324:4;29304:19;:25::i;:::-;29284:15;29294:4;29284:9;:15::i;:::-;:19;;:46;;;;:::i;:::-;:56;;29276:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28963:437;;;:::o;12019:290::-;12108:4;12121:36;12131:6;12139:9;12150:6;12121:9;:36::i;:::-;12164:121;12173:6;12181:12;:10;:12::i;:::-;12195:89;12233:6;12195:89;;;;;;;;;;;;;;;;;:11;:19;12207:6;12195:19;;;;;;;;;;;;;;;:33;12215:12;:10;:12::i;:::-;12195:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12164:8;:121::i;:::-;12299:4;12292:11;;12019:290;;;;;:::o;24403:108::-;24471:5;24453:6;:15;24460:7;24453:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;24497:7;24488:17;;;;;;;;;;;;24403:108;:::o;1936:167::-;1994:7;2010:9;2026:1;2022;:5;2010:17;;2047:1;2042;:6;;2034:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2096:1;2089:8;;;1936:167;;;;:::o;18652:91::-;18698:5;18688:7;;:15;;;;;;;;;;;;;;;;;;18715:22;18724:12;:10;:12::i;:::-;18715:22;;;;;;;;;;;;;;;;;;;;;;18652:91::o;15439:330::-;15530:1;15511:21;;:7;:21;;;;15503:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15600:68;15623:6;15600:68;;;;;;;;;;;;;;;;;:9;:18;15610:7;15600:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;15579:9;:18;15589:7;15579:18;;;;;;;;;;;;;;;:89;;;;15690:24;15707:6;15690:12;;:16;;:24;;;;:::i;:::-;15675:12;:39;;;;15752:1;15726:37;;15735:7;15726:37;;;15756:6;15726:37;;;;;;;;;;;;;;;;;;15439:330;;:::o;23678:115::-;23751:4;23731:8;:17;23740:7;23731:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;23779:7;23767:20;;;;;;;;;;;;23678:115;:::o;25067:383::-;25175:5;25146:34;;:10;:19;25157:7;25146:19;;;;;;;;;;;;;;;:26;;;;:34;:48;;;;;25193:1;25184:5;:10;;;;25146:48;25138:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25238:8;25249:10;:19;25260:7;25249:19;;;;;;;;;;;;;;;:26;;;;25238:37;;25297:5;25286:16;;25292:1;25286:3;:7;:16;25282:131;;25377:10;:19;25388:7;25377:19;;;;;;;;;;;;;;;25403:1;25397:3;:7;25377:28;;;;;;;;;;;;;;;;;;25348:10;:19;25359:7;25348:19;;;;;;;;;;;;;;;25368:5;25348:26;;;;;;;;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;;25282:131;25419:10;:19;25430:7;25419:19;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25067:383;;;:::o;18478:86::-;18522:4;18512:7;;:14;;;;;;;;;;;;;;;;;;18538:20;18545:12;:10;:12::i;:::-;18538:20;;;;;;;;;;;;;;;;;;;;;;18478:86::o;2819:178::-;2905:7;2934:1;2929;:6;;2937:12;2921:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2921:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2957:9;2973:1;2969;:5;2957:17;;2990:1;2983:8;;;2819:178;;;;;:::o;10950:148::-;11019:4;11032:42;11042:12;:10;:12::i;:::-;11056:9;11067:6;11032:9;:42::i;:::-;11088:4;11081:11;;10950:148;;;;:::o;23870:121::-;23946:5;23926:8;:17;23935:7;23926:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;23977:7;23963:22;;;;;;;;;;;;23870:121;:::o;21083:264::-;21191:1;21165:28;;:14;:28;;;;21157:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21290:14;21255:50;;21282:6;;;;;;;;;;;21255:50;;;;;;;;;;;;21327:14;21312:12;;:29;;;;;;;;;;;;;;;;;;21083:264;:::o;20755:215::-;20845:1;20825:22;;:8;:22;;;;20817:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20931:8;20902:38;;20923:6;;;;;;;;;;;20902:38;;;;;;;;;;;;20956:8;20947:6;;:17;;;;;;;;;;;;;;;;;;20755:215;:::o;24228:103::-;24294:4;24276:6;:15;24283:7;24276:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;24317:7;24310:15;;;;;;;;;;;;24228:103;:::o;22186:115::-;22259:4;22239:8;:17;22248:7;22239:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;22287:7;22275:20;;;;;;;;;;;;22186:115;:::o;2366:130::-;2424:7;2447:43;2451:1;2454;2447:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2440:50;;2366:130;;;;:::o;14113:449::-;14225:1;14207:20;;:6;:20;;;;14199:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14305:1;14284:23;;:9;:23;;;;14276:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14376;14398:6;14376:71;;;;;;;;;;;;;;;;;:9;:17;14386:6;14376:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14356:9;:17;14366:6;14356:17;;;;;;;;;;;;;;;:91;;;;14477:32;14502:6;14477:9;:20;14487:9;14477:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14454:9;:20;14464:9;14454:20;;;;;;;;;;;;;;;:55;;;;14538:9;14521:35;;14530:6;14521:35;;;14549:6;14521:35;;;;;;;;;;;;;;;;;;14113:449;;;:::o
Swarm Source
bzzr://a940e3868069ce1eb4d8a30053ac45a21bc3059477318ab2480a291dd553534f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.