Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 579 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21237871 | 36 hrs ago | IN | 0 ETH | 0.00114278 | ||||
Approve | 21234813 | 47 hrs ago | IN | 0 ETH | 0.0005151 | ||||
Approve | 21223107 | 3 days ago | IN | 0 ETH | 0.00053394 | ||||
Approve | 21222773 | 3 days ago | IN | 0 ETH | 0.00102292 | ||||
Approve | 21213488 | 4 days ago | IN | 0 ETH | 0.00047871 | ||||
Approve | 21205346 | 6 days ago | IN | 0 ETH | 0.00046566 | ||||
Approve | 21201255 | 6 days ago | IN | 0 ETH | 0.00086379 | ||||
Approve | 21200093 | 6 days ago | IN | 0 ETH | 0.0005514 | ||||
Transfer | 21196547 | 7 days ago | IN | 0 ETH | 0.00104509 | ||||
Transfer | 21196175 | 7 days ago | IN | 0 ETH | 0.00102943 | ||||
Transfer | 21195876 | 7 days ago | IN | 0 ETH | 0.00139081 | ||||
Approve | 21194159 | 7 days ago | IN | 0 ETH | 0.0014866 | ||||
Approve | 21191913 | 7 days ago | IN | 0 ETH | 0.00075835 | ||||
Approve | 21191229 | 8 days ago | IN | 0 ETH | 0.00067414 | ||||
Approve | 21190759 | 8 days ago | IN | 0 ETH | 0.00079126 | ||||
Approve | 21190296 | 8 days ago | IN | 0 ETH | 0.00080464 | ||||
Approve | 21189313 | 8 days ago | IN | 0 ETH | 0.00129489 | ||||
Approve | 21186130 | 8 days ago | IN | 0 ETH | 0.00156673 | ||||
Approve | 21186122 | 8 days ago | IN | 0 ETH | 0.00085363 | ||||
Approve | 21184848 | 8 days ago | IN | 0 ETH | 0.00143184 | ||||
Approve | 21184825 | 8 days ago | IN | 0 ETH | 0.00139128 | ||||
Transfer | 21183954 | 9 days ago | IN | 0 ETH | 0.00117972 | ||||
Transfer | 21183954 | 9 days ago | IN | 0 ETH | 0.00117972 | ||||
Transfer | 21183951 | 9 days ago | IN | 0 ETH | 0.00117972 | ||||
Transfer | 21183951 | 9 days ago | IN | 0 ETH | 0.00118015 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PAPA
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-11 */ // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 default value returned by this function, unless * it's overridden. * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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 subtraction 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; } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/docs-v4.x/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(account), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: token/ISwapRouter.sol pragma solidity ^0.8.4; interface ISwapRouter { function factoryV2() external pure returns (address); function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: token/ISwapFactory.sol pragma solidity ^0.8.4; interface ISwapFactory { function createPair(address tokenA, address tokenB) external returns (address pair); function getPair(address tokenA, address tokenB) external returns (address pair); } // File: token/IPancakePair.sol pragma solidity ^0.8.4; interface IPancakePair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: token/batm.sol pragma solidity ^0.8.4; contract PAPA is ERC20,Ownable { using SafeMath for uint256; ISwapRouter private uniswapV2Router; address public uniswapV2Pair; address public usdt; mapping(address => bool) private whiteList; uint256 refundCount; mapping(address => bool) excludeHolder; address public deadAddr=0x000000000000000000000000000000000000dEaD; address public fundAddress=0x1bF724004412b45b207bDF025485C25d0F8C41b7; uint256 public openTime; uint256 public rate=15; uint256 public timeOut=15 minutes; constructor()ERC20("Barbapapa", "PAPA") { address admin=0x4210c2337B94d71F53d9158a77969FA73Fba3ee6; usdt=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; //weth address swap=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;//eth main // admin=msg.sender; // usdt=0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd;//bsc test // swap=0xD99D1c33F9fC3444f8101754aBC46c52416550D1;//bsc test uniswapV2Router = ISwapRouter(swap); uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), usdt); whiteList[admin] = true; whiteList[address(this)] = true; whiteList[swap] = true; whiteList[uniswapV2Pair] = true; uint256 total=1000000000*10**decimals(); _mint(admin, total); _approve(address(this), address(uniswapV2Router),type(uint256).max); _approve(address(this), address(this),type(uint256).max); _approve(admin, address(uniswapV2Router),type(uint256).max); ERC20(usdt).approve(address(uniswapV2Router), type(uint256).max); excludeHolder[address(0)] = true; excludeHolder[deadAddr] = true; transferOwnership(admin); } function decimals() public view virtual override returns (uint8) { return 9; } function setFundAddress(address _fundAddress) external onlyOwner{ fundAddress=_fundAddress; } function open() external onlyOwner{ openTime=block.timestamp; } function setTimeOut(uint256 _timeOut) external onlyOwner { timeOut=_timeOut; } function _transfer( address from, address to, uint256 amount ) internal override { require(amount > 0, "amount must gt 0"); if(from != uniswapV2Pair && to != uniswapV2Pair) { super._transfer(from, to, amount); return; } if(from == uniswapV2Pair) { require(openTime>0, "not open"); if(openTime+timeOut>block.timestamp){ super._transfer(from, fundAddress, amount.mul(rate).div(100)); super._transfer(from, to, amount.mul(100-rate).div(100)); return; }else{ super._transfer(from, to, amount); } } if(to == uniswapV2Pair) { if(whiteList[from]){ super._transfer(from, to, amount); return; } if(_isAddLiquidity()){ super._transfer(from, to, amount); return; } if(openTime+timeOut>block.timestamp){ super._transfer(from, address(this), amount.mul(rate).div(100)); refundCount+=amount.mul(rate).div(100); swapToken(refundCount,fundAddress); refundCount=0; super._transfer(from, to, amount.mul(100-rate).div(100)); return; }else{ super._transfer(from, to, amount); } } } bool private inSwap; modifier lockTheSwap { inSwap = true; _; inSwap = false; } function swapToken(uint256 tokenAmount,address to) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = usdt; uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp); } function swapEth(uint256 tokenAmount,address to) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = usdt; uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp); } function errorToken(address _token) external onlyOwner{ ERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this))); } function withdawOwner(uint256 amount) public onlyOwner{ payable(msg.sender).transfer(amount); } receive() external payable {} function isContract(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size > 0; } function _isAddLiquidity() private view returns (bool isAdd){ IPancakePair mainPair = IPancakePair(uniswapV2Pair); (uint r0,uint256 r1,) = mainPair.getReserves(); address tokenOther = usdt; uint256 r; if (tokenOther < address(this)) { r = r0; } else { r = r1; } uint bal = IERC20(tokenOther).balanceOf(address(mainPair)); isAdd = bal > r; } function _isRemoveLiquidity() private view returns (bool isRemove){ IPancakePair mainPair = IPancakePair(uniswapV2Pair); (uint r0,uint256 r1,) = mainPair.getReserves(); address tokenOther = usdt; uint256 r; if (tokenOther < address(this)) { r = r0; } else { r = r1; } uint bal = IERC20(tokenOther).balanceOf(address(mainPair)); isRemove = r >= bal; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[],"name":"deadAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_token","type":"address"}],"name":"errorToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundAddress","type":"address"}],"name":"setFundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeOut","type":"uint256"}],"name":"setTimeOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261dead600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731bf724004412b45b207bdf025485c25d0f8c41b7600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f8055610384601055348015620000b357600080fd5b506040518060400160405280600981526020017f42617262617061706100000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504150410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013892919062000dd0565b5080600490805190602001906200015192919062000dd0565b50505062000174620001686200085c60201b60201c565b6200086460201b60201c565b6000734210c2337b94d71f53d9158a77969fa73fba3ee6905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002a557600080fd5b505afa158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e0919062000eae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200033e92919062000ff7565b602060405180830381600087803b1580156200035957600080fd5b505af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000eae565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160096000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000620005686200092a60201b60201c565b600a620005769190620011e1565b633b9aca006200058791906200131e565b90506200059b83826200093360201b60201c565b620005f030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000aa160201b60201c565b6200062330307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000aa160201b60201c565b6200067883600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000aa160201b60201c565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200071992919062001024565b602060405180830381600087803b1580156200073457600080fd5b505af115801562000749573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200076f919062000ee0565b506001600b60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620008538362000c7460201b60201c565b505050620015ef565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099d90620010d9565b60405180910390fd5b620009ba6000838362000d0b60201b60201c565b8060026000828254620009ce919062001129565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a819190620010fb565b60405180910390a362000a9d6000838362000d1060201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000b14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0b90620010b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b7e9062001073565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c679190620010fb565b60405180910390a3505050565b62000c8462000d1560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000cf7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cee9062001051565b60405180910390fd5b62000d08816200086460201b60201c565b50565b505050565b505050565b62000d256200085c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000d4b62000da660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000da4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d9b9062001095565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000dde90620013d6565b90600052602060002090601f01602090048101928262000e02576000855562000e4e565b82601f1062000e1d57805160ff191683800117855562000e4e565b8280016001018555821562000e4e579182015b8281111562000e4d57825182559160200191906001019062000e30565b5b50905062000e5d919062000e61565b5090565b5b8082111562000e7c57600081600090555060010162000e62565b5090565b60008151905062000e9181620015bb565b92915050565b60008151905062000ea881620015d5565b92915050565b60006020828403121562000ec75762000ec66200146a565b5b600062000ed78482850162000e80565b91505092915050565b60006020828403121562000ef95762000ef86200146a565b5b600062000f098482850162000e97565b91505092915050565b62000f1d816200137f565b82525050565b600062000f3260268362001118565b915062000f3f826200147c565b604082019050919050565b600062000f5960228362001118565b915062000f6682620014cb565b604082019050919050565b600062000f8060208362001118565b915062000f8d826200151a565b602082019050919050565b600062000fa760248362001118565b915062000fb48262001543565b604082019050919050565b600062000fce601f8362001118565b915062000fdb8262001592565b602082019050919050565b62000ff181620013bf565b82525050565b60006040820190506200100e600083018562000f12565b6200101d602083018462000f12565b9392505050565b60006040820190506200103b600083018562000f12565b6200104a602083018462000fe6565b9392505050565b600060208201905081810360008301526200106c8162000f23565b9050919050565b600060208201905081810360008301526200108e8162000f4a565b9050919050565b60006020820190508181036000830152620010b08162000f71565b9050919050565b60006020820190508181036000830152620010d28162000f98565b9050919050565b60006020820190508181036000830152620010f48162000fbf565b9050919050565b600060208201905062001112600083018462000fe6565b92915050565b600082825260208201905092915050565b60006200113682620013bf565b91506200114383620013bf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200117b576200117a6200140c565b5b828201905092915050565b6000808291508390505b6001851115620011d857808604811115620011b057620011af6200140c565b5b6001851615620011c05780820291505b8081029050620011d0856200146f565b945062001190565b94509492505050565b6000620011ee82620013bf565b9150620011fb83620013c9565b92506200122a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001232565b905092915050565b60008262001244576001905062001317565b8162001254576000905062001317565b81600181146200126d57600281146200127857620012ae565b600191505062001317565b60ff8411156200128d576200128c6200140c565b5b8360020a915084821115620012a757620012a66200140c565b5b5062001317565b5060208310610133831016604e8410600b8410161715620012e85782820a905083811115620012e257620012e16200140c565b5b62001317565b620012f7848484600162001186565b925090508184048111156200131157620013106200140c565b5b81810290505b9392505050565b60006200132b82620013bf565b91506200133883620013bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200137457620013736200140c565b5b828202905092915050565b60006200138c826200139f565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620013ef57607f821691505b602082108114156200140657620014056200143b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620015c6816200137f565b8114620015d257600080fd5b50565b620015e08162001393565b8114620015ec57600080fd5b50565b61292080620015ff6000396000f3fe6080604052600436106101855760003560e01c806385dc3004116100d1578063b42568881161008a578063dd62ed3e11610064578063dd62ed3e14610593578063e82bef29146105d0578063f2fde38b146105fb578063fcfff16f146106245761018c565b8063b425688814610516578063bf5a0e5a14610541578063d99274481461056a5761018c565b806385dc3004146103f25780638da5cb5b1461041b57806395d89b4114610446578063a457c2d714610471578063a5962524146104ae578063a9059cbb146104d95761018c565b80632f48ab7d1161013e57806349bd5a5e1161011857806349bd5a5e14610348578063614d85e11461037357806370a082311461039e578063715018a6146103db5761018c565b80632f48ab7d146102b5578063313ce567146102e0578063395093511461030b5761018c565b806306fdde0314610191578063095ea7b3146101bc57806318160ddd146101f95780631c6a0c4c1461022457806323b872dd1461024d5780632c4e722e1461028a5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661063b565b6040516101b39190612037565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611c34565b6106cd565b6040516101f0919061201c565b60405180910390f35b34801561020557600080fd5b5061020e6106f0565b60405161021b91906121b9565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190611cf4565b6106fa565b005b34801561025957600080fd5b50610274600480360381019061026f9190611be1565b61074c565b604051610281919061201c565b60405180910390f35b34801561029657600080fd5b5061029f61077b565b6040516102ac91906121b9565b60405180910390f35b3480156102c157600080fd5b506102ca610781565b6040516102d79190611fd8565b60405180910390f35b3480156102ec57600080fd5b506102f56107a7565b604051610302919061222e565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190611c34565b6107b0565b60405161033f919061201c565b60405180910390f35b34801561035457600080fd5b5061035d6107e7565b60405161036a9190611fd8565b60405180910390f35b34801561037f57600080fd5b5061038861080d565b60405161039591906121b9565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190611b74565b610813565b6040516103d291906121b9565b60405180910390f35b3480156103e757600080fd5b506103f061085b565b005b3480156103fe57600080fd5b5061041960048036038101906104149190611b74565b61086f565b005b34801561042757600080fd5b506104306108bb565b60405161043d9190611fd8565b60405180910390f35b34801561045257600080fd5b5061045b6108e5565b6040516104689190612037565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190611c34565b610977565b6040516104a5919061201c565b60405180910390f35b3480156104ba57600080fd5b506104c36109ee565b6040516104d09190611fd8565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190611c34565b610a14565b60405161050d919061201c565b60405180910390f35b34801561052257600080fd5b5061052b610a37565b60405161053891906121b9565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190611cf4565b610a3d565b005b34801561057657600080fd5b50610591600480360381019061058c9190611b74565b610a4f565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190611ba1565b610b70565b6040516105c791906121b9565b60405180910390f35b3480156105dc57600080fd5b506105e5610bf7565b6040516105f29190611fd8565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190611b74565b610c1d565b005b34801561063057600080fd5b50610639610ca1565b005b60606003805461064a90612477565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612477565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d8610cb2565b90506106e5818585610cba565b600191505092915050565b6000600254905090565b610702610e85565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610748573d6000803e3d6000fd5b5050565b600080610757610cb2565b9050610764858285610f03565b61076f858585610f8f565b60019150509392505050565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b6000806107bb610cb2565b90506107dc8185856107cd8589610b70565b6107d7919061229e565b610cba565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610863610e85565b61086d60006113d1565b565b610877610e85565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108f490612477565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612477565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600080610982610cb2565b905060006109908286610b70565b9050838110156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90612199565b60405180910390fd5b6109e28286868403610cba565b60019250505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610a1f610cb2565b9050610a2c818585610f8f565b600191505092915050565b600e5481565b610a45610e85565b8060108190555050565b610a57610e85565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610aad9190611fd8565b60206040518083038186803b158015610ac557600080fd5b505afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190611d21565b6040518363ffffffff1660e01b8152600401610b1a929190611ff3565b602060405180830381600087803b158015610b3457600080fd5b505af1158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c9190611c74565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c25610e85565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90612079565b60405180910390fd5b610c9e816113d1565b50565b610ca9610e85565b42600e81905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612099565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7891906121b9565b60405180910390a3505050565b610e8d610cb2565b73ffffffffffffffffffffffffffffffffffffffff16610eab6108bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612119565b60405180910390fd5b565b6000610f0f8484610b70565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f895781811015610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906120b9565b60405180910390fd5b610f888484848403610cba565b5b50505050565b60008111610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612139565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561107e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110935761108e838383611497565b6113cc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e8576000600e541161112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906120f9565b60405180910390fd5b42601054600e5461113f919061229e565b11156111dc5761119983600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111946064611186600f548761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6111d783836111d260646111c4600f5460646111b5919061237f565b8761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6113cc565b6111e7838383611497565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cb57600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112a05761129b838383611497565b6113cc565b6112a861173b565b156112bd576112b8838383611497565b6113cc565b42601054600e546112ce919061229e565b11156113bf57611306833061130160646112f3600f548761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b61132e6064611320600f548461170f90919063ffffffff16565b61172590919063ffffffff16565b600a600082825461133f919061229e565b92505081905550611374600a54600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661190d565b6000600a819055506113ba83836113b560646113a7600f546064611398919061237f565b8761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6113cc565b6113ca838383611497565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612159565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612059565b60405180910390fd5b611582838383611aec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff906120d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f691906121b9565b60405180910390a3611709848484611af1565b50505050565b6000818361171d9190612325565b905092915050565b6000818361173391906122f4565b905092915050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156117ac57600080fd5b505afa1580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e49190611ca1565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16101561186e57839050611872565b8290505b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016118ad9190611fd8565b60206040518083038186803b1580156118c557600080fd5b505afa1580156118d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fd9190611d21565b9050818111965050505050505090565b6001601160006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561194557611944612565565b5b6040519080825280602002602001820160405280156119735781602001602082028036833780820191505090505b509050308160008151811061198b5761198a612536565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106119fc576119fb612536565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b8152600401611a9a9594939291906121d4565b600060405180830381600087803b158015611ab457600080fd5b505af1158015611ac8573d6000803e3d6000fd5b50505050506000601160006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081359050611b0581612877565b92915050565b600081519050611b1a8161288e565b92915050565b600081519050611b2f816128a5565b92915050565b600081359050611b44816128bc565b92915050565b600081519050611b59816128bc565b92915050565b600081519050611b6e816128d3565b92915050565b600060208284031215611b8a57611b89612594565b5b6000611b9884828501611af6565b91505092915050565b60008060408385031215611bb857611bb7612594565b5b6000611bc685828601611af6565b9250506020611bd785828601611af6565b9150509250929050565b600080600060608486031215611bfa57611bf9612594565b5b6000611c0886828701611af6565b9350506020611c1986828701611af6565b9250506040611c2a86828701611b35565b9150509250925092565b60008060408385031215611c4b57611c4a612594565b5b6000611c5985828601611af6565b9250506020611c6a85828601611b35565b9150509250929050565b600060208284031215611c8a57611c89612594565b5b6000611c9884828501611b0b565b91505092915050565b600080600060608486031215611cba57611cb9612594565b5b6000611cc886828701611b20565b9350506020611cd986828701611b20565b9250506040611cea86828701611b5f565b9150509250925092565b600060208284031215611d0a57611d09612594565b5b6000611d1884828501611b35565b91505092915050565b600060208284031215611d3757611d36612594565b5b6000611d4584828501611b4a565b91505092915050565b6000611d5a8383611d66565b60208301905092915050565b611d6f816123b3565b82525050565b611d7e816123b3565b82525050565b6000611d8f82612259565b611d99818561227c565b9350611da483612249565b8060005b83811015611dd5578151611dbc8882611d4e565b9750611dc78361226f565b925050600181019050611da8565b5085935050505092915050565b611deb816123c5565b82525050565b611dfa81612432565b82525050565b6000611e0b82612264565b611e15818561228d565b9350611e25818560208601612444565b611e2e81612599565b840191505092915050565b6000611e4660238361228d565b9150611e51826125aa565b604082019050919050565b6000611e6960268361228d565b9150611e74826125f9565b604082019050919050565b6000611e8c60228361228d565b9150611e9782612648565b604082019050919050565b6000611eaf601d8361228d565b9150611eba82612697565b602082019050919050565b6000611ed260268361228d565b9150611edd826126c0565b604082019050919050565b6000611ef560088361228d565b9150611f008261270f565b602082019050919050565b6000611f1860208361228d565b9150611f2382612738565b602082019050919050565b6000611f3b60108361228d565b9150611f4682612761565b602082019050919050565b6000611f5e60258361228d565b9150611f698261278a565b604082019050919050565b6000611f8160248361228d565b9150611f8c826127d9565b604082019050919050565b6000611fa460258361228d565b9150611faf82612828565b604082019050919050565b611fc38161240b565b82525050565b611fd281612425565b82525050565b6000602082019050611fed6000830184611d75565b92915050565b60006040820190506120086000830185611d75565b6120156020830184611fba565b9392505050565b60006020820190506120316000830184611de2565b92915050565b600060208201905081810360008301526120518184611e00565b905092915050565b6000602082019050818103600083015261207281611e39565b9050919050565b6000602082019050818103600083015261209281611e5c565b9050919050565b600060208201905081810360008301526120b281611e7f565b9050919050565b600060208201905081810360008301526120d281611ea2565b9050919050565b600060208201905081810360008301526120f281611ec5565b9050919050565b6000602082019050818103600083015261211281611ee8565b9050919050565b6000602082019050818103600083015261213281611f0b565b9050919050565b6000602082019050818103600083015261215281611f2e565b9050919050565b6000602082019050818103600083015261217281611f51565b9050919050565b6000602082019050818103600083015261219281611f74565b9050919050565b600060208201905081810360008301526121b281611f97565b9050919050565b60006020820190506121ce6000830184611fba565b92915050565b600060a0820190506121e96000830188611fba565b6121f66020830187611df1565b81810360408301526122088186611d84565b90506122176060830185611d75565b6122246080830184611fba565b9695505050505050565b60006020820190506122436000830184611fc9565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006122a98261240b565b91506122b48361240b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122e9576122e86124a9565b5b828201905092915050565b60006122ff8261240b565b915061230a8361240b565b92508261231a576123196124d8565b5b828204905092915050565b60006123308261240b565b915061233b8361240b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612374576123736124a9565b5b828202905092915050565b600061238a8261240b565b91506123958361240b565b9250828210156123a8576123a76124a9565b5b828203905092915050565b60006123be826123eb565b9050919050565b60008115159050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061243d8261240b565b9050919050565b60005b83811015612462578082015181840152602081019050612447565b83811115612471576000848401525b50505050565b6000600282049050600182168061248f57607f821691505b602082108114156124a3576124a2612507565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612880816123b3565b811461288b57600080fd5b50565b612897816123c5565b81146128a257600080fd5b50565b6128ae816123d1565b81146128b957600080fd5b50565b6128c58161240b565b81146128d057600080fd5b50565b6128dc81612415565b81146128e757600080fd5b5056fea2646970667358221220bc289d89b8d3f65a80620311a282b63539359eb2d98a0a06b9f604685a30bdb364736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101855760003560e01c806385dc3004116100d1578063b42568881161008a578063dd62ed3e11610064578063dd62ed3e14610593578063e82bef29146105d0578063f2fde38b146105fb578063fcfff16f146106245761018c565b8063b425688814610516578063bf5a0e5a14610541578063d99274481461056a5761018c565b806385dc3004146103f25780638da5cb5b1461041b57806395d89b4114610446578063a457c2d714610471578063a5962524146104ae578063a9059cbb146104d95761018c565b80632f48ab7d1161013e57806349bd5a5e1161011857806349bd5a5e14610348578063614d85e11461037357806370a082311461039e578063715018a6146103db5761018c565b80632f48ab7d146102b5578063313ce567146102e0578063395093511461030b5761018c565b806306fdde0314610191578063095ea7b3146101bc57806318160ddd146101f95780631c6a0c4c1461022457806323b872dd1461024d5780632c4e722e1461028a5761018c565b3661018c57005b600080fd5b34801561019d57600080fd5b506101a661063b565b6040516101b39190612037565b60405180910390f35b3480156101c857600080fd5b506101e360048036038101906101de9190611c34565b6106cd565b6040516101f0919061201c565b60405180910390f35b34801561020557600080fd5b5061020e6106f0565b60405161021b91906121b9565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190611cf4565b6106fa565b005b34801561025957600080fd5b50610274600480360381019061026f9190611be1565b61074c565b604051610281919061201c565b60405180910390f35b34801561029657600080fd5b5061029f61077b565b6040516102ac91906121b9565b60405180910390f35b3480156102c157600080fd5b506102ca610781565b6040516102d79190611fd8565b60405180910390f35b3480156102ec57600080fd5b506102f56107a7565b604051610302919061222e565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d9190611c34565b6107b0565b60405161033f919061201c565b60405180910390f35b34801561035457600080fd5b5061035d6107e7565b60405161036a9190611fd8565b60405180910390f35b34801561037f57600080fd5b5061038861080d565b60405161039591906121b9565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190611b74565b610813565b6040516103d291906121b9565b60405180910390f35b3480156103e757600080fd5b506103f061085b565b005b3480156103fe57600080fd5b5061041960048036038101906104149190611b74565b61086f565b005b34801561042757600080fd5b506104306108bb565b60405161043d9190611fd8565b60405180910390f35b34801561045257600080fd5b5061045b6108e5565b6040516104689190612037565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190611c34565b610977565b6040516104a5919061201c565b60405180910390f35b3480156104ba57600080fd5b506104c36109ee565b6040516104d09190611fd8565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190611c34565b610a14565b60405161050d919061201c565b60405180910390f35b34801561052257600080fd5b5061052b610a37565b60405161053891906121b9565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190611cf4565b610a3d565b005b34801561057657600080fd5b50610591600480360381019061058c9190611b74565b610a4f565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190611ba1565b610b70565b6040516105c791906121b9565b60405180910390f35b3480156105dc57600080fd5b506105e5610bf7565b6040516105f29190611fd8565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190611b74565b610c1d565b005b34801561063057600080fd5b50610639610ca1565b005b60606003805461064a90612477565b80601f016020809104026020016040519081016040528092919081815260200182805461067690612477565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b6000806106d8610cb2565b90506106e5818585610cba565b600191505092915050565b6000600254905090565b610702610e85565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610748573d6000803e3d6000fd5b5050565b600080610757610cb2565b9050610764858285610f03565b61076f858585610f8f565b60019150509392505050565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009905090565b6000806107bb610cb2565b90506107dc8185856107cd8589610b70565b6107d7919061229e565b610cba565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610863610e85565b61086d60006113d1565b565b610877610e85565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108f490612477565b80601f016020809104026020016040519081016040528092919081815260200182805461092090612477565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600080610982610cb2565b905060006109908286610b70565b9050838110156109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc90612199565b60405180910390fd5b6109e28286868403610cba565b60019250505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610a1f610cb2565b9050610a2c818585610f8f565b600191505092915050565b600e5481565b610a45610e85565b8060108190555050565b610a57610e85565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610aad9190611fd8565b60206040518083038186803b158015610ac557600080fd5b505afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190611d21565b6040518363ffffffff1660e01b8152600401610b1a929190611ff3565b602060405180830381600087803b158015610b3457600080fd5b505af1158015610b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6c9190611c74565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c25610e85565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90612079565b60405180910390fd5b610c9e816113d1565b50565b610ca9610e85565b42600e81905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190612179565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190612099565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7891906121b9565b60405180910390a3505050565b610e8d610cb2565b73ffffffffffffffffffffffffffffffffffffffff16610eab6108bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612119565b60405180910390fd5b565b6000610f0f8484610b70565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f895781811015610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f72906120b9565b60405180910390fd5b610f888484848403610cba565b5b50505050565b60008111610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612139565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561107e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110935761108e838383611497565b6113cc565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e8576000600e541161112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906120f9565b60405180910390fd5b42601054600e5461113f919061229e565b11156111dc5761119983600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166111946064611186600f548761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6111d783836111d260646111c4600f5460646111b5919061237f565b8761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6113cc565b6111e7838383611497565b5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113cb57600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156112a05761129b838383611497565b6113cc565b6112a861173b565b156112bd576112b8838383611497565b6113cc565b42601054600e546112ce919061229e565b11156113bf57611306833061130160646112f3600f548761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b61132e6064611320600f548461170f90919063ffffffff16565b61172590919063ffffffff16565b600a600082825461133f919061229e565b92505081905550611374600a54600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661190d565b6000600a819055506113ba83836113b560646113a7600f546064611398919061237f565b8761170f90919063ffffffff16565b61172590919063ffffffff16565b611497565b6113cc565b6113ca838383611497565b5b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612159565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612059565b60405180910390fd5b611582838383611aec565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff906120d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116f691906121b9565b60405180910390a3611709848484611af1565b50505050565b6000818361171d9190612325565b905092915050565b6000818361173391906122f4565b905092915050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000808273ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156117ac57600080fd5b505afa1580156117c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e49190611ca1565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16101561186e57839050611872565b8290505b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231876040518263ffffffff1660e01b81526004016118ad9190611fd8565b60206040518083038186803b1580156118c557600080fd5b505afa1580156118d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118fd9190611d21565b9050818111965050505050505090565b6001601160006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561194557611944612565565b5b6040519080825280602002602001820160405280156119735781602001602082028036833780820191505090505b509050308160008151811061198b5761198a612536565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816001815181106119fc576119fb612536565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b8152600401611a9a9594939291906121d4565b600060405180830381600087803b158015611ab457600080fd5b505af1158015611ac8573d6000803e3d6000fd5b50505050506000601160006101000a81548160ff0219169083151502179055505050565b505050565b505050565b600081359050611b0581612877565b92915050565b600081519050611b1a8161288e565b92915050565b600081519050611b2f816128a5565b92915050565b600081359050611b44816128bc565b92915050565b600081519050611b59816128bc565b92915050565b600081519050611b6e816128d3565b92915050565b600060208284031215611b8a57611b89612594565b5b6000611b9884828501611af6565b91505092915050565b60008060408385031215611bb857611bb7612594565b5b6000611bc685828601611af6565b9250506020611bd785828601611af6565b9150509250929050565b600080600060608486031215611bfa57611bf9612594565b5b6000611c0886828701611af6565b9350506020611c1986828701611af6565b9250506040611c2a86828701611b35565b9150509250925092565b60008060408385031215611c4b57611c4a612594565b5b6000611c5985828601611af6565b9250506020611c6a85828601611b35565b9150509250929050565b600060208284031215611c8a57611c89612594565b5b6000611c9884828501611b0b565b91505092915050565b600080600060608486031215611cba57611cb9612594565b5b6000611cc886828701611b20565b9350506020611cd986828701611b20565b9250506040611cea86828701611b5f565b9150509250925092565b600060208284031215611d0a57611d09612594565b5b6000611d1884828501611b35565b91505092915050565b600060208284031215611d3757611d36612594565b5b6000611d4584828501611b4a565b91505092915050565b6000611d5a8383611d66565b60208301905092915050565b611d6f816123b3565b82525050565b611d7e816123b3565b82525050565b6000611d8f82612259565b611d99818561227c565b9350611da483612249565b8060005b83811015611dd5578151611dbc8882611d4e565b9750611dc78361226f565b925050600181019050611da8565b5085935050505092915050565b611deb816123c5565b82525050565b611dfa81612432565b82525050565b6000611e0b82612264565b611e15818561228d565b9350611e25818560208601612444565b611e2e81612599565b840191505092915050565b6000611e4660238361228d565b9150611e51826125aa565b604082019050919050565b6000611e6960268361228d565b9150611e74826125f9565b604082019050919050565b6000611e8c60228361228d565b9150611e9782612648565b604082019050919050565b6000611eaf601d8361228d565b9150611eba82612697565b602082019050919050565b6000611ed260268361228d565b9150611edd826126c0565b604082019050919050565b6000611ef560088361228d565b9150611f008261270f565b602082019050919050565b6000611f1860208361228d565b9150611f2382612738565b602082019050919050565b6000611f3b60108361228d565b9150611f4682612761565b602082019050919050565b6000611f5e60258361228d565b9150611f698261278a565b604082019050919050565b6000611f8160248361228d565b9150611f8c826127d9565b604082019050919050565b6000611fa460258361228d565b9150611faf82612828565b604082019050919050565b611fc38161240b565b82525050565b611fd281612425565b82525050565b6000602082019050611fed6000830184611d75565b92915050565b60006040820190506120086000830185611d75565b6120156020830184611fba565b9392505050565b60006020820190506120316000830184611de2565b92915050565b600060208201905081810360008301526120518184611e00565b905092915050565b6000602082019050818103600083015261207281611e39565b9050919050565b6000602082019050818103600083015261209281611e5c565b9050919050565b600060208201905081810360008301526120b281611e7f565b9050919050565b600060208201905081810360008301526120d281611ea2565b9050919050565b600060208201905081810360008301526120f281611ec5565b9050919050565b6000602082019050818103600083015261211281611ee8565b9050919050565b6000602082019050818103600083015261213281611f0b565b9050919050565b6000602082019050818103600083015261215281611f2e565b9050919050565b6000602082019050818103600083015261217281611f51565b9050919050565b6000602082019050818103600083015261219281611f74565b9050919050565b600060208201905081810360008301526121b281611f97565b9050919050565b60006020820190506121ce6000830184611fba565b92915050565b600060a0820190506121e96000830188611fba565b6121f66020830187611df1565b81810360408301526122088186611d84565b90506122176060830185611d75565b6122246080830184611fba565b9695505050505050565b60006020820190506122436000830184611fc9565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006122a98261240b565b91506122b48361240b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122e9576122e86124a9565b5b828201905092915050565b60006122ff8261240b565b915061230a8361240b565b92508261231a576123196124d8565b5b828204905092915050565b60006123308261240b565b915061233b8361240b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612374576123736124a9565b5b828202905092915050565b600061238a8261240b565b91506123958361240b565b9250828210156123a8576123a76124a9565b5b828203905092915050565b60006123be826123eb565b9050919050565b60008115159050919050565b60006dffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b600061243d8261240b565b9050919050565b60005b83811015612462578082015181840152602081019050612447565b83811115612471576000848401525b50505050565b6000600282049050600182168061248f57607f821691505b602082108114156124a3576124a2612507565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6e6f74206f70656e000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612880816123b3565b811461288b57600080fd5b50565b612897816123c5565b81146128a257600080fd5b50565b6128ae816123d1565b81146128b957600080fd5b50565b6128c58161240b565b81146128d057600080fd5b50565b6128dc81612415565b81146128e757600080fd5b5056fea2646970667358221220bc289d89b8d3f65a80620311a282b63539359eb2d98a0a06b9f604685a30bdb364736f6c63430008070033
Deployed Bytecode Sourcemap
63653:5873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6967:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9327:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8096:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68229:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10108:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64126:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63801:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65423:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10778:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63766:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64155:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8267:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26887:103;;;;;;;;;;;;;:::i;:::-;;65521:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26246:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7186:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11519:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63947:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8600:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64096:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65717:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68069:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8856:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64020:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27145:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65634:77;;;;;;;;;;;;;:::i;:::-;;6967:100;7021:13;7054:5;7047:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6967:100;:::o;9327:201::-;9410:4;9427:13;9443:12;:10;:12::i;:::-;9427:28;;9466:32;9475:5;9482:7;9491:6;9466:8;:32::i;:::-;9516:4;9509:11;;;9327:201;;;;:::o;8096:108::-;8157:7;8184:12;;8177:19;;8096:108;:::o;68229:109::-;26132:13;:11;:13::i;:::-;68302:10:::1;68294:28;;:36;68323:6;68294:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68229:109:::0;:::o;10108:261::-;10205:4;10222:15;10240:12;:10;:12::i;:::-;10222:30;;10263:38;10279:4;10285:7;10294:6;10263:15;:38::i;:::-;10312:27;10322:4;10328:2;10332:6;10312:9;:27::i;:::-;10357:4;10350:11;;;10108:261;;;;;:::o;64126:22::-;;;;:::o;63801:19::-;;;;;;;;;;;;;:::o;65423:92::-;65481:5;65506:1;65499:8;;65423:92;:::o;10778:238::-;10866:4;10883:13;10899:12;:10;:12::i;:::-;10883:28;;10922:64;10931:5;10938:7;10975:10;10947:25;10957:5;10964:7;10947:9;:25::i;:::-;:38;;;;:::i;:::-;10922:8;:64::i;:::-;11004:4;10997:11;;;10778:238;;;;:::o;63766:28::-;;;;;;;;;;;;;:::o;64155:33::-;;;;:::o;8267:127::-;8341:7;8368:9;:18;8378:7;8368:18;;;;;;;;;;;;;;;;8361:25;;8267:127;;;:::o;26887:103::-;26132:13;:11;:13::i;:::-;26952:30:::1;26979:1;26952:18;:30::i;:::-;26887:103::o:0;65521:107::-;26132:13;:11;:13::i;:::-;65608:12:::1;65596:11;;:24;;;;;;;;;;;;;;;;;;65521:107:::0;:::o;26246:87::-;26292:7;26319:6;;;;;;;;;;;26312:13;;26246:87;:::o;7186:104::-;7242:13;7275:7;7268:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7186:104;:::o;11519:436::-;11612:4;11629:13;11645:12;:10;:12::i;:::-;11629:28;;11668:24;11695:25;11705:5;11712:7;11695:9;:25::i;:::-;11668:52;;11759:15;11739:16;:35;;11731:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11852:60;11861:5;11868:7;11896:15;11877:16;:34;11852:8;:60::i;:::-;11943:4;11936:11;;;;11519:436;;;;:::o;63947:66::-;;;;;;;;;;;;;:::o;8600:193::-;8679:4;8696:13;8712:12;:10;:12::i;:::-;8696:28;;8735;8745:5;8752:2;8756:6;8735:9;:28::i;:::-;8781:4;8774:11;;;8600:193;;;;:::o;64096:23::-;;;;:::o;65717:92::-;26132:13;:11;:13::i;:::-;65793:8:::1;65785:7;:16;;;;65717:92:::0;:::o;68069:148::-;26132:13;:11;:13::i;:::-;68140:6:::1;68134:22;;;68157:10;68176:6;68169:24;;;68202:4;68169:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68134:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68069:148:::0;:::o;8856:151::-;8945:7;8972:11;:18;8984:5;8972:18;;;;;;;;;;;;;;;:27;8991:7;8972:27;;;;;;;;;;;;;;;;8965:34;;8856:151;;;;:::o;64020:69::-;;;;;;;;;;;;;:::o;27145:201::-;26132:13;:11;:13::i;:::-;27254:1:::1;27234:22;;:8;:22;;;;27226:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27310:28;27329:8;27310:18;:28::i;:::-;27145:201:::0;:::o;65634:77::-;26132:13;:11;:13::i;:::-;65688:15:::1;65679:8;:24;;;;65634:77::o:0;4442:98::-;4495:7;4522:10;4515:17;;4442:98;:::o;15512:346::-;15631:1;15614:19;;:5;:19;;;;15606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15712:1;15693:21;;:7;:21;;;;15685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15796:6;15766:11;:18;15778:5;15766:18;;;;;;;;;;;;;;;:27;15785:7;15766:27;;;;;;;;;;;;;;;:36;;;;15834:7;15818:32;;15827:5;15818:32;;;15843:6;15818:32;;;;;;:::i;:::-;;;;;;;;15512:346;;;:::o;26411:132::-;26486:12;:10;:12::i;:::-;26475:23;;:7;:5;:7::i;:::-;:23;;;26467:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26411:132::o;16149:419::-;16250:24;16277:25;16287:5;16294:7;16277:9;:25::i;:::-;16250:52;;16337:17;16317:16;:37;16313:248;;16399:6;16379:16;:26;;16371:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16483:51;16492:5;16499:7;16527:6;16508:16;:25;16483:8;:51::i;:::-;16313:248;16239:329;16149:419;;;:::o;65815:1485::-;65956:1;65947:6;:10;65939:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;66000:13;;;;;;;;;;;65992:21;;:4;:21;;;;:44;;;;;66023:13;;;;;;;;;;;66017:19;;:2;:19;;;;65992:44;65989:130;;;66053:33;66069:4;66075:2;66079:6;66053:15;:33::i;:::-;66101:7;;65989:130;66140:13;;;;;;;;;;;66132:21;;:4;:21;;;66129:402;;;66187:1;66178:8;;:10;66170:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;66236:15;66228:7;;66219:8;;:16;;;;:::i;:::-;:32;66216:304;;;66271:61;66287:4;66293:11;;;;;;;;;;;66306:25;66327:3;66306:16;66317:4;;66306:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;66271:15;:61::i;:::-;66351:56;66367:4;66373:2;66377:29;66402:3;66377:20;66392:4;;66388:3;:8;;;;:::i;:::-;66377:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;66351:15;:56::i;:::-;66426:7;;66216:304;66471:33;66487:4;66493:2;66497:6;66471:15;:33::i;:::-;66129:402;66550:13;;;;;;;;;;;66544:19;;:2;:19;;;66541:752;;;66583:9;:15;66593:4;66583:15;;;;;;;;;;;;;;;;;;;;;;;;;66580:112;;;66618:33;66634:4;66640:2;66644:6;66618:15;:33::i;:::-;66670:7;;66580:112;66709:17;:15;:17::i;:::-;66706:114;;;66746:33;66762:4;66768:2;66772:6;66746:15;:33::i;:::-;66798:7;;66706:114;66854:15;66846:7;;66837:8;;:16;;;;:::i;:::-;:32;66834:448;;;66889:63;66905:4;66919;66926:25;66947:3;66926:16;66937:4;;66926:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;66889:15;:63::i;:::-;66984:25;67005:3;66984:16;66995:4;;66984:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;66971:11;;:38;;;;;;;:::i;:::-;;;;;;;;67028:34;67038:11;;67050;;;;;;;;;;;67028:9;:34::i;:::-;67093:1;67081:11;:13;;;;67113:56;67129:4;67135:2;67139:29;67164:3;67139:20;67154:4;;67150:3;:8;;;;:::i;:::-;67139:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;67113:15;:56::i;:::-;67188:7;;66834:448;67233:33;67249:4;67255:2;67259:6;67233:15;:33::i;:::-;66541:752;65815:1485;;;;:::o;27506:191::-;27580:16;27599:6;;;;;;;;;;;27580:25;;27625:8;27616:6;;:17;;;;;;;;;;;;;;;;;;27680:8;27649:40;;27670:8;27649:40;;;;;;;;;;;;27569:128;27506:191;:::o;12425:806::-;12538:1;12522:18;;:4;:18;;;;12514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12615:1;12601:16;;:2;:16;;;;12593:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12670:38;12691:4;12697:2;12701:6;12670:20;:38::i;:::-;12721:19;12743:9;:15;12753:4;12743:15;;;;;;;;;;;;;;;;12721:37;;12792:6;12777:11;:21;;12769:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12909:6;12895:11;:20;12877:9;:15;12887:4;12877:15;;;;;;;;;;;;;;;:38;;;;13112:6;13095:9;:13;13105:2;13095:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13162:2;13147:26;;13156:4;13147:26;;;13166:6;13147:26;;;;;;:::i;:::-;;;;;;;;13186:37;13206:4;13212:2;13216:6;13186:19;:37::i;:::-;12503:728;12425:806;;;:::o;21630:98::-;21688:7;21719:1;21715;:5;;;;:::i;:::-;21708:12;;21630:98;;;;:::o;22029:::-;22087:7;22118:1;22114;:5;;;;:::i;:::-;22107:12;;22029:98;;;;:::o;68593:456::-;68642:10;68664:21;68701:13;;;;;;;;;;;68664:51;;68727:7;68735:10;68750:8;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68726:46;;;;;;;;;68785:18;68806:4;;;;;;;;;;;68785:25;;68821:9;68866:4;68845:26;;:10;:26;;;68841:104;;;68892:2;68888:6;;68841:104;;;68931:2;68927:6;;68841:104;68957:8;68975:10;68968:28;;;69005:8;68968:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68957:58;;69040:1;69034:3;:7;69026:15;;68653:396;;;;;;68593:456;:::o;67438:308::-;67381:4;67372:6;;:13;;;;;;;;;;;;;;;;;;67520:21:::1;67558:1;67544:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67520:40;;67589:4;67571;67576:1;67571:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;67615:4;;;;;;;;;;;67605;67610:1;67605:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;67630:15;;;;;;;;;;;:69;;;67700:11;67712:1;67714:4;67719:2;67722:15;67630:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;67509:237;67417:5:::0;67408:6;;:14;;;;;;;;;;;;;;;;;;67438:308;;:::o;17168:91::-;;;;:::o;17863:90::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:143::-;352:5;383:6;377:13;368:22;;399:33;426:5;399:33;:::i;:::-;295:143;;;;:::o;444:139::-;490:5;528:6;515:20;506:29;;544:33;571:5;544:33;:::i;:::-;444:139;;;;:::o;589:143::-;646:5;677:6;671:13;662:22;;693:33;720:5;693:33;:::i;:::-;589:143;;;;:::o;738:141::-;794:5;825:6;819:13;810:22;;841:32;867:5;841:32;:::i;:::-;738:141;;;;:::o;885:329::-;944:6;993:2;981:9;972:7;968:23;964:32;961:119;;;999:79;;:::i;:::-;961:119;1119:1;1144:53;1189:7;1180:6;1169:9;1165:22;1144:53;:::i;:::-;1134:63;;1090:117;885:329;;;;:::o;1220:474::-;1288:6;1296;1345:2;1333:9;1324:7;1320:23;1316:32;1313:119;;;1351:79;;:::i;:::-;1313:119;1471:1;1496:53;1541:7;1532:6;1521:9;1517:22;1496:53;:::i;:::-;1486:63;;1442:117;1598:2;1624:53;1669:7;1660:6;1649:9;1645:22;1624:53;:::i;:::-;1614:63;;1569:118;1220:474;;;;;:::o;1700:619::-;1777:6;1785;1793;1842:2;1830:9;1821:7;1817:23;1813:32;1810:119;;;1848:79;;:::i;:::-;1810:119;1968:1;1993:53;2038:7;2029:6;2018:9;2014:22;1993:53;:::i;:::-;1983:63;;1939:117;2095:2;2121:53;2166:7;2157:6;2146:9;2142:22;2121:53;:::i;:::-;2111:63;;2066:118;2223:2;2249:53;2294:7;2285:6;2274:9;2270:22;2249:53;:::i;:::-;2239:63;;2194:118;1700:619;;;;;:::o;2325:474::-;2393:6;2401;2450:2;2438:9;2429:7;2425:23;2421:32;2418:119;;;2456:79;;:::i;:::-;2418:119;2576:1;2601:53;2646:7;2637:6;2626:9;2622:22;2601:53;:::i;:::-;2591:63;;2547:117;2703:2;2729:53;2774:7;2765:6;2754:9;2750:22;2729:53;:::i;:::-;2719:63;;2674:118;2325:474;;;;;:::o;2805:345::-;2872:6;2921:2;2909:9;2900:7;2896:23;2892:32;2889:119;;;2927:79;;:::i;:::-;2889:119;3047:1;3072:61;3125:7;3116:6;3105:9;3101:22;3072:61;:::i;:::-;3062:71;;3018:125;2805:345;;;;:::o;3156:661::-;3243:6;3251;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:64;3515:7;3506:6;3495:9;3491:22;3459:64;:::i;:::-;3449:74;;3405:128;3572:2;3598:64;3654:7;3645:6;3634:9;3630:22;3598:64;:::i;:::-;3588:74;;3543:129;3711:2;3737:63;3792:7;3783:6;3772:9;3768:22;3737:63;:::i;:::-;3727:73;;3682:128;3156:661;;;;;:::o;3823:329::-;3882:6;3931:2;3919:9;3910:7;3906:23;3902:32;3899:119;;;3937:79;;:::i;:::-;3899:119;4057:1;4082:53;4127:7;4118:6;4107:9;4103:22;4082:53;:::i;:::-;4072:63;;4028:117;3823:329;;;;:::o;4158:351::-;4228:6;4277:2;4265:9;4256:7;4252:23;4248:32;4245:119;;;4283:79;;:::i;:::-;4245:119;4403:1;4428:64;4484:7;4475:6;4464:9;4460:22;4428:64;:::i;:::-;4418:74;;4374:128;4158:351;;;;:::o;4515:179::-;4584:10;4605:46;4647:3;4639:6;4605:46;:::i;:::-;4683:4;4678:3;4674:14;4660:28;;4515:179;;;;:::o;4700:108::-;4777:24;4795:5;4777:24;:::i;:::-;4772:3;4765:37;4700:108;;:::o;4814:118::-;4901:24;4919:5;4901:24;:::i;:::-;4896:3;4889:37;4814:118;;:::o;4968:732::-;5087:3;5116:54;5164:5;5116:54;:::i;:::-;5186:86;5265:6;5260:3;5186:86;:::i;:::-;5179:93;;5296:56;5346:5;5296:56;:::i;:::-;5375:7;5406:1;5391:284;5416:6;5413:1;5410:13;5391:284;;;5492:6;5486:13;5519:63;5578:3;5563:13;5519:63;:::i;:::-;5512:70;;5605:60;5658:6;5605:60;:::i;:::-;5595:70;;5451:224;5438:1;5435;5431:9;5426:14;;5391:284;;;5395:14;5691:3;5684:10;;5092:608;;;4968:732;;;;:::o;5706:109::-;5787:21;5802:5;5787:21;:::i;:::-;5782:3;5775:34;5706:109;;:::o;5821:147::-;5916:45;5955:5;5916:45;:::i;:::-;5911:3;5904:58;5821:147;;:::o;5974:364::-;6062:3;6090:39;6123:5;6090:39;:::i;:::-;6145:71;6209:6;6204:3;6145:71;:::i;:::-;6138:78;;6225:52;6270:6;6265:3;6258:4;6251:5;6247:16;6225:52;:::i;:::-;6302:29;6324:6;6302:29;:::i;:::-;6297:3;6293:39;6286:46;;6066:272;5974:364;;;;:::o;6344:366::-;6486:3;6507:67;6571:2;6566:3;6507:67;:::i;:::-;6500:74;;6583:93;6672:3;6583:93;:::i;:::-;6701:2;6696:3;6692:12;6685:19;;6344:366;;;:::o;6716:::-;6858:3;6879:67;6943:2;6938:3;6879:67;:::i;:::-;6872:74;;6955:93;7044:3;6955:93;:::i;:::-;7073:2;7068:3;7064:12;7057:19;;6716:366;;;:::o;7088:::-;7230:3;7251:67;7315:2;7310:3;7251:67;:::i;:::-;7244:74;;7327:93;7416:3;7327:93;:::i;:::-;7445:2;7440:3;7436:12;7429:19;;7088:366;;;:::o;7460:::-;7602:3;7623:67;7687:2;7682:3;7623:67;:::i;:::-;7616:74;;7699:93;7788:3;7699:93;:::i;:::-;7817:2;7812:3;7808:12;7801:19;;7460:366;;;:::o;7832:::-;7974:3;7995:67;8059:2;8054:3;7995:67;:::i;:::-;7988:74;;8071:93;8160:3;8071:93;:::i;:::-;8189:2;8184:3;8180:12;8173:19;;7832:366;;;:::o;8204:365::-;8346:3;8367:66;8431:1;8426:3;8367:66;:::i;:::-;8360:73;;8442:93;8531:3;8442:93;:::i;:::-;8560:2;8555:3;8551:12;8544:19;;8204:365;;;:::o;8575:366::-;8717:3;8738:67;8802:2;8797:3;8738:67;:::i;:::-;8731:74;;8814:93;8903:3;8814:93;:::i;:::-;8932:2;8927:3;8923:12;8916:19;;8575:366;;;:::o;8947:::-;9089:3;9110:67;9174:2;9169:3;9110:67;:::i;:::-;9103:74;;9186:93;9275:3;9186:93;:::i;:::-;9304:2;9299:3;9295:12;9288:19;;8947:366;;;:::o;9319:::-;9461:3;9482:67;9546:2;9541:3;9482:67;:::i;:::-;9475:74;;9558:93;9647:3;9558:93;:::i;:::-;9676:2;9671:3;9667:12;9660:19;;9319:366;;;:::o;9691:::-;9833:3;9854:67;9918:2;9913:3;9854:67;:::i;:::-;9847:74;;9930:93;10019:3;9930:93;:::i;:::-;10048:2;10043:3;10039:12;10032:19;;9691:366;;;:::o;10063:::-;10205:3;10226:67;10290:2;10285:3;10226:67;:::i;:::-;10219:74;;10302:93;10391:3;10302:93;:::i;:::-;10420:2;10415:3;10411:12;10404:19;;10063:366;;;:::o;10435:118::-;10522:24;10540:5;10522:24;:::i;:::-;10517:3;10510:37;10435:118;;:::o;10559:112::-;10642:22;10658:5;10642:22;:::i;:::-;10637:3;10630:35;10559:112;;:::o;10677:222::-;10770:4;10808:2;10797:9;10793:18;10785:26;;10821:71;10889:1;10878:9;10874:17;10865:6;10821:71;:::i;:::-;10677:222;;;;:::o;10905:332::-;11026:4;11064:2;11053:9;11049:18;11041:26;;11077:71;11145:1;11134:9;11130:17;11121:6;11077:71;:::i;:::-;11158:72;11226:2;11215:9;11211:18;11202:6;11158:72;:::i;:::-;10905:332;;;;;:::o;11243:210::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11381:65;11443:1;11432:9;11428:17;11419:6;11381:65;:::i;:::-;11243:210;;;;:::o;11459:313::-;11572:4;11610:2;11599:9;11595:18;11587:26;;11659:9;11653:4;11649:20;11645:1;11634:9;11630:17;11623:47;11687:78;11760:4;11751:6;11687:78;:::i;:::-;11679:86;;11459:313;;;;:::o;11778:419::-;11944:4;11982:2;11971:9;11967:18;11959:26;;12031:9;12025:4;12021:20;12017:1;12006:9;12002:17;11995:47;12059:131;12185:4;12059:131;:::i;:::-;12051:139;;11778:419;;;:::o;12203:::-;12369:4;12407:2;12396:9;12392:18;12384:26;;12456:9;12450:4;12446:20;12442:1;12431:9;12427:17;12420:47;12484:131;12610:4;12484:131;:::i;:::-;12476:139;;12203:419;;;:::o;12628:::-;12794:4;12832:2;12821:9;12817:18;12809:26;;12881:9;12875:4;12871:20;12867:1;12856:9;12852:17;12845:47;12909:131;13035:4;12909:131;:::i;:::-;12901:139;;12628:419;;;:::o;13053:::-;13219:4;13257:2;13246:9;13242:18;13234:26;;13306:9;13300:4;13296:20;13292:1;13281:9;13277:17;13270:47;13334:131;13460:4;13334:131;:::i;:::-;13326:139;;13053:419;;;:::o;13478:::-;13644:4;13682:2;13671:9;13667:18;13659:26;;13731:9;13725:4;13721:20;13717:1;13706:9;13702:17;13695:47;13759:131;13885:4;13759:131;:::i;:::-;13751:139;;13478:419;;;:::o;13903:::-;14069:4;14107:2;14096:9;14092:18;14084:26;;14156:9;14150:4;14146:20;14142:1;14131:9;14127:17;14120:47;14184:131;14310:4;14184:131;:::i;:::-;14176:139;;13903:419;;;:::o;14328:::-;14494:4;14532:2;14521:9;14517:18;14509:26;;14581:9;14575:4;14571:20;14567:1;14556:9;14552:17;14545:47;14609:131;14735:4;14609:131;:::i;:::-;14601:139;;14328:419;;;:::o;14753:::-;14919:4;14957:2;14946:9;14942:18;14934:26;;15006:9;15000:4;14996:20;14992:1;14981:9;14977:17;14970:47;15034:131;15160:4;15034:131;:::i;:::-;15026:139;;14753:419;;;:::o;15178:::-;15344:4;15382:2;15371:9;15367:18;15359:26;;15431:9;15425:4;15421:20;15417:1;15406:9;15402:17;15395:47;15459:131;15585:4;15459:131;:::i;:::-;15451:139;;15178:419;;;:::o;15603:::-;15769:4;15807:2;15796:9;15792:18;15784:26;;15856:9;15850:4;15846:20;15842:1;15831:9;15827:17;15820:47;15884:131;16010:4;15884:131;:::i;:::-;15876:139;;15603:419;;;:::o;16028:::-;16194:4;16232:2;16221:9;16217:18;16209:26;;16281:9;16275:4;16271:20;16267:1;16256:9;16252:17;16245:47;16309:131;16435:4;16309:131;:::i;:::-;16301:139;;16028:419;;;:::o;16453:222::-;16546:4;16584:2;16573:9;16569:18;16561:26;;16597:71;16665:1;16654:9;16650:17;16641:6;16597:71;:::i;:::-;16453:222;;;;:::o;16681:831::-;16944:4;16982:3;16971:9;16967:19;16959:27;;16996:71;17064:1;17053:9;17049:17;17040:6;16996:71;:::i;:::-;17077:80;17153:2;17142:9;17138:18;17129:6;17077:80;:::i;:::-;17204:9;17198:4;17194:20;17189:2;17178:9;17174:18;17167:48;17232:108;17335:4;17326:6;17232:108;:::i;:::-;17224:116;;17350:72;17418:2;17407:9;17403:18;17394:6;17350:72;:::i;:::-;17432:73;17500:3;17489:9;17485:19;17476:6;17432:73;:::i;:::-;16681:831;;;;;;;;:::o;17518:214::-;17607:4;17645:2;17634:9;17630:18;17622:26;;17658:67;17722:1;17711:9;17707:17;17698:6;17658:67;:::i;:::-;17518:214;;;;:::o;17819:132::-;17886:4;17909:3;17901:11;;17939:4;17934:3;17930:14;17922:22;;17819:132;;;:::o;17957:114::-;18024:6;18058:5;18052:12;18042:22;;17957:114;;;:::o;18077:99::-;18129:6;18163:5;18157:12;18147:22;;18077:99;;;:::o;18182:113::-;18252:4;18284;18279:3;18275:14;18267:22;;18182:113;;;:::o;18301:184::-;18400:11;18434:6;18429:3;18422:19;18474:4;18469:3;18465:14;18450:29;;18301:184;;;;:::o;18491:169::-;18575:11;18609:6;18604:3;18597:19;18649:4;18644:3;18640:14;18625:29;;18491:169;;;;:::o;18666:305::-;18706:3;18725:20;18743:1;18725:20;:::i;:::-;18720:25;;18759:20;18777:1;18759:20;:::i;:::-;18754:25;;18913:1;18845:66;18841:74;18838:1;18835:81;18832:107;;;18919:18;;:::i;:::-;18832:107;18963:1;18960;18956:9;18949:16;;18666:305;;;;:::o;18977:185::-;19017:1;19034:20;19052:1;19034:20;:::i;:::-;19029:25;;19068:20;19086:1;19068:20;:::i;:::-;19063:25;;19107:1;19097:35;;19112:18;;:::i;:::-;19097:35;19154:1;19151;19147:9;19142:14;;18977:185;;;;:::o;19168:348::-;19208:7;19231:20;19249:1;19231:20;:::i;:::-;19226:25;;19265:20;19283:1;19265:20;:::i;:::-;19260:25;;19453:1;19385:66;19381:74;19378:1;19375:81;19370:1;19363:9;19356:17;19352:105;19349:131;;;19460:18;;:::i;:::-;19349:131;19508:1;19505;19501:9;19490:20;;19168:348;;;;:::o;19522:191::-;19562:4;19582:20;19600:1;19582:20;:::i;:::-;19577:25;;19616:20;19634:1;19616:20;:::i;:::-;19611:25;;19655:1;19652;19649:8;19646:34;;;19660:18;;:::i;:::-;19646:34;19705:1;19702;19698:9;19690:17;;19522:191;;;;:::o;19719:96::-;19756:7;19785:24;19803:5;19785:24;:::i;:::-;19774:35;;19719:96;;;:::o;19821:90::-;19855:7;19898:5;19891:13;19884:21;19873:32;;19821:90;;;:::o;19917:114::-;19954:7;19994:30;19987:5;19983:42;19972:53;;19917:114;;;:::o;20037:126::-;20074:7;20114:42;20107:5;20103:54;20092:65;;20037:126;;;:::o;20169:77::-;20206:7;20235:5;20224:16;;20169:77;;;:::o;20252:93::-;20288:7;20328:10;20321:5;20317:22;20306:33;;20252:93;;;:::o;20351:86::-;20386:7;20426:4;20419:5;20415:16;20404:27;;20351:86;;;:::o;20443:121::-;20501:9;20534:24;20552:5;20534:24;:::i;:::-;20521:37;;20443:121;;;:::o;20570:307::-;20638:1;20648:113;20662:6;20659:1;20656:13;20648:113;;;20747:1;20742:3;20738:11;20732:18;20728:1;20723:3;20719:11;20712:39;20684:2;20681:1;20677:10;20672:15;;20648:113;;;20779:6;20776:1;20773:13;20770:101;;;20859:1;20850:6;20845:3;20841:16;20834:27;20770:101;20619:258;20570:307;;;:::o;20883:320::-;20927:6;20964:1;20958:4;20954:12;20944:22;;21011:1;21005:4;21001:12;21032:18;21022:81;;21088:4;21080:6;21076:17;21066:27;;21022:81;21150:2;21142:6;21139:14;21119:18;21116:38;21113:84;;;21169:18;;:::i;:::-;21113:84;20934:269;20883:320;;;:::o;21209:180::-;21257:77;21254:1;21247:88;21354:4;21351:1;21344:15;21378:4;21375:1;21368:15;21395:180;21443:77;21440:1;21433:88;21540:4;21537:1;21530:15;21564:4;21561:1;21554:15;21581:180;21629:77;21626:1;21619:88;21726:4;21723:1;21716:15;21750:4;21747:1;21740:15;21767:180;21815:77;21812:1;21805:88;21912:4;21909:1;21902:15;21936:4;21933:1;21926:15;21953:180;22001:77;21998:1;21991:88;22098:4;22095:1;22088:15;22122:4;22119:1;22112:15;22262:117;22371:1;22368;22361:12;22385:102;22426:6;22477:2;22473:7;22468:2;22461:5;22457:14;22453:28;22443:38;;22385:102;;;:::o;22493:222::-;22633:34;22629:1;22621:6;22617:14;22610:58;22702:5;22697:2;22689:6;22685:15;22678:30;22493:222;:::o;22721:225::-;22861:34;22857:1;22849:6;22845:14;22838:58;22930:8;22925:2;22917:6;22913:15;22906:33;22721:225;:::o;22952:221::-;23092:34;23088:1;23080:6;23076:14;23069:58;23161:4;23156:2;23148:6;23144:15;23137:29;22952:221;:::o;23179:179::-;23319:31;23315:1;23307:6;23303:14;23296:55;23179:179;:::o;23364:225::-;23504:34;23500:1;23492:6;23488:14;23481:58;23573:8;23568:2;23560:6;23556:15;23549:33;23364:225;:::o;23595:158::-;23735:10;23731:1;23723:6;23719:14;23712:34;23595:158;:::o;23759:182::-;23899:34;23895:1;23887:6;23883:14;23876:58;23759:182;:::o;23947:166::-;24087:18;24083:1;24075:6;24071:14;24064:42;23947:166;:::o;24119:224::-;24259:34;24255:1;24247:6;24243:14;24236:58;24328:7;24323:2;24315:6;24311:15;24304:32;24119:224;:::o;24349:223::-;24489:34;24485:1;24477:6;24473:14;24466:58;24558:6;24553:2;24545:6;24541:15;24534:31;24349:223;:::o;24578:224::-;24718:34;24714:1;24706:6;24702:14;24695:58;24787:7;24782:2;24774:6;24770:15;24763:32;24578:224;:::o;24808:122::-;24881:24;24899:5;24881:24;:::i;:::-;24874:5;24871:35;24861:63;;24920:1;24917;24910:12;24861:63;24808:122;:::o;24936:116::-;25006:21;25021:5;25006:21;:::i;:::-;24999:5;24996:32;24986:60;;25042:1;25039;25032:12;24986:60;24936:116;:::o;25058:122::-;25131:24;25149:5;25131:24;:::i;:::-;25124:5;25121:35;25111:63;;25170:1;25167;25160:12;25111:63;25058:122;:::o;25186:::-;25259:24;25277:5;25259:24;:::i;:::-;25252:5;25249:35;25239:63;;25298:1;25295;25288:12;25239:63;25186:122;:::o;25314:120::-;25386:23;25403:5;25386:23;:::i;:::-;25379:5;25376:34;25366:62;;25424:1;25421;25414:12;25366:62;25314:120;:::o
Swarm Source
ipfs://bc289d89b8d3f65a80620311a282b63539359eb2d98a0a06b9f604685a30bdb3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.