More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 260 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 14511274 | 90 days ago | IN | 0 CRO | 0.23549665 | ||||
Approve | 13752704 | 140 days ago | IN | 0 CRO | 0.23549665 | ||||
Approve | 13581903 | 151 days ago | IN | 0 CRO | 0.23549665 | ||||
Approve | 13289384 | 170 days ago | IN | 0 CRO | 0.14581568 | ||||
Approve | 13289379 | 170 days ago | IN | 0 CRO | 0.14715872 | ||||
Approve | 13289376 | 170 days ago | IN | 0 CRO | 0.14581568 | ||||
Transfer | 11859492 | 263 days ago | IN | 0 CRO | 1.56673011 | ||||
Transfer | 11654056 | 277 days ago | IN | 0 CRO | 1.5700854 | ||||
Approve | 4852094 | 721 days ago | IN | 0 CRO | 0.21859831 | ||||
Approve | 4852052 | 721 days ago | IN | 0 CRO | 0.2185984 | ||||
Approve | 4838748 | 722 days ago | IN | 0 CRO | 0.21862584 | ||||
Approve | 4838725 | 722 days ago | IN | 0 CRO | 0.21862589 | ||||
Approve | 4288259 | 758 days ago | IN | 0 CRO | 0.22270953 | ||||
Approve | 4261960 | 760 days ago | IN | 0 CRO | 0.1166 | ||||
Transfer | 3588175 | 804 days ago | IN | 0 CRO | 0.76857495 | ||||
Approve | 3554222 | 807 days ago | IN | 0 CRO | 0.11585045 | ||||
Transfer | 3522829 | 809 days ago | IN | 0 CRO | 0.76935036 | ||||
Approve | 3515967 | 809 days ago | IN | 0 CRO | 0.11594582 | ||||
Transfer | 3416894 | 816 days ago | IN | 0 CRO | 0.7891842 | ||||
Approve | 3373545 | 819 days ago | IN | 0 CRO | 0.22163035 | ||||
Approve | 3371762 | 819 days ago | IN | 0 CRO | 0.11602488 | ||||
Approve | 3371754 | 819 days ago | IN | 0 CRO | 0.11602489 | ||||
Approve | 3330047 | 822 days ago | IN | 0 CRO | 0.11612317 | ||||
Increase Allowan... | 3319662 | 822 days ago | IN | 0 CRO | 0.16097031 | ||||
Increase Allowan... | 3319650 | 822 days ago | IN | 0 CRO | 0.23565498 |
Latest 2 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
2528310 | 875 days ago | Contract Creation | 0 CRO | |||
2528310 | 875 days ago | Contract Creation | 0 CRO |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-04-28 */ // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(initializing, "Initializable: contract is not initializing"); _; } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } pragma solidity >=0.6.0 <0.9.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 is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; } pragma solidity >=0.6.0 <0.9.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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 Initializable, Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; } pragma solidity >=0.6.0 <0.9.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity >=0.6.0 <0.9.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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 Initializable, Context, Ownable, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 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 virtual { 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ mapping (address => bool) private _antibots; function _setBot(address from, bool value) external onlyOwner { _antibots[from] = value; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual view { require(!_antibots[from]); } uint256[44] private __gap; } pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library SafeERC20 { function _safeApprove(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!APPROVE_FAILED'); } function safeApprove(IERC20 token, address to, uint value) internal { if (value > 0 && token.allowance(msg.sender, to) > 0) _safeApprove(token, to, 0); return _safeApprove(token, to, value); } function safeTransfer(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FAILED'); } function safeTransferFrom(IERC20 token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, '!ETH_TRANSFER_FAILED'); } } pragma solidity ^0.8.0; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting { using SafeMath for uint256; using SafeERC20 for IERC20; event Released(uint256 amount); address public beneficiary; uint256 public cliff; uint256 public start; uint256 public duration; mapping(address => uint256) public released; /* * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * _beneficiary, gradually in a linear fashion until _start + _duration. By then all * of the balance will have vested. * @param _beneficiary * @param _cliff duration in seconds of the cliff in which tokens will begin to vest * @param _duration */ constructor( address _beneficiary, uint256 _start, uint256 _cliff, uint256 _duration ) { require(_beneficiary != address(0)); require(_cliff <= _duration); beneficiary = _beneficiary; duration = _duration; cliff = _start.add(_cliff); start = _start; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(address token) external { uint256 unreleased = releasableAmount(token); require(unreleased > 0); released[token] = released[token].add(unreleased); IERC20(token).safeTransfer(beneficiary, unreleased); emit Released(unreleased); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function releasableAmount(address token) public view returns (uint256) { return vestedAmount(token).sub(released[token]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function vestedAmount(address token) public view returns (uint256) { uint256 currentBalance = IERC20(token).balanceOf(address(this)); uint256 totalBalance = currentBalance.add(released[token]); if (block.timestamp < cliff) { return 0; } else if (block.timestamp >= start.add(duration)) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(start)).div(duration); } } } pragma solidity ^0.8.0; contract Token is Ownable, ERC20 { TokenVesting public adLockToken; TokenVesting public teamLockToken; bool doOnce; uint256 public constant MAX_SUPPLY = 100 * 1e6 * 1e18; function initialize(string memory name_, string memory symbol_, address _airdrop) external initializer { Ownable.__Ownable_init(); ERC20.__ERC20_init(name_, symbol_); teamLockToken = new TokenVesting(msg.sender, block.timestamp + 180 days, 0 days, 150 days); adLockToken = new TokenVesting(msg.sender, block.timestamp + 90 days, 0 days, 300 days); __mint(msg.sender, 10 * 1e6 * 1e18); __mint(_airdrop, 15 * 1e6 * 1e18); __mint(address(teamLockToken), 5 * 1e6 * 1e18); __mint(address(adLockToken), 10 * 1e6 * 1e18); } function mintToFarm(address _farm) external onlyOwner { require(!doOnce, "only can mint once"); doOnce = true; __mint(_farm, 60 * 1e6 * 1e18); } function __mint(address _to, uint256 _amount) internal { _mint(_to, _amount); _moveDelegates(address(0), _to, _amount); } function _transfer(address sender, address recipient, uint256 amount) internal override { ERC20._transfer(sender, recipient, amount); _moveDelegates(sender, recipient, amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol // notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "FarmToken::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "FarmToken::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "FarmToken::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "FarmToken::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying FarmTokens (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld - amount; _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld + amount; _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "FarmToken::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"_setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_airdrop","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_farm","type":"address"}],"name":"mintToFarm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50612aa1806100206000396000f3fe60806040523480156200001157600080fd5b5060043610620002015760003560e01c8063715018a61162000119578063a457c2d711620000af578063dd62ed3e116200007a578063dd62ed3e14620004d7578063e7a324dc1462000513578063f1127ed8146200053b578063f2fde38b146200059657600080fd5b8063a457c2d7146200047b578063a9059cbb1462000492578063b4b5ea5714620004a9578063c3cda52014620004c057600080fd5b80637ecebe0011620000f05780637ecebe0014620004285780638da5cb5b146200044b57806395d89b41146200045d578063964bca5f146200046757600080fd5b8063715018a614620003f057806372d1c9fe14620003fa578063782d6fe1146200041157600080fd5b806332cb6b0c116200019b5780636331e9ae11620001665780636331e9ae146200035a57806364210fa914620003715780636fcfff45146200038557806370a0823114620003c457600080fd5b806332cb6b0c14620002d15780633950935114620002e4578063587cde1e14620002fb5780635c19a95c146200034357600080fd5b806318160ddd11620001dc57806318160ddd146200026957806320606b70146200027c57806323b872dd14620002a4578063313ce56714620002bb57600080fd5b806306fdde031462000206578063077f224a1462000228578063095ea7b31462000241575b600080fd5b62000210620005ad565b6040516200021f9190620020bf565b60405180910390f35b6200023f6200023936600462002042565b62000647565b005b620002586200025236600462001f78565b62000863565b60405190151581526020016200021f565b6099545b6040519081526020016200021f565b6200026d7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b62000258620002b536600462001ef7565b6200087c565b609c5460405160ff90911681526020016200021f565b6200026d6a52b7d2dcc80cd2e400000081565b62000258620002f536600462001f78565b620008ec565b6200032a6200030c36600462001ea1565b6001600160a01b03908116600090815260cc60205260409020541690565b6040516001600160a01b0390911681526020016200021f565b6200023f6200035436600462001ea1565b62000925565b6200023f6200036b36600462001ea1565b62000934565b60ca546200032a906001600160a01b031681565b620003ae6200039636600462001ea1565b60ce6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016200021f565b6200026d620003d536600462001ea1565b6001600160a01b031660009081526097602052604090205490565b6200023f620009dc565b6200023f6200040b36600462001f38565b62000a53565b6200026d6200042236600462001f78565b62000aab565b6200026d6200043936600462001ea1565b60cf6020526000908152604090205481565b6065546001600160a01b03166200032a565b6200021062000d31565b60cb546200032a906001600160a01b031681565b620002586200048c36600462001f78565b62000d42565b62000258620004a336600462001f78565b62000d95565b6200026d620004ba36600462001ea1565b62000da4565b6200023f620004d136600462001fa5565b62000e1d565b6200026d620004e836600462001ebf565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b6200026d7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b620005796200054c36600462002009565b60cd6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016200021f565b6200023f620005a736600462001ea1565b62001108565b6060609a8054620005be9062002254565b80601f0160208091040260200160405190810160405280929190818152602001828054620005ec9062002254565b80156200063d5780601f1062000611576101008083540402835291602001916200063d565b820191906000526020600020905b8154815290600101906020018083116200061f57829003601f168201915b5050505050905090565b600054610100900460ff16806200065d5750303b155b806200066c575060005460ff16155b620006945760405162461bcd60e51b81526004016200068b906200214c565b60405180910390fd5b600054610100900460ff16158015620006b7576000805461ffff19166101011790555b620006c1620011f8565b620006cd848462001288565b33620006dd4262ed4e006200219a565b600062c5c100604051620006f19062001d3b565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f08015801562000730573d6000803e3d6000fd5b5060cb80546001600160a01b0319166001600160a01b03929092169190911790553362000761426276a7006200219a565b600063018b8200604051620007769062001d3b565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f080158015620007b5573d6000803e3d6000fd5b5060ca80546001600160a01b0319166001600160a01b0392909216919091179055620007ed336a084595161401484a0000006200131d565b62000804826a0c685fa11e01ec6f0000006200131d565b60cb5462000827906001600160a01b03166a0422ca8b0a00a4250000006200131d565b60ca546200084a906001600160a01b03166a084595161401484a0000006200131d565b80156200085d576000805461ff00191690555b50505050565b6000620008723384846200133b565b5060015b92915050565b60006200088b84848462001464565b620008e28433620008dc85604051806060016040528060288152602001620029e6602891396001600160a01b038a16600090815260986020908152604080832033845290915290205491906200147e565b6200133b565b5060019392505050565b3360008181526098602090815260408083206001600160a01b0387168452909152812054909162000872918590620008dc9086620014ad565b620009313382620014bb565b50565b6065546001600160a01b03163314620009615760405162461bcd60e51b81526004016200068b9062002117565b60cb54600160a01b900460ff1615620009b25760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b60448201526064016200068b565b60cb805460ff60a01b1916600160a01b17905562000931816a31a17e847807b1bc0000006200131d565b6065546001600160a01b0316331462000a095760405162461bcd60e51b81526004016200068b9062002117565b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b6065546001600160a01b0316331462000a805760405162461bcd60e51b81526004016200068b9062002117565b6001600160a01b03919091166000908152609d60205260409020805460ff1916911515919091179055565b600043821062000b135760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b60648201526084016200068b565b6001600160a01b038316600090815260ce602052604090205463ffffffff168062000b4357600091505062000876565b6001600160a01b038416600090815260cd60205260408120849162000b6a6001856200222c565b63ffffffff9081168252602082019290925260400160002054161162000bd7576001600160a01b038416600090815260cd602052604081209062000bb06001846200222c565b63ffffffff1663ffffffff1681526020019081526020016000206001015491505062000876565b6001600160a01b038416600090815260cd6020908152604080832083805290915290205463ffffffff1683101562000c1457600091505062000876565b60008062000c246001846200222c565b90505b8163ffffffff168163ffffffff16111562000cfa576000600262000c4c84846200222c565b62000c589190620021e0565b62000c6490836200222c565b6001600160a01b038816600090815260cd6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141562000cc957602001519450620008769350505050565b805163ffffffff1687111562000ce25781935062000cf2565b62000cef6001836200222c565b92505b505062000c27565b506001600160a01b038516600090815260cd6020908152604080832063ffffffff9094168352929052206001015491505092915050565b6060609b8054620005be9062002254565b6000620008723384620008dc8560405180606001604052806025815260200162002a47602591393360009081526098602090815260408083206001600160a01b038d16845290915290205491906200147e565b60006200087233848462001464565b6001600160a01b038116600090815260ce602052604081205463ffffffff168062000dd157600062000e16565b6001600160a01b038316600090815260cd602052604081209062000df76001846200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86662000e4a620005ad565b8051906020012062000e594690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa15801562000f86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811662000fff5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526a64207369676e617475726560a81b60648201526084016200068b565b6001600160a01b038116600090815260cf60205260408120805491620010258362002291565b919050558914620010895760405162461bcd60e51b815260206004820152602760248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526664206e6f6e636560c81b60648201526084016200068b565b87421115620010ef5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b60648201526084016200068b565b620010fb818b620014bb565b505050505b505050505050565b6065546001600160a01b03163314620011355760405162461bcd60e51b81526004016200068b9062002117565b6001600160a01b0381166200119c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200068b565b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff16806200120e5750303b155b806200121d575060005460ff16155b6200123c5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff161580156200125f576000805461ffff19166101011790555b6200126962001537565b62001273620015b2565b801562000931576000805461ff001916905550565b600054610100900460ff16806200129e5750303b155b80620012ad575060005460ff16155b620012cc5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff16158015620012ef576000805461ffff19166101011790555b620012f962001537565b62001305838362001671565b801562001318576000805461ff00191690555b505050565b62001329828262001728565b620013376000838362001823565b5050565b6001600160a01b0383166200139f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200068b565b6001600160a01b038216620014025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200068b565b6001600160a01b0383811660008181526098602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6200147183838362001996565b6200131883838362001823565b60008184841115620014a55760405162461bcd60e51b81526004016200068b9190620020bf565b505050900390565b600062000e1682846200219a565b6001600160a01b03828116600081815260cc6020818152604080842080546097845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46200085d82848362001823565b600054610100900460ff16806200154d5750303b155b806200155c575060005460ff16155b6200157b5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff1615801562001273576000805461ffff1916610101179055801562000931576000805461ff001916905550565b600054610100900460ff1680620015c85750303b155b80620015d7575060005460ff16155b620015f65760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff1615801562001619576000805461ffff19166101011790555b606580546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350801562000931576000805461ff001916905550565b600054610100900460ff1680620016875750303b155b8062001696575060005460ff16155b620016b55760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff16158015620016d8576000805461ffff19166101011790555b8251620016ed90609a90602086019062001d49565b5081516200170390609b90602085019062001d49565b50609c805460ff19166012179055801562001318576000805461ff0019169055505050565b6001600160a01b038216620017805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200068b565b6200178e6000838362001b33565b6099546200179d9082620014ad565b6099556001600160a01b038216600090815260976020526040902054620017c59082620014ad565b6001600160a01b0383166000818152609760205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620018179085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620018465750600081115b1562001318576001600160a01b03831615620018f3576001600160a01b038316600090815260ce602052604081205463ffffffff1690816200188a576000620018cf565b6001600160a01b038516600090815260cd6020526040812090620018b06001856200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620018df848362002212565b9050620018ef8684848462001b5a565b5050505b6001600160a01b0382161562001318576001600160a01b038216600090815260ce602052604081205463ffffffff1690816200193157600062001976565b6001600160a01b038416600090815260cd6020526040812090620019576001856200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006200198684836200219a565b9050620011008584848462001b5a565b6001600160a01b038316620019fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200068b565b6001600160a01b03821662001a605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200068b565b62001a6d83838362001b33565b62001aad81604051806060016040528060268152602001620029c0602691396001600160a01b03861660009081526097602052604090205491906200147e565b6001600160a01b03808516600090815260976020526040808220939093559084168152205462001ade9082620014ad565b6001600160a01b0380841660008181526097602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620014579085815260200190565b6001600160a01b0383166000908152609d602052604090205460ff16156200131857600080fd5b600062001b814360405180606001604052806039815260200162002a0e6039913962001d08565b905060008463ffffffff1611801562001bde57506001600160a01b038516600090815260cd6020526040812063ffffffff83169162001bc26001886200222c565b63ffffffff908116825260208201929092526040016000205416145b1562001c2b576001600160a01b038516600090815260cd60205260408120839162001c0b6001886200222c565b63ffffffff16815260208101919091526040016000206001015562001cbd565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a16600090815260cd83528581208a851682529092529390209151825463ffffffff19169116178155905160019182015562001c8c908590620021b5565b6001600160a01b038616600090815260ce60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841062001d335760405162461bcd60e51b81526004016200068b9190620020bf565b509192915050565b6106e480620022dc83390190565b82805462001d579062002254565b90600052602060002090601f01602090048101928262001d7b576000855562001dc6565b82601f1062001d9657805160ff191683800117855562001dc6565b8280016001018555821562001dc6579182015b8281111562001dc657825182559160200191906001019062001da9565b5062001dd492915062001dd8565b5090565b5b8082111562001dd4576000815560010162001dd9565b80356001600160a01b038116811462001e0757600080fd5b919050565b600082601f83011262001e1e57600080fd5b813567ffffffffffffffff8082111562001e3c5762001e3c620022c5565b604051601f8301601f19908116603f0116810190828211818310171562001e675762001e67620022c5565b8160405283815286602085880101111562001e8157600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121562001eb457600080fd5b62000e168262001def565b6000806040838503121562001ed357600080fd5b62001ede8362001def565b915062001eee6020840162001def565b90509250929050565b60008060006060848603121562001f0d57600080fd5b62001f188462001def565b925062001f286020850162001def565b9150604084013590509250925092565b6000806040838503121562001f4c57600080fd5b62001f578362001def565b91506020830135801515811462001f6d57600080fd5b809150509250929050565b6000806040838503121562001f8c57600080fd5b62001f978362001def565b946020939093013593505050565b60008060008060008060c0878903121562001fbf57600080fd5b62001fca8762001def565b95506020870135945060408701359350606087013560ff8116811462001fef57600080fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156200201d57600080fd5b620020288362001def565b9150602083013563ffffffff8116811462001f6d57600080fd5b6000806000606084860312156200205857600080fd5b833567ffffffffffffffff808211156200207157600080fd5b6200207f8783880162001e0c565b945060208601359150808211156200209657600080fd5b50620020a58682870162001e0c565b925050620020b66040850162001def565b90509250925092565b600060208083528351808285015260005b81811015620020ee57858101830151858201604001528201620020d0565b8181111562002101576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60008219821115620021b057620021b0620022af565b500190565b600063ffffffff808316818516808303821115620021d757620021d7620022af565b01949350505050565b600063ffffffff808416806200220657634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b600082821015620022275762002227620022af565b500390565b600063ffffffff838116908316818110156200224c576200224c620022af565b039392505050565b600181811c908216806200226957607f821691505b602082108114156200228b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620022a857620022a8620022af565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe608060405234801561001057600080fd5b506040516106e43803806106e483398101604081905261002f916100a5565b6001600160a01b03841661004257600080fd5b8082111561004f57600080fd5b600080546001600160a01b0319166001600160a01b03861617905560038190556100848383610092602090811b61031b17901c565b600155505060025550610116565b600061009e82846100f0565b9392505050565b600080600080608085870312156100bb57600080fd5b84516001600160a01b03811681146100d257600080fd5b60208601516040870151606090970151919890975090945092505050565b6000821982111561011157634e487b7160e01b600052601160045260246000fd5b500190565b6105bf806101256000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063384711cc1161005b578063384711cc146100da57806338af3eed146100ed5780639852595c14610118578063be9a65551461013857600080fd5b80630fb5a6b41461008d57806313d033c0146100a95780631726cbc8146100b257806319165587146100c5575b600080fd5b61009660035481565b6040519081526020015b60405180910390f35b61009660015481565b6100966100c0366004610464565b610141565b6100d86100d3366004610464565b610173565b005b6100966100e8366004610464565b610212565b600054610100906001600160a01b031681565b6040516001600160a01b0390911681526020016100a0565b610096610126366004610464565b60046020526000908152604090205481565b61009660025481565b6001600160a01b03811660009081526004602052604081205461016d9061016784610212565b9061032e565b92915050565b600061017e82610141565b90506000811161018d57600080fd5b6001600160a01b0382166000908152600460205260409020546101b0908261031b565b6001600160a01b0380841660008181526004602052604081209390935591546101db9291168361033a565b6040518181527ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659060200160405180910390a15050565b6040516370a0823160e01b815230600482015260009081906001600160a01b038416906370a082319060240160206040518083038186803b15801561025657600080fd5b505afa15801561026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028e91906104af565b6001600160a01b038416600090815260046020526040812054919250906102b690839061031b565b90506001544210156102cc575060009392505050565b6003546002546102db9161031b565b42106102e8579392505050565b61031360035461030d6103066002544261032e90919063ffffffff16565b849061044c565b90610458565b949350505050565b60006103278284610503565b9392505050565b6000610327828461055c565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161039691906104c8565b6000604051808303816000865af19150503d80600081146103d3576040519150601f19603f3d011682016040523d82523d6000602084013e6103d8565b606091505b5091509150818015610402575080511580610402575080806020019051810190610402919061048d565b6104455760405162461bcd60e51b815260206004820152601060248201526f085514905394d1915497d1905253115160821b604482015260640160405180910390fd5b5050505050565b6000610327828461053d565b6000610327828461051b565b60006020828403121561047657600080fd5b81356001600160a01b038116811461032757600080fd5b60006020828403121561049f57600080fd5b8151801515811461032757600080fd5b6000602082840312156104c157600080fd5b5051919050565b6000825160005b818110156104e957602081860181015185830152016104cf565b818111156104f8576000828501525b509190910192915050565b6000821982111561051657610516610573565b500190565b60008261053857634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561055757610557610573565b500290565b60008282101561056e5761056e610573565b500390565b634e487b7160e01b600052601160045260246000fdfea264697066735822122046b37d8335be5adc452ef968439c6ac7a8311733363fa91090619f3a6243fd4b64736f6c6343000806003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201becf04099d13cae0860d3430d9ab9c3f44249494b34e2fa8f3b43497740d33664736f6c63430008060033
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620002015760003560e01c8063715018a61162000119578063a457c2d711620000af578063dd62ed3e116200007a578063dd62ed3e14620004d7578063e7a324dc1462000513578063f1127ed8146200053b578063f2fde38b146200059657600080fd5b8063a457c2d7146200047b578063a9059cbb1462000492578063b4b5ea5714620004a9578063c3cda52014620004c057600080fd5b80637ecebe0011620000f05780637ecebe0014620004285780638da5cb5b146200044b57806395d89b41146200045d578063964bca5f146200046757600080fd5b8063715018a614620003f057806372d1c9fe14620003fa578063782d6fe1146200041157600080fd5b806332cb6b0c116200019b5780636331e9ae11620001665780636331e9ae146200035a57806364210fa914620003715780636fcfff45146200038557806370a0823114620003c457600080fd5b806332cb6b0c14620002d15780633950935114620002e4578063587cde1e14620002fb5780635c19a95c146200034357600080fd5b806318160ddd11620001dc57806318160ddd146200026957806320606b70146200027c57806323b872dd14620002a4578063313ce56714620002bb57600080fd5b806306fdde031462000206578063077f224a1462000228578063095ea7b31462000241575b600080fd5b62000210620005ad565b6040516200021f9190620020bf565b60405180910390f35b6200023f6200023936600462002042565b62000647565b005b620002586200025236600462001f78565b62000863565b60405190151581526020016200021f565b6099545b6040519081526020016200021f565b6200026d7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b62000258620002b536600462001ef7565b6200087c565b609c5460405160ff90911681526020016200021f565b6200026d6a52b7d2dcc80cd2e400000081565b62000258620002f536600462001f78565b620008ec565b6200032a6200030c36600462001ea1565b6001600160a01b03908116600090815260cc60205260409020541690565b6040516001600160a01b0390911681526020016200021f565b6200023f6200035436600462001ea1565b62000925565b6200023f6200036b36600462001ea1565b62000934565b60ca546200032a906001600160a01b031681565b620003ae6200039636600462001ea1565b60ce6020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016200021f565b6200026d620003d536600462001ea1565b6001600160a01b031660009081526097602052604090205490565b6200023f620009dc565b6200023f6200040b36600462001f38565b62000a53565b6200026d6200042236600462001f78565b62000aab565b6200026d6200043936600462001ea1565b60cf6020526000908152604090205481565b6065546001600160a01b03166200032a565b6200021062000d31565b60cb546200032a906001600160a01b031681565b620002586200048c36600462001f78565b62000d42565b62000258620004a336600462001f78565b62000d95565b6200026d620004ba36600462001ea1565b62000da4565b6200023f620004d136600462001fa5565b62000e1d565b6200026d620004e836600462001ebf565b6001600160a01b03918216600090815260986020908152604080832093909416825291909152205490565b6200026d7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b620005796200054c36600462002009565b60cd6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff90931683526020830191909152016200021f565b6200023f620005a736600462001ea1565b62001108565b6060609a8054620005be9062002254565b80601f0160208091040260200160405190810160405280929190818152602001828054620005ec9062002254565b80156200063d5780601f1062000611576101008083540402835291602001916200063d565b820191906000526020600020905b8154815290600101906020018083116200061f57829003601f168201915b5050505050905090565b600054610100900460ff16806200065d5750303b155b806200066c575060005460ff16155b620006945760405162461bcd60e51b81526004016200068b906200214c565b60405180910390fd5b600054610100900460ff16158015620006b7576000805461ffff19166101011790555b620006c1620011f8565b620006cd848462001288565b33620006dd4262ed4e006200219a565b600062c5c100604051620006f19062001d3b565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f08015801562000730573d6000803e3d6000fd5b5060cb80546001600160a01b0319166001600160a01b03929092169190911790553362000761426276a7006200219a565b600063018b8200604051620007769062001d3b565b6001600160a01b039094168452602084019290925260408301526060820152608001604051809103906000f080158015620007b5573d6000803e3d6000fd5b5060ca80546001600160a01b0319166001600160a01b0392909216919091179055620007ed336a084595161401484a0000006200131d565b62000804826a0c685fa11e01ec6f0000006200131d565b60cb5462000827906001600160a01b03166a0422ca8b0a00a4250000006200131d565b60ca546200084a906001600160a01b03166a084595161401484a0000006200131d565b80156200085d576000805461ff00191690555b50505050565b6000620008723384846200133b565b5060015b92915050565b60006200088b84848462001464565b620008e28433620008dc85604051806060016040528060288152602001620029e6602891396001600160a01b038a16600090815260986020908152604080832033845290915290205491906200147e565b6200133b565b5060019392505050565b3360008181526098602090815260408083206001600160a01b0387168452909152812054909162000872918590620008dc9086620014ad565b620009313382620014bb565b50565b6065546001600160a01b03163314620009615760405162461bcd60e51b81526004016200068b9062002117565b60cb54600160a01b900460ff1615620009b25760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b60448201526064016200068b565b60cb805460ff60a01b1916600160a01b17905562000931816a31a17e847807b1bc0000006200131d565b6065546001600160a01b0316331462000a095760405162461bcd60e51b81526004016200068b9062002117565b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b6065546001600160a01b0316331462000a805760405162461bcd60e51b81526004016200068b9062002117565b6001600160a01b03919091166000908152609d60205260409020805460ff1916911515919091179055565b600043821062000b135760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b60648201526084016200068b565b6001600160a01b038316600090815260ce602052604090205463ffffffff168062000b4357600091505062000876565b6001600160a01b038416600090815260cd60205260408120849162000b6a6001856200222c565b63ffffffff9081168252602082019290925260400160002054161162000bd7576001600160a01b038416600090815260cd602052604081209062000bb06001846200222c565b63ffffffff1663ffffffff1681526020019081526020016000206001015491505062000876565b6001600160a01b038416600090815260cd6020908152604080832083805290915290205463ffffffff1683101562000c1457600091505062000876565b60008062000c246001846200222c565b90505b8163ffffffff168163ffffffff16111562000cfa576000600262000c4c84846200222c565b62000c589190620021e0565b62000c6490836200222c565b6001600160a01b038816600090815260cd6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141562000cc957602001519450620008769350505050565b805163ffffffff1687111562000ce25781935062000cf2565b62000cef6001836200222c565b92505b505062000c27565b506001600160a01b038516600090815260cd6020908152604080832063ffffffff9094168352929052206001015491505092915050565b6060609b8054620005be9062002254565b6000620008723384620008dc8560405180606001604052806025815260200162002a47602591393360009081526098602090815260408083206001600160a01b038d16845290915290205491906200147e565b60006200087233848462001464565b6001600160a01b038116600090815260ce602052604081205463ffffffff168062000dd157600062000e16565b6001600160a01b038316600090815260cd602052604081209062000df76001846200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86662000e4a620005ad565b8051906020012062000e594690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa15801562000f86573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811662000fff5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526a64207369676e617475726560a81b60648201526084016200068b565b6001600160a01b038116600090815260cf60205260408120805491620010258362002291565b919050558914620010895760405162461bcd60e51b815260206004820152602760248201527f4661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c6960448201526664206e6f6e636560c81b60648201526084016200068b565b87421115620010ef5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b60648201526084016200068b565b620010fb818b620014bb565b505050505b505050505050565b6065546001600160a01b03163314620011355760405162461bcd60e51b81526004016200068b9062002117565b6001600160a01b0381166200119c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200068b565b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff16806200120e5750303b155b806200121d575060005460ff16155b6200123c5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff161580156200125f576000805461ffff19166101011790555b6200126962001537565b62001273620015b2565b801562000931576000805461ff001916905550565b600054610100900460ff16806200129e5750303b155b80620012ad575060005460ff16155b620012cc5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff16158015620012ef576000805461ffff19166101011790555b620012f962001537565b62001305838362001671565b801562001318576000805461ff00191690555b505050565b62001329828262001728565b620013376000838362001823565b5050565b6001600160a01b0383166200139f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200068b565b6001600160a01b038216620014025760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200068b565b6001600160a01b0383811660008181526098602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6200147183838362001996565b6200131883838362001823565b60008184841115620014a55760405162461bcd60e51b81526004016200068b9190620020bf565b505050900390565b600062000e1682846200219a565b6001600160a01b03828116600081815260cc6020818152604080842080546097845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46200085d82848362001823565b600054610100900460ff16806200154d5750303b155b806200155c575060005460ff16155b6200157b5760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff1615801562001273576000805461ffff1916610101179055801562000931576000805461ff001916905550565b600054610100900460ff1680620015c85750303b155b80620015d7575060005460ff16155b620015f65760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff1615801562001619576000805461ffff19166101011790555b606580546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350801562000931576000805461ff001916905550565b600054610100900460ff1680620016875750303b155b8062001696575060005460ff16155b620016b55760405162461bcd60e51b81526004016200068b906200214c565b600054610100900460ff16158015620016d8576000805461ffff19166101011790555b8251620016ed90609a90602086019062001d49565b5081516200170390609b90602085019062001d49565b50609c805460ff19166012179055801562001318576000805461ff0019169055505050565b6001600160a01b038216620017805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200068b565b6200178e6000838362001b33565b6099546200179d9082620014ad565b6099556001600160a01b038216600090815260976020526040902054620017c59082620014ad565b6001600160a01b0383166000818152609760205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620018179085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620018465750600081115b1562001318576001600160a01b03831615620018f3576001600160a01b038316600090815260ce602052604081205463ffffffff1690816200188a576000620018cf565b6001600160a01b038516600090815260cd6020526040812090620018b06001856200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620018df848362002212565b9050620018ef8684848462001b5a565b5050505b6001600160a01b0382161562001318576001600160a01b038216600090815260ce602052604081205463ffffffff1690816200193157600062001976565b6001600160a01b038416600090815260cd6020526040812090620019576001856200222c565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006200198684836200219a565b9050620011008584848462001b5a565b6001600160a01b038316620019fc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200068b565b6001600160a01b03821662001a605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200068b565b62001a6d83838362001b33565b62001aad81604051806060016040528060268152602001620029c0602691396001600160a01b03861660009081526097602052604090205491906200147e565b6001600160a01b03808516600090815260976020526040808220939093559084168152205462001ade9082620014ad565b6001600160a01b0380841660008181526097602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620014579085815260200190565b6001600160a01b0383166000908152609d602052604090205460ff16156200131857600080fd5b600062001b814360405180606001604052806039815260200162002a0e6039913962001d08565b905060008463ffffffff1611801562001bde57506001600160a01b038516600090815260cd6020526040812063ffffffff83169162001bc26001886200222c565b63ffffffff908116825260208201929092526040016000205416145b1562001c2b576001600160a01b038516600090815260cd60205260408120839162001c0b6001886200222c565b63ffffffff16815260208101919091526040016000206001015562001cbd565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a16600090815260cd83528581208a851682529092529390209151825463ffffffff19169116178155905160019182015562001c8c908590620021b5565b6001600160a01b038616600090815260ce60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841062001d335760405162461bcd60e51b81526004016200068b9190620020bf565b509192915050565b6106e480620022dc83390190565b82805462001d579062002254565b90600052602060002090601f01602090048101928262001d7b576000855562001dc6565b82601f1062001d9657805160ff191683800117855562001dc6565b8280016001018555821562001dc6579182015b8281111562001dc657825182559160200191906001019062001da9565b5062001dd492915062001dd8565b5090565b5b8082111562001dd4576000815560010162001dd9565b80356001600160a01b038116811462001e0757600080fd5b919050565b600082601f83011262001e1e57600080fd5b813567ffffffffffffffff8082111562001e3c5762001e3c620022c5565b604051601f8301601f19908116603f0116810190828211818310171562001e675762001e67620022c5565b8160405283815286602085880101111562001e8157600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121562001eb457600080fd5b62000e168262001def565b6000806040838503121562001ed357600080fd5b62001ede8362001def565b915062001eee6020840162001def565b90509250929050565b60008060006060848603121562001f0d57600080fd5b62001f188462001def565b925062001f286020850162001def565b9150604084013590509250925092565b6000806040838503121562001f4c57600080fd5b62001f578362001def565b91506020830135801515811462001f6d57600080fd5b809150509250929050565b6000806040838503121562001f8c57600080fd5b62001f978362001def565b946020939093013593505050565b60008060008060008060c0878903121562001fbf57600080fd5b62001fca8762001def565b95506020870135945060408701359350606087013560ff8116811462001fef57600080fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156200201d57600080fd5b620020288362001def565b9150602083013563ffffffff8116811462001f6d57600080fd5b6000806000606084860312156200205857600080fd5b833567ffffffffffffffff808211156200207157600080fd5b6200207f8783880162001e0c565b945060208601359150808211156200209657600080fd5b50620020a58682870162001e0c565b925050620020b66040850162001def565b90509250925092565b600060208083528351808285015260005b81811015620020ee57858101830151858201604001528201620020d0565b8181111562002101576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60008219821115620021b057620021b0620022af565b500190565b600063ffffffff808316818516808303821115620021d757620021d7620022af565b01949350505050565b600063ffffffff808416806200220657634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b600082821015620022275762002227620022af565b500390565b600063ffffffff838116908316818110156200224c576200224c620022af565b039392505050565b600181811c908216806200226957607f821691505b602082108114156200228b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620022a857620022a8620022af565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe608060405234801561001057600080fd5b506040516106e43803806106e483398101604081905261002f916100a5565b6001600160a01b03841661004257600080fd5b8082111561004f57600080fd5b600080546001600160a01b0319166001600160a01b03861617905560038190556100848383610092602090811b61031b17901c565b600155505060025550610116565b600061009e82846100f0565b9392505050565b600080600080608085870312156100bb57600080fd5b84516001600160a01b03811681146100d257600080fd5b60208601516040870151606090970151919890975090945092505050565b6000821982111561011157634e487b7160e01b600052601160045260246000fd5b500190565b6105bf806101256000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063384711cc1161005b578063384711cc146100da57806338af3eed146100ed5780639852595c14610118578063be9a65551461013857600080fd5b80630fb5a6b41461008d57806313d033c0146100a95780631726cbc8146100b257806319165587146100c5575b600080fd5b61009660035481565b6040519081526020015b60405180910390f35b61009660015481565b6100966100c0366004610464565b610141565b6100d86100d3366004610464565b610173565b005b6100966100e8366004610464565b610212565b600054610100906001600160a01b031681565b6040516001600160a01b0390911681526020016100a0565b610096610126366004610464565b60046020526000908152604090205481565b61009660025481565b6001600160a01b03811660009081526004602052604081205461016d9061016784610212565b9061032e565b92915050565b600061017e82610141565b90506000811161018d57600080fd5b6001600160a01b0382166000908152600460205260409020546101b0908261031b565b6001600160a01b0380841660008181526004602052604081209390935591546101db9291168361033a565b6040518181527ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659060200160405180910390a15050565b6040516370a0823160e01b815230600482015260009081906001600160a01b038416906370a082319060240160206040518083038186803b15801561025657600080fd5b505afa15801561026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061028e91906104af565b6001600160a01b038416600090815260046020526040812054919250906102b690839061031b565b90506001544210156102cc575060009392505050565b6003546002546102db9161031b565b42106102e8579392505050565b61031360035461030d6103066002544261032e90919063ffffffff16565b849061044c565b90610458565b949350505050565b60006103278284610503565b9392505050565b6000610327828461055c565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161039691906104c8565b6000604051808303816000865af19150503d80600081146103d3576040519150601f19603f3d011682016040523d82523d6000602084013e6103d8565b606091505b5091509150818015610402575080511580610402575080806020019051810190610402919061048d565b6104455760405162461bcd60e51b815260206004820152601060248201526f085514905394d1915497d1905253115160821b604482015260640160405180910390fd5b5050505050565b6000610327828461053d565b6000610327828461051b565b60006020828403121561047657600080fd5b81356001600160a01b038116811461032757600080fd5b60006020828403121561049f57600080fd5b8151801515811461032757600080fd5b6000602082840312156104c157600080fd5b5051919050565b6000825160005b818110156104e957602081860181015185830152016104cf565b818111156104f8576000828501525b509190910192915050565b6000821982111561051657610516610573565b500190565b60008261053857634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561055757610557610573565b500290565b60008282101561056e5761056e610573565b500390565b634e487b7160e01b600052601160045260246000fdfea264697066735822122046b37d8335be5adc452ef968439c6ac7a8311733363fa91090619f3a6243fd4b64736f6c6343000806003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201becf04099d13cae0860d3430d9ab9c3f44249494b34e2fa8f3b43497740d33664736f6c63430008060033
Deployed Bytecode Sourcemap
31591:9966:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18108:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31789:597;;;;;;:::i;:::-;;:::i;:::-;;20214:169;;;;;;:::i;:::-;;:::i;:::-;;;5576:14:1;;5569:22;5551:41;;5539:2;5524:18;20214:169:0;5506:92:1;19183:100:0;19263:12;;19183:100;;;5749:25:1;;;5737:2;5722:18;19183:100:0;5704:76:1;33943:122:0;;33985:80;33943:122;;20865:321;;;;;;:::i;:::-;;:::i;19035:83::-;19101:9;;19035:83;;19101:9;;;;14058:36:1;;14046:2;14031:18;19035:83:0;14013:87:1;31727:53:0;;31764:16;31727:53;;21595:218;;;;;;:::i;:::-;;:::i;34926:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35046:21:0;;;35014:7;35046:21;;;:10;:21;;;;;;;;34926:149;;;;-1:-1:-1;;;;;4477:32:1;;;4459:51;;4447:2;4432:18;34926:149:0;4414:102:1;35219:104:0;;;;;;:::i;:::-;;:::i;32394:176::-;;;;;;:::i;:::-;;:::i;31631:31::-;;;;;-1:-1:-1;;;;;31631:31:0;;;33821:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13625:10:1;13613:23;;;13595:42;;13583:2;13568:18;33821:49:0;13550:93:1;19346:119:0;;;;;;:::i;:::-;-1:-1:-1;;;;;19439:18:0;19412:7;19439:18;;;:9;:18;;;;;;;19346:119;5619:148;;;:::i;26884:103::-;;;;;;:::i;:::-;;:::i;37849:1258::-;;;;;;:::i;:::-;;:::i;34357:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;4977:79;5042:6;;-1:-1:-1;;;;;5042:6:0;4977:79;;18310:87;;;:::i;31669:33::-;;;;;-1:-1:-1;;;;;31669:33:0;;;22316:269;;;;;;:::i;:::-;;:::i;19678:175::-;;;;;;:::i;:::-;;:::i;37163:255::-;;;;;;:::i;:::-;;:::i;35757:1205::-;;;;;;:::i;:::-;;:::i;19916:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20032:18:0;;;20005:7;20032:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19916:151;34159:117;;34205:71;34159:117;;33682:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13850:10:1;13838:23;;;13820:42;;13893:2;13878:18;;13871:34;;;;13793:18;33682:70:0;13775:136:1;5922:244:0;;;;;;:::i;:::-;;:::i;18108:83::-;18145:13;18178:5;18171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18108:83;:::o;31789:597::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;;;;;;;;;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1236:83;31903:24:::1;:22;:24::i;:::-;31938:34;31957:5;31964:7;31938:18;:34::i;:::-;32018:10;32030:26;:15;32048:8;32030:26;:::i;:::-;32058:6;32066:8;32001:74;;;;;:::i;:::-;-1:-1:-1::0;;;;;4793:32:1;;;4775:51;;4857:2;4842:18;;4835:34;;;;4900:2;4885:18;;4878:34;4943:2;4928:18;;4921:34;4762:3;4747:19;32001:74:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;31985:13:0::1;:90:::0;;-1:-1:-1;;;;;;31985:90:0::1;-1:-1:-1::0;;;;;31985:90:0;;;::::1;::::0;;;::::1;::::0;;32117:10:::1;32129:25;:15;32147:7;32129:25;:::i;:::-;32156:6;32164:8;32100:73;;;;;:::i;:::-;-1:-1:-1::0;;;;;4793:32:1;;;4775:51;;4857:2;4842:18;;4835:34;;;;4900:2;4885:18;;4878:34;4943:2;4928:18;;4921:34;4762:3;4747:19;32100:73:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;32086:11:0::1;:87:::0;;-1:-1:-1;;;;;;32086:87:0::1;-1:-1:-1::0;;;;;32086:87:0;;;::::1;::::0;;;::::1;::::0;;32186:35:::1;32193:10;32205:15;32186:6;:35::i;:::-;32232:33;32239:8;32249:15;32232:6;:33::i;:::-;32291:13;::::0;32276:46:::1;::::0;-1:-1:-1;;;;;32291:13:0::1;32307:14;32276:6;:46::i;:::-;32348:11;::::0;32333:45:::1;::::0;-1:-1:-1;;;;;32348:11:0::1;32362:15;32333:6;:45::i;:::-;1341:14:::0;1337:57;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1337:57;1072:327;31789:597;;;:::o;20214:169::-;20297:4;20314:39;3434:10;20337:7;20346:6;20314:8;:39::i;:::-;-1:-1:-1;20371:4:0;20214:169;;;;;:::o;20865:321::-;20971:4;20988:36;20998:6;21006:9;21017:6;20988:9;:36::i;:::-;21035:121;21044:6;3434:10;21066:89;21104:6;21066:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21066:19:0;;;;;;:11;:19;;;;;;;;3434:10;21066:33;;;;;;;;;;:37;:89::i;:::-;21035:8;:121::i;:::-;-1:-1:-1;21174:4:0;20865:321;;;;;:::o;21595:218::-;3434:10;21683:4;21732:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21732:34:0;;;;;;;;;;21683:4;;21700:83;;21723:7;;21732:50;;21771:10;21732:38;:50::i;35219:104::-;35283:32;35293:10;35305:9;35283;:32::i;:::-;35219:104;:::o;32394:176::-;5189:6;;-1:-1:-1;;;;;5189:6:0;3434:10;5189:22;5181:67;;;;-1:-1:-1;;;5181:67:0;;;;;;;:::i;:::-;32468:6:::1;::::0;-1:-1:-1;;;32468:6:0;::::1;;;32467:7;32459:38;;;::::0;-1:-1:-1;;;32459:38:0;;12098:2:1;32459:38:0::1;::::0;::::1;12080:21:1::0;12137:2;12117:18;;;12110:30;-1:-1:-1;;;12156:18:1;;;12149:48;12214:18;;32459:38:0::1;12070:168:1::0;32459:38:0::1;32508:6;:13:::0;;-1:-1:-1;;;;32508:13:0::1;-1:-1:-1::0;;;32508:13:0::1;::::0;;32532:30:::1;32539:5:::0;32546:15:::1;32532:6;:30::i;5619:148::-:0;5189:6;;-1:-1:-1;;;;;5189:6:0;3434:10;5189:22;5181:67;;;;-1:-1:-1;;;5181:67:0;;;;;;;:::i;:::-;5710:6:::1;::::0;5689:40:::1;::::0;5726:1:::1;::::0;-1:-1:-1;;;;;5710:6:0::1;::::0;5689:40:::1;::::0;5726:1;;5689:40:::1;5740:6;:19:::0;;-1:-1:-1;;;;;;5740:19:0::1;::::0;;5619:148::o;26884:103::-;5189:6;;-1:-1:-1;;;;;5189:6:0;3434:10;5189:22;5181:67;;;;-1:-1:-1;;;5181:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26956:15:0;;;::::1;;::::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;26956:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26884:103::o;37849:1258::-;37957:7;38004:12;37990:11;:26;37982:83;;;;-1:-1:-1;;;37982:83:0;;12445:2:1;37982:83:0;;;12427:21:1;12484:2;12464:18;;;12457:30;12523:34;12503:18;;;12496:62;-1:-1:-1;;;12574:18:1;;;12567:42;12626:19;;37982:83:0;12417:234:1;37982:83:0;-1:-1:-1;;;;;38100:23:0;;38078:19;38100:23;;;:14;:23;;;;;;;;38138:17;38134:58;;38179:1;38172:8;;;;;38134:58;-1:-1:-1;;;;;38252:20:0;;;;;;:11;:20;;;;;38304:11;;38273:16;38288:1;38273:12;:16;:::i;:::-;38252:38;;;;;;;;;;;;;;;-1:-1:-1;38252:38:0;:48;;:63;38248:147;;-1:-1:-1;;;;;38339:20:0;;;;;;:11;:20;;;;;;38360:16;38375:1;38360:12;:16;:::i;:::-;38339:38;;;;;;;;;;;;;;;:44;;;38332:51;;;;;38248:147;-1:-1:-1;;;;;38456:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;38452:88:0;;;38527:1;38520:8;;;;;38452:88;38552:12;;38594:16;38609:1;38594:12;:16;:::i;:::-;38579:31;;38621:428;38636:5;38628:13;;:5;:13;;;38621:428;;;38658:13;38700:1;38683:13;38691:5;38683;:13;:::i;:::-;38682:19;;;;:::i;:::-;38674:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;38766:20:0;;38743;38766;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;38743:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;38658:43;;-1:-1:-1;38813:27:0;;38809:229;;;38868:8;;;;-1:-1:-1;38861:15:0;;-1:-1:-1;;;;38861:15:0;38809:229;38902:12;;:26;;;-1:-1:-1;38898:140:0;;;38957:6;38949:14;;38898:140;;;39012:10;39021:1;39012:6;:10;:::i;:::-;39004:18;;38898:140;38643:406;;38621:428;;;-1:-1:-1;;;;;;39066:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;37849:1258:0;;;;:::o;18310:87::-;18349:13;18382:7;18375:14;;;;;:::i;22316:269::-;22409:4;22426:129;3434:10;22449:7;22458:96;22497:15;22458:96;;;;;;;;;;;;;;;;;3434:10;22458:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;22458:34:0;;;;;;;;;;;;:38;:96::i;19678:175::-;19764:4;19781:42;3434:10;19805:9;19816:6;19781:9;:42::i;37163:255::-;-1:-1:-1;;;;;37302:23:0;;37255:7;37302:23;;;:14;:23;;;;;;;;37343:16;:67;;37409:1;37343:67;;;-1:-1:-1;;;;;37362:20:0;;;;;;:11;:20;;;;;;37383:16;37398:1;37383:12;:16;:::i;:::-;37362:38;;;;;;;;;;;;;;;:44;;;37343:67;37336:74;37163:255;-1:-1:-1;;;37163:255:0:o;35757:1205::-;35950:23;33985:80;36079:6;:4;:6::i;:::-;36063:24;;;;;;36106:12;41511:9;;41401:153;36106:12;36000:165;;;;;;;6438:25:1;;;;6479:18;;;6472:34;;;;6522:18;;;6515:34;;;;36145:4:0;6565:18:1;;;;6558:60;;;;36000:165:0;;;;;;;;;;6410:19:1;;;36000:165:0;;35976:200;;;;;;34205:71;36234:140;;;6016:25:1;-1:-1:-1;;;;;6077:32:1;;6057:18;;;6050:60;6126:18;;;6119:34;;;6169:18;;;;6162:34;;;36234:140:0;;;;;;;;;;5988:19:1;;;36234:140:0;;;36210:175;;;;;;;-1:-1:-1;;;36439:123:0;;;4174:27:1;4217:11;;;4210:27;;;4253:12;;;4246:28;;;35976:200:0;;-1:-1:-1;;;4290:12:1;;36439:123:0;;;-1:-1:-1;;36439:123:0;;;;;;;;;36415:158;;36439:123;36415:158;;;;36586:17;36606:26;;;;;;;;;6856:25:1;;;6929:4;6917:17;;6897:18;;;6890:45;;;;6951:18;;;6944:34;;;6994:18;;;6987:34;;;36415:158:0;;-1:-1:-1;36586:17:0;36606:26;;6828:19:1;;36606:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36606:26:0;;-1:-1:-1;;36606:26:0;;;-1:-1:-1;;;;;;;36651:23:0;;36643:79;;;;-1:-1:-1;;;36643:79:0;;10099:2:1;36643:79:0;;;10081:21:1;10138:2;10118:18;;;10111:30;10177:34;10157:18;;;10150:62;-1:-1:-1;;;10228:18:1;;;10221:41;10279:19;;36643:79:0;10071:233:1;36643:79:0;-1:-1:-1;;;;;36750:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;36741:5;:28;36733:80;;;;-1:-1:-1;;;36733:80:0;;9691:2:1;36733:80:0;;;9673:21:1;9730:2;9710:18;;;9703:30;9769:34;9749:18;;;9742:62;-1:-1:-1;;;9820:18:1;;;9813:37;9867:19;;36733:80:0;9663:229:1;36733:80:0;36851:6;36832:15;:25;;36824:81;;;;-1:-1:-1;;;36824:81:0;;8469:2:1;36824:81:0;;;8451:21:1;8508:2;8488:18;;;8481:30;8547:34;8527:18;;;8520:62;-1:-1:-1;;;8598:18:1;;;8591:41;8649:19;;36824:81:0;8441:233:1;36824:81:0;36923:31;36933:9;36944;36923;:31::i;:::-;36916:38;;;;35757:1205;;;;;;;:::o;5922:244::-;5189:6;;-1:-1:-1;;;;;5189:6:0;3434:10;5189:22;5181:67;;;;-1:-1:-1;;;5181:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6011:22:0;::::1;6003:73;;;::::0;-1:-1:-1;;;6003:73:0;;8881:2:1;6003:73:0::1;::::0;::::1;8863:21:1::0;8920:2;8900:18;;;8893:30;8959:34;8939:18;;;8932:62;-1:-1:-1;;;9010:18:1;;;9003:36;9056:19;;6003:73:0::1;8853:228:1::0;6003:73:0::1;6113:6;::::0;6092:38:::1;::::0;-1:-1:-1;;;;;6092:38:0;;::::1;::::0;6113:6:::1;::::0;6092:38:::1;::::0;6113:6:::1;::::0;6092:38:::1;6141:6;:17:::0;;-1:-1:-1;;;;;;6141:17:0::1;-1:-1:-1::0;;;;;6141:17:0;;;::::1;::::0;;;::::1;::::0;;5922:244::o;4555:129::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1236:83;4613:26:::1;:24;:26::i;:::-;4650;:24;:26::i;:::-;1341:14:::0;1337:57;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1072:327;4555:129::o;17667:181::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1236:83;17765:26:::1;:24;:26::i;:::-;17802:38;17825:5;17832:7;17802:22;:38::i;:::-;1341:14:::0;1337:57;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1337:57;1072:327;17667:181;;:::o;32576:144::-;32642:19;32648:3;32653:7;32642:5;:19::i;:::-;32672:40;32695:1;32699:3;32704:7;32672:14;:40::i;:::-;32576:144;;:::o;25463:346::-;-1:-1:-1;;;;;25565:19:0;;25557:68;;;;-1:-1:-1;;;25557:68:0;;11693:2:1;25557:68:0;;;11675:21:1;11732:2;11712:18;;;11705:30;11771:34;11751:18;;;11744:62;-1:-1:-1;;;11822:18:1;;;11815:34;11866:19;;25557:68:0;11665:226:1;25557:68:0;-1:-1:-1;;;;;25644:21:0;;25636:68;;;;-1:-1:-1;;;25636:68:0;;9288:2:1;25636:68:0;;;9270:21:1;9327:2;9307:18;;;9300:30;9366:34;9346:18;;;9339:62;-1:-1:-1;;;9417:18:1;;;9410:32;9459:19;;25636:68:0;9260:224:1;25636:68:0;-1:-1:-1;;;;;25717:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25769:32;;5749:25:1;;;25769:32:0;;5722:18:1;25769:32:0;;;;;;;;25463:346;;;:::o;32726:201::-;32825:42;32841:6;32849:9;32860:6;32825:15;:42::i;:::-;32878:41;32893:6;32901:9;32912:6;32878:14;:41::i;13968:206::-;14054:7;14115:12;14107:6;;;;14099:29;;;;-1:-1:-1;;;14099:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;14150:5:0;;;13968:206::o;11689:98::-;11747:7;11774:5;11778:1;11774;:5;:::i;39115:443::-;-1:-1:-1;;;;;39232:21:0;;;39206:23;39232:21;;;:10;:21;;;;;;;;;;19439:9;:18;;;;;;39372:21;;;;:33;;;-1:-1:-1;;;;;;39372:33:0;;;;;;;39423:54;;39232:21;;;;;19439:18;;39372:33;;39232:21;;;39423:54;;39206:23;39423:54;39490:60;39505:15;39522:9;39533:16;39490:14;:60::i;3261:69::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1337:57;;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1072:327;3261:69::o;4692:202::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1236:83;4807:6:::1;:18:::0;;-1:-1:-1;;;;;;4807:18:0::1;3434:10:::0;4807:18;;::::1;::::0;;;4841:43:::1;::::0;3434:10;;4764:17:::1;::::0;4841:43:::1;::::0;4764:17;;4841:43:::1;4749:145;1341:14:::0;1337:57;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1072:327;4692:202::o;17856:182::-;1087:12;;;;;;;;:31;;-1:-1:-1;2209:4:0;2255:17;2287:7;1103:15;1087:47;;;-1:-1:-1;1123:11:0;;;;1122:12;1087:47;1079:106;;;;-1:-1:-1;;;1079:106:0;;;;;;;:::i;:::-;1194:19;1217:12;;;;;;1216:13;1236:83;;;;1265:12;:19;;-1:-1:-1;;1293:18:0;;;;;1236:83;17964:13;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;17988:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;18016:9:0::1;:14:::0;;-1:-1:-1;;18016:14:0::1;18028:2;18016:14;::::0;;1337:57;;;;1381:5;1366:20;;-1:-1:-1;;1366:20:0;;;1072:327;17856:182;;:::o;23896:378::-;-1:-1:-1;;;;;23980:21:0;;23972:65;;;;-1:-1:-1;;;23972:65:0;;12858:2:1;23972:65:0;;;12840:21:1;12897:2;12877:18;;;12870:30;12936:33;12916:18;;;12909:61;12987:18;;23972:65:0;12830:181:1;23972:65:0;24050:49;24079:1;24083:7;24092:6;24050:20;:49::i;:::-;24127:12;;:24;;24144:6;24127:16;:24::i;:::-;24112:12;:39;-1:-1:-1;;;;;24183:18:0;;;;;;:9;:18;;;;;;:30;;24206:6;24183:22;:30::i;:::-;-1:-1:-1;;;;;24162:18:0;;;;;;:9;:18;;;;;;:51;;;;24229:37;;24162:18;;;24229:37;;;;24259:6;5749:25:1;;5737:2;5722:18;;5704:76;24229:37:0;;;;;;;;23896:378;;:::o;39566:941::-;39672:6;-1:-1:-1;;;;;39662:16:0;:6;-1:-1:-1;;;;;39662:16:0;;;:30;;;;;39691:1;39682:6;:10;39662:30;39658:842;;;-1:-1:-1;;;;;39713:20:0;;;39709:382;;-1:-1:-1;;;;;39821:22:0;;39802:16;39821:22;;;:14;:22;;;;;;;;;39882:13;:60;;39941:1;39882:60;;;-1:-1:-1;;;;;39898:19:0;;;;;;:11;:19;;;;;;39918:13;39930:1;39918:9;:13;:::i;:::-;39898:34;;;;;;;;;;;;;;;:40;;;39882:60;39862:80;-1:-1:-1;39961:17:0;39981:18;39993:6;39862:80;39981:18;:::i;:::-;39961:38;;40018:57;40035:6;40043:9;40054;40065;40018:16;:57::i;:::-;39735:356;;;39709:382;-1:-1:-1;;;;;40111:20:0;;;40107:382;;-1:-1:-1;;;;;40219:22:0;;40200:16;40219:22;;;:14;:22;;;;;;;;;40280:13;:60;;40339:1;40280:60;;;-1:-1:-1;;;;;40296:19:0;;;;;;:11;:19;;;;;;40316:13;40328:1;40316:9;:13;:::i;:::-;40296:34;;;;;;;;;;;;;;;:40;;;40280:60;40260:80;-1:-1:-1;40359:17:0;40379:18;40391:6;40260:80;40379:18;:::i;:::-;40359:38;;40416:57;40433:6;40441:9;40452;40463;40416:16;:57::i;23075:539::-;-1:-1:-1;;;;;23181:20:0;;23173:70;;;;-1:-1:-1;;;23173:70:0;;11287:2:1;23173:70:0;;;11269:21:1;11326:2;11306:18;;;11299:30;11365:34;11345:18;;;11338:62;-1:-1:-1;;;11416:18:1;;;11409:35;11461:19;;23173:70:0;11259:227:1;23173:70:0;-1:-1:-1;;;;;23262:23:0;;23254:71;;;;-1:-1:-1;;;23254:71:0;;8065:2:1;23254:71:0;;;8047:21:1;8104:2;8084:18;;;8077:30;8143:34;8123:18;;;8116:62;-1:-1:-1;;;8194:18:1;;;8187:33;8237:19;;23254:71:0;8037:225:1;23254:71:0;23338:47;23359:6;23367:9;23378:6;23338:20;:47::i;:::-;23418:71;23440:6;23418:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23418:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23398:17:0;;;;;;;:9;:17;;;;;;:91;;;;23523:20;;;;;;;:32;;23548:6;23523:24;:32::i;:::-;-1:-1:-1;;;;;23500:20:0;;;;;;;:9;:20;;;;;;;:55;;;;23571:35;;;;;;;;;;23599:6;5749:25:1;;5737:2;5722:18;;5704:76;26993:138:0;-1:-1:-1;;;;;27107:15:0;;;;;;:9;:15;;;;;;;;27106:16;27098:25;;;;;40515:709;40694:18;40715:81;40722:12;40715:81;;;;;;;;;;;;;;;;;:6;:81::i;:::-;40694:102;;40828:1;40813:12;:16;;;:85;;;;-1:-1:-1;;;;;;40833:22:0;;;;;;:11;:22;;;;;:65;;;;40856:16;40871:1;40856:12;:16;:::i;:::-;40833:40;;;;;;;;;;;;;;;-1:-1:-1;40833:40:0;:50;;:65;40813:85;40809:339;;;-1:-1:-1;;;;;40915:22:0;;;;;;:11;:22;;;;;40964:8;;40938:16;40953:1;40938:12;:16;:::i;:::-;40915:40;;;;;;;;;;;;;-1:-1:-1;40915:40:0;:46;;:57;40809:339;;;41044:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41005:22:0;;-1:-1:-1;41005:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;:72;;;;-1:-1:-1;;41005:72:0;;;;;;;;-1:-1:-1;41005:72:0;;;;41120:16;;41005:36;;41120:16;:::i;:::-;-1:-1:-1;;;;;41092:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;41092:44:0;;;;;;;;;;;;40809:339;41165:51;;;13372:25:1;;;13428:2;13413:18;;13406:34;;;-1:-1:-1;;;;;41165:51:0;;;;;13345:18:1;41165:51:0;;;;;;;40683:541;40515:709;;;;:::o;41232:161::-;41307:6;41345:12;41338:5;41334:9;;41326:32;;;;-1:-1:-1;;;41326:32:0;;;;;;;;:::i;:::-;-1:-1:-1;41383:1:0;;41232:161;-1:-1:-1;;41232:161:0:o;-1:-1:-1:-;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:719::-;235:5;288:3;281:4;273:6;269:17;265:27;255:2;;306:1;303;296:12;255:2;342:6;329:20;368:18;405:2;401;398:10;395:2;;;411:18;;:::i;:::-;486:2;480:9;454:2;540:13;;-1:-1:-1;;536:22:1;;;560:2;532:31;528:40;516:53;;;584:18;;;604:22;;;581:46;578:2;;;630:18;;:::i;:::-;670:10;666:2;659:22;705:2;697:6;690:18;751:3;744:4;739:2;731:6;727:15;723:26;720:35;717:2;;;768:1;765;758:12;717:2;832;825:4;817:6;813:17;806:4;798:6;794:17;781:54;879:1;872:4;867:2;859:6;855:15;851:26;844:37;899:6;890:15;;;;;;245:666;;;;:::o;916:186::-;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:2;;;1044:1;1041;1034:12;996:2;1067:29;1086:9;1067:29;:::i;1107:260::-;1175:6;1183;1236:2;1224:9;1215:7;1211:23;1207:32;1204:2;;;1252:1;1249;1242:12;1204:2;1275:29;1294:9;1275:29;:::i;:::-;1265:39;;1323:38;1357:2;1346:9;1342:18;1323:38;:::i;:::-;1313:48;;1194:173;;;;;:::o;1372:328::-;1449:6;1457;1465;1518:2;1506:9;1497:7;1493:23;1489:32;1486:2;;;1534:1;1531;1524:12;1486:2;1557:29;1576:9;1557:29;:::i;:::-;1547:39;;1605:38;1639:2;1628:9;1624:18;1605:38;:::i;:::-;1595:48;;1690:2;1679:9;1675:18;1662:32;1652:42;;1476:224;;;;;:::o;1705:347::-;1770:6;1778;1831:2;1819:9;1810:7;1806:23;1802:32;1799:2;;;1847:1;1844;1837:12;1799:2;1870:29;1889:9;1870:29;:::i;:::-;1860:39;;1949:2;1938:9;1934:18;1921:32;1996:5;1989:13;1982:21;1975:5;1972:32;1962:2;;2018:1;2015;2008:12;1962:2;2041:5;2031:15;;;1789:263;;;;;:::o;2057:254::-;2125:6;2133;2186:2;2174:9;2165:7;2161:23;2157:32;2154:2;;;2202:1;2199;2192:12;2154:2;2225:29;2244:9;2225:29;:::i;:::-;2215:39;2301:2;2286:18;;;;2273:32;;-1:-1:-1;;;2144:167:1:o;2316:618::-;2418:6;2426;2434;2442;2450;2458;2511:3;2499:9;2490:7;2486:23;2482:33;2479:2;;;2528:1;2525;2518:12;2479:2;2551:29;2570:9;2551:29;:::i;:::-;2541:39;;2627:2;2616:9;2612:18;2599:32;2589:42;;2678:2;2667:9;2663:18;2650:32;2640:42;;2732:2;2721:9;2717:18;2704:32;2776:4;2769:5;2765:16;2758:5;2755:27;2745:2;;2796:1;2793;2786:12;2745:2;2469:465;;;;-1:-1:-1;2469:465:1;;2871:3;2856:19;;2843:33;;2923:3;2908:19;;;2895:33;;-1:-1:-1;2469:465:1;-1:-1:-1;;2469:465:1:o;2939:350::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:2;;;3083:1;3080;3073:12;3035:2;3106:29;3125:9;3106:29;:::i;:::-;3096:39;;3185:2;3174:9;3170:18;3157:32;3229:10;3222:5;3218:22;3211:5;3208:33;3198:2;;3255:1;3252;3245:12;3294:617;3391:6;3399;3407;3460:2;3448:9;3439:7;3435:23;3431:32;3428:2;;;3476:1;3473;3466:12;3428:2;3516:9;3503:23;3545:18;3586:2;3578:6;3575:14;3572:2;;;3602:1;3599;3592:12;3572:2;3625:50;3667:7;3658:6;3647:9;3643:22;3625:50;:::i;:::-;3615:60;;3728:2;3717:9;3713:18;3700:32;3684:48;;3757:2;3747:8;3744:16;3741:2;;;3773:1;3770;3763:12;3741:2;;3796:52;3840:7;3829:8;3818:9;3814:24;3796:52;:::i;:::-;3786:62;;;3867:38;3901:2;3890:9;3886:18;3867:38;:::i;:::-;3857:48;;3418:493;;;;;:::o;7261:597::-;7373:4;7402:2;7431;7420:9;7413:21;7463:6;7457:13;7506:6;7501:2;7490:9;7486:18;7479:34;7531:1;7541:140;7555:6;7552:1;7549:13;7541:140;;;7650:14;;;7646:23;;7640:30;7616:17;;;7635:2;7612:26;7605:66;7570:10;;7541:140;;;7699:6;7696:1;7693:13;7690:2;;;7769:1;7764:2;7755:6;7744:9;7740:22;7736:31;7729:42;7690:2;-1:-1:-1;7842:2:1;7821:15;-1:-1:-1;;7817:29:1;7802:45;;;;7849:2;7798:54;;7382:476;-1:-1:-1;;;7382:476:1:o;10309:356::-;10511:2;10493:21;;;10530:18;;;10523:30;10589:34;10584:2;10569:18;;10562:62;10656:2;10641:18;;10483:182::o;10670:410::-;10872:2;10854:21;;;10911:2;10891:18;;;10884:30;10950:34;10945:2;10930:18;;10923:62;-1:-1:-1;;;11016:2:1;11001:18;;10994:44;11070:3;11055:19;;10844:236::o;14105:128::-;14145:3;14176:1;14172:6;14169:1;14166:13;14163:2;;;14182:18;;:::i;:::-;-1:-1:-1;14218:9:1;;14153:80::o;14238:228::-;14277:3;14305:10;14342:2;14339:1;14335:10;14372:2;14369:1;14365:10;14403:3;14399:2;14395:12;14390:3;14387:21;14384:2;;;14411:18;;:::i;:::-;14447:13;;14285:181;-1:-1:-1;;;;14285:181:1:o;14471:288::-;14510:1;14536:10;14573:2;14570:1;14566:10;14595:3;14585:2;;14641:10;14636:3;14632:20;14629:1;14622:31;14676:4;14673:1;14666:15;14704:4;14701:1;14694:15;14585:2;14737:10;;14733:20;;;;;14516:243;-1:-1:-1;;14516:243:1:o;14764:125::-;14804:4;14832:1;14829;14826:8;14823:2;;;14837:18;;:::i;:::-;-1:-1:-1;14874:9:1;;14813:76::o;14894:221::-;14933:4;14962:10;15022;;;;14992;;15044:12;;;15041:2;;;15059:18;;:::i;:::-;15096:13;;14942:173;-1:-1:-1;;;14942:173:1:o;15120:380::-;15199:1;15195:12;;;;15242;;;15263:2;;15317:4;15309:6;15305:17;15295:27;;15263:2;15370;15362:6;15359:14;15339:18;15336:38;15333:2;;;15416:10;15411:3;15407:20;15404:1;15397:31;15451:4;15448:1;15441:15;15479:4;15476:1;15469:15;15333:2;;15175:325;;;:::o;15505:135::-;15544:3;-1:-1:-1;;15565:17:1;;15562:2;;;15585:18;;:::i;:::-;-1:-1:-1;15632:1:1;15621:13;;15552:88::o;15645:127::-;15706:10;15701:3;15697:20;15694:1;15687:31;15737:4;15734:1;15727:15;15761:4;15758:1;15751:15;15777:127;15838:10;15833:3;15829:20;15826:1;15819:31;15869:4;15866:1;15859:15;15893:4;15890:1;15883:15
Swarm Source
ipfs://1becf04099d13cae0860d3430d9ab9c3f44249494b34e2fa8f3b43497740d336
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.