More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 178 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16263819 | 767 days ago | IN | 0 ETH | 0.00071987 | ||||
Transfer | 16263810 | 767 days ago | IN | 0 ETH | 0.00069165 | ||||
Transfer | 16263802 | 767 days ago | IN | 0 ETH | 0.00073335 | ||||
Transfer | 16263793 | 767 days ago | IN | 0 ETH | 0.00080244 | ||||
Approve | 16263786 | 767 days ago | IN | 0 ETH | 0.00066366 | ||||
Approve | 16263776 | 767 days ago | IN | 0 ETH | 0.00054953 | ||||
Approve | 16263746 | 767 days ago | IN | 0 ETH | 0.00088072 | ||||
Approve | 16109884 | 788 days ago | IN | 0 ETH | 0.00056064 | ||||
Transfer | 16093248 | 791 days ago | IN | 0 ETH | 0.00083726 | ||||
Approve | 16093202 | 791 days ago | IN | 0 ETH | 0.00058151 | ||||
Approve | 16093163 | 791 days ago | IN | 0 ETH | 0.00055282 | ||||
Transfer | 16092959 | 791 days ago | IN | 0 ETH | 0.00084417 | ||||
Transfer | 16092957 | 791 days ago | IN | 0 ETH | 0.00108669 | ||||
Approve | 16092934 | 791 days ago | IN | 0 ETH | 0.00070345 | ||||
Approve | 16092614 | 791 days ago | IN | 0 ETH | 0.00058404 | ||||
Transfer | 16092270 | 791 days ago | IN | 0 ETH | 0.00091503 | ||||
Transfer | 16091939 | 791 days ago | IN | 0 ETH | 0.00131096 | ||||
Approve | 16091900 | 791 days ago | IN | 0 ETH | 0.00063279 | ||||
Approve | 16091667 | 791 days ago | IN | 0 ETH | 0.00059351 | ||||
Approve | 16091663 | 791 days ago | IN | 0 ETH | 0.00058554 | ||||
Approve | 16091523 | 791 days ago | IN | 0 ETH | 0.00069278 | ||||
Approve | 16091516 | 791 days ago | IN | 0 ETH | 0.00071437 | ||||
Approve | 16091516 | 791 days ago | IN | 0 ETH | 0.00071437 | ||||
Approve | 16091515 | 791 days ago | IN | 0 ETH | 0.00070961 | ||||
Approve | 16091507 | 791 days ago | IN | 0 ETH | 0.00078292 |
Latest 16 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
16263778 | 767 days ago | 0.02439266 ETH | ||||
16263778 | 767 days ago | 0.02439266 ETH | ||||
16091509 | 791 days ago | 0.08436563 ETH | ||||
16091509 | 791 days ago | 0.08436563 ETH | ||||
16085911 | 792 days ago | 0.18493375 ETH | ||||
16085911 | 792 days ago | 0.18493375 ETH | ||||
16085489 | 792 days ago | 0.14495434 ETH | ||||
16085489 | 792 days ago | 0.14495434 ETH | ||||
16085279 | 792 days ago | 0.37903711 ETH | ||||
16085279 | 792 days ago | 0.37903711 ETH | ||||
16085276 | 792 days ago | 0.35962691 ETH | ||||
16085276 | 792 days ago | 0.35962691 ETH | ||||
16085087 | 792 days ago | 0.07691952 ETH | ||||
16085087 | 792 days ago | 0.07691952 ETH | ||||
16084789 | 792 days ago | 0.04604644 ETH | ||||
16084789 | 792 days ago | 0.04604644 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GRASS
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-30 */ // SPDX-License-Identifier: MIT // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { 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: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); 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 removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); 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: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; if (amount > 0) { emit Transfer(sender, recipient, amount);} _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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; _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; } _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 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: contracts/test.sol pragma solidity ^0.8.16; contract GRASS is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; struct BuyFee { uint16 devFee; } struct SellFee { uint16 devFee; } bool private swapping; BuyFee public buyFee; SellFee public sellFee; uint256 public swapTokensAtAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale) uint256 public maxBuyAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale) uint256 public maxSellAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale) uint256 public maxWalletAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale) uint16 private totalBuyFee; uint16 private totalSellFee; bool public swapEnabled; bool private isTradingEnabled; address payable devWallet = payable(address(0x4E213B7e19CBfD5c7fC974601250491406197dc2)); mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromLimit; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); modifier lockTheSwap() { swapping = true; _; swapping = false; } constructor() ERC20("GRASS", "GRASS") { buyFee.devFee = 3; totalBuyFee = 3; sellFee.devFee = 3; totalSellFee = 3; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router ); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); swapEnabled = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 1 * 10**9 * (10**18)); // 1 Billion Tokens } receive() external payable {} function updateRouter(address newAddress) external onlyOwner { require(newAddress != address(uniswapV2Router), "ERC20: The router already has that address"); uniswapV2Router = IUniswapV2Router02(newAddress); address get_pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH()); if (get_pair == address(0)) { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } else { uniswapV2Pair = get_pair; } } function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "ERC20: Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function claimStuckTokens(address _token) external onlyOwner { require(_token != address(this), "No rugs"); if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } IERC20 erc20token = IERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } function excludefromLimit(address account, bool excluded) external onlyOwner { _isExcludedFromLimit[account] = excluded; } function enableTrading() external onlyOwner { isTradingEnabled = true; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "ERC20: The Uniswap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "ERC20: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setBuyFees( uint16 newBuyFee ) external onlyOwner { buyFee.devFee = newBuyFee; totalBuyFee = newBuyFee; require(totalBuyFee <= 20, "MaX buy fees limit is 20%"); } function setSellFee( uint16 newSellFee ) external onlyOwner { sellFee.devFee = newSellFee; totalSellFee = newSellFee; require (totalSellFee <= 20, "Max sell fees limit is 20%"); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } // function to change dev wallet function setDevWallet(address newWallet) external onlyOwner { require (newWallet != address(0), "Dev wallet can not be a zero address"); devWallet = payable(newWallet); } // Function to set Max Wallet limit ( How many tokens a wallet can hold) function setMaxWallet(uint256 amount) external onlyOwner { require(amount > 10000000, "Can't set lower amount, No rugPull"); maxWalletAmount = amount * 10**18; } // // function to set Max Buy limit per transaction function setMaxBuyAmount(uint256 amount) external onlyOwner { require(amount >= 100000, "Can't set lower amount, No rugPull"); maxBuyAmount = amount * 10**18; } // function to set Max sell limit per transaction function setMaxSellAmount(uint256 amount) external onlyOwner { require(amount >= 100000, "Can't set lower amount, No rugPull"); maxSellAmount = amount * 10**18; } // function to set threshold for eth conversion function setSwapTokensAtAmount(uint256 amount) external onlyOwner { swapTokensAtAmount = amount * 10**18; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "Token: transfer from the zero address"); require(to != address(0), "Token: transfer to the zero address"); require( isTradingEnabled || _isExcludedFromFees[from], "Trading not enabled yet" ); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinimumTokenBalance = contractTokenBalance >= swapTokensAtAmount; if ( swapEnabled && !swapping && from != uniswapV2Pair && overMinimumTokenBalance ) { uint256 swapTokens = contractTokenBalance; swapAndSendToDev(swapTokens); } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (takeFee) { uint256 fees; if (automatedMarketMakerPairs[to]) { fees = totalSellFee; } else if (automatedMarketMakerPairs[from]) { fees = totalBuyFee; } if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { if (automatedMarketMakerPairs[to]) { require(amount <= maxSellAmount, "Sell exceeds per transaction limit"); } else if (automatedMarketMakerPairs[from]) { require(amount <= maxBuyAmount, "Buy exceeds per transaction limit"); } if (!automatedMarketMakerPairs[to]) { require( balanceOf(to) + amount <= maxWalletAmount, "Antiwhale: Balance exceeds limit" ); } } uint256 feeAmount = amount.mul(fees).div(100); amount = amount.sub(feeAmount); super._transfer(from, address(this), feeAmount); } super._transfer(from, to, amount); } function swapAndSendToDev (uint256 tokens) private lockTheSwap { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); uint256 newBalance = address(this).balance.sub(initialBalance); (bool os, ) = payable(devWallet).call{value: newBalance}(""); require(os,"transaction failed"); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526a084595161401484a000000600a556a084595161401484a000000600b556a084595161401484a000000600c556a084595161401484a000000600d55734e213b7e19cbfd5c7fc974601250491406197dc2600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a257600080fd5b506040518060400160405280600581526020017f47524153530000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4752415353000000000000000000000000000000000000000000000000000000815250816003908162000120919062000c68565b50806004908162000132919062000c68565b50505062000155620001496200046f60201b60201c565b6200047760201b60201c565b6003600860000160006101000a81548161ffff021916908361ffff1602179055506003600e60006101000a81548161ffff021916908361ffff1602179055506003600960000160006101000a81548161ffff021916908361ffff1602179055506003600e60026101000a81548161ffff021916908361ffff1602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000260919062000db9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ee919062000db9565b6040518363ffffffff1660e01b81526004016200030d92919062000dfc565b6020604051808303816000875af11580156200032d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000353919062000db9565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ea8160016200053d60201b60201c565b6200040c620003fe6200067360201b60201c565b60016200069d60201b60201c565b6200041f3060016200069d60201b60201c565b6001600e60046101000a81548160ff021916908315150217905550620004676200044e6200067360201b60201c565b6b033b2e3c9fd0803ce80000006200086c60201b60201c565b505062001120565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000eb0565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620006ad6200046f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d36200067360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007239062000f22565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620007c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b89062000fba565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ff9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062001066565b60405180910390fd5b620008f260008383620009e460201b60201c565b8060026000828254620009069190620010b7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200095d9190620010b7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009c4919062001103565b60405180910390a3620009e060008383620009e960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a7057607f821691505b60208210810362000a865762000a8562000a28565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000af07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ab1565b62000afc868362000ab1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b4962000b4362000b3d8462000b14565b62000b1e565b62000b14565b9050919050565b6000819050919050565b62000b658362000b28565b62000b7d62000b748262000b50565b84845462000abe565b825550505050565b600090565b62000b9462000b85565b62000ba181848462000b5a565b505050565b5b8181101562000bc95762000bbd60008262000b8a565b60018101905062000ba7565b5050565b601f82111562000c185762000be28162000a8c565b62000bed8462000aa1565b8101602085101562000bfd578190505b62000c1562000c0c8562000aa1565b83018262000ba6565b50505b505050565b600082821c905092915050565b600062000c3d6000198460080262000c1d565b1980831691505092915050565b600062000c58838362000c2a565b9150826002028217905092915050565b62000c7382620009ee565b67ffffffffffffffff81111562000c8f5762000c8e620009f9565b5b62000c9b825462000a57565b62000ca882828562000bcd565b600060209050601f83116001811462000ce0576000841562000ccb578287015190505b62000cd7858262000c4a565b86555062000d47565b601f19841662000cf08662000a8c565b60005b8281101562000d1a5784890151825560018201915060208501945060208101905062000cf3565b8683101562000d3a578489015162000d36601f89168262000c2a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d818262000d54565b9050919050565b62000d938162000d74565b811462000d9f57600080fd5b50565b60008151905062000db38162000d88565b92915050565b60006020828403121562000dd25762000dd162000d4f565b5b600062000de28482850162000da2565b91505092915050565b62000df68162000d74565b82525050565b600060408201905062000e13600083018562000deb565b62000e22602083018462000deb565b9392505050565b600082825260208201905092915050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000e98603f8362000e29565b915062000ea58262000e3a565b604082019050919050565b6000602082019050818103600083015262000ecb8162000e89565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0a60208362000e29565b915062000f178262000ed2565b602082019050919050565b6000602082019050818103600083015262000f3d8162000efb565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000fa260318362000e29565b915062000faf8262000f44565b604082019050919050565b6000602082019050818103600083015262000fd58162000f93565b9050919050565b60008115159050919050565b62000ff38162000fdc565b82525050565b600060208201905062001010600083018462000fe8565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200104e601f8362000e29565b91506200105b8262001016565b602082019050919050565b6000602082019050818103600083015262001081816200103f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c48262000b14565b9150620010d18362000b14565b9250828201905080821115620010ec57620010eb62001088565b5b92915050565b620010fd8162000b14565b82525050565b60006020820190506200111a6000830184620010f2565b92915050565b614b0c80620011306000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b6040516102579190613498565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613553565b610989565b60405161029491906135ae565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf9190613628565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613652565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366d565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369a565b610b06565b60405161035091906135ae565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370a565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613741565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613553565b610c21565b6040516103e391906135ae565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190613788565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370a565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c4565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366d565b610e21565b60405161049f91906135ae565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137df565b610e77565b005b3480156104dd57600080fd5b506104e6610f55565b6040516104f39190613652565b60405180910390f35b34801561050857600080fd5b50610511610f5b565b60405161051e91906135ae565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366d565b610f6e565b60405161055b9190613652565b60405180910390f35b34801561057057600080fd5b50610579610fb6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613838565b61103e565b005b3480156105b057600080fd5b506105b9611115565b6040516105c69190613652565b60405180910390f35b3480156105db57600080fd5b506105e461111b565b005b3480156105f257600080fd5b506105fb6111b4565b60405161060891906137c4565b60405180910390f35b34801561061d57600080fd5b506106266111de565b6040516106339190613498565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613838565b611270565b005b34801561067157600080fd5b5061068c60048036038101906106879190613553565b61138a565b60405161069991906135ae565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613553565b611475565b6040516106d691906135ae565b60405180910390f35b3480156106eb57600080fd5b506106f4611493565b6040516107019190613652565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137df565b611499565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366d565b611532565b60405161076791906135ae565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613838565b611552565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366d565b611709565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613878565b611c53565b6040516107f69190613652565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613788565b611cda565b005b34801561083457600080fd5b5061083d611dee565b60405161084a9190613652565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137df565b611df4565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366d565b611ed3565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137df565b611fca565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366d565b6120a9565b005b606060038054610906906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e7565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d610996612329565b8484612331565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df612329565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f6565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a88565b60405180910390fd5b610bf285610bea612329565b858403612331565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e612329565b848460016000610c3c612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad7565b612331565b6001905092915050565b610cd5612329565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613964565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506014600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b57565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f612329565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613964565b60405180910390fd5b629896808111610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613be9565b60405180910390fd5b670de0b6b3a764000081610f4c9190613c09565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbe612329565b73ffffffffffffffffffffffffffffffffffffffff16610fdc6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613964565b60405180910390fd5b61103c6000612bc8565b565b611046612329565b73ffffffffffffffffffffffffffffffffffffffff166110646111b4565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613964565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b611123612329565b73ffffffffffffffffffffffffffffffffffffffff166111416111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613964565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ed906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906138e7565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b611278612329565b73ffffffffffffffffffffffffffffffffffffffff166112966111b4565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613964565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613cfb565b60405180910390fd5b6113868282612c8e565b5050565b60008060016000611399612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613d8d565b60405180910390fd5b61146a611461612329565b85858403612331565b600191505092915050565b6000611489611482612329565b84846124fa565b6001905092915050565b600d5481565b6114a1612329565b73ffffffffffffffffffffffffffffffffffffffff166114bf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613964565b60405180910390fd5b670de0b6b3a7640000816115299190613c09565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155a612329565b73ffffffffffffffffffffffffffffffffffffffff166115786111b4565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613964565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613e1f565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fd91906135ae565b60405180910390a25050565b611711612329565b73ffffffffffffffffffffffffffffffffffffffff1661172f6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613964565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613eb1565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e99190613ee6565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119969190613ee6565b6040518363ffffffff1660e01b81526004016119b3929190613f13565b602060405180830381865afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f49190613ee6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190613ee6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b689190613ee6565b6040518363ffffffff1660e01b8152600401611b85929190613f13565b6020604051808303816000875af1158015611ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc89190613ee6565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c4f565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce2612329565b73ffffffffffffffffffffffffffffffffffffffff16611d006111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613964565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506014600e60029054906101000a900461ffff1661ffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613f88565b60405180910390fd5b50565b600a5481565b611dfc612329565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613964565b60405180910390fd5b620186a0811015611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613be9565b60405180910390fd5b670de0b6b3a764000081611eca9190613c09565b600c8190555050565b611edb612329565b73ffffffffffffffffffffffffffffffffffffffff16611ef96111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb59061401a565b60405180910390fd5b611fc781612bc8565b50565b611fd2612329565b73ffffffffffffffffffffffffffffffffffffffff16611ff06111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613964565b60405180910390fd5b620186a081101561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613be9565b60405180910390fd5b670de0b6b3a7640000816120a09190613c09565b600b8190555050565b6120b1612329565b73ffffffffffffffffffffffffffffffffffffffff166120cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613964565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221a576121cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b50612326565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225a91906137c4565b602060405180830381865afa158015612277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b91906140bb565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c16111b4565b836040518363ffffffff1660e01b81526004016122df9291906140e8565b6020604051808303816000875af11580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123229190614126565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906141c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690614257565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ed9190613652565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf9061437b565b60405180910390fd5b600e60059054906101000a900460ff168061263c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612672906143e7565b60405180910390fd5b600081036126945761268f83836000612dc1565b612bc3565b600061269f30610f6e565b90506000600a548210159050600e60049054906101000a900460ff1680156126d45750600760149054906101000a900460ff16155b801561272e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127375750805b1561274c57600082905061274a8161304a565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f35750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127fd57600090505b8015612bb4576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287357600e60029054906101000a900461ffff1661ffff1690506128de565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128dd57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129825750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6757601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2357600c54851115612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590614479565b60405180910390fd5b612abc565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abb57600b54851115612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061450b565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6657600d5485612b1a88610f6e565b612b249190613ad7565b1115612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614577565b60405180910390fd5b5b5b6000612b8f6064612b81848961317990919063ffffffff16565b61318f90919063ffffffff16565b9050612ba481876131a590919063ffffffff16565b9550612bb1883083612dc1565b50505b612bbf868686612dc1565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790614609565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e279061469b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e969061472d565b60405180910390fd5b612eaa8383836131bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f27906147bf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc39190613ad7565b925050819055506000821115613039578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130309190613652565b60405180910390a35b6130448484846131c0565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613073826131c5565b600061308882476131a590919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d290614810565b60006040518083038185875af1925050503d806000811461310f576040519150601f19603f3d011682016040523d82523d6000602084013e613114565b606091505b5050905080613158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314f90614871565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131879190613c09565b905092915050565b6000818361319d91906148c0565b905092915050565b600081836131b391906148f1565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e2576131e1614925565b5b6040519080825280602002602001820160405280156132105781602001602082028036833780820191505090505b509050308160008151811061322857613227614954565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f39190613ee6565b8160018151811061330757613306614954565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061336e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612331565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d2959493929190614a7c565b600060405180830381600087803b1580156133ec57600080fd5b505af1158015613400573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613442578082015181840152602081019050613427565b60008484015250505050565b6000601f19601f8301169050919050565b600061346a82613408565b6134748185613413565b9350613484818560208601613424565b61348d8161344e565b840191505092915050565b600060208201905081810360008301526134b2818461345f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ea826134bf565b9050919050565b6134fa816134df565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b6000819050919050565b6135308161351d565b811461353b57600080fd5b50565b60008135905061354d81613527565b92915050565b6000806040838503121561356a576135696134ba565b5b600061357885828601613508565b92505060206135898582860161353e565b9150509250929050565b60008115159050919050565b6135a881613593565b82525050565b60006020820190506135c3600083018461359f565b92915050565b6000819050919050565b60006135ee6135e96135e4846134bf565b6135c9565b6134bf565b9050919050565b6000613600826135d3565b9050919050565b6000613612826135f5565b9050919050565b61362281613607565b82525050565b600060208201905061363d6000830184613619565b92915050565b61364c8161351d565b82525050565b60006020820190506136676000830184613643565b92915050565b600060208284031215613683576136826134ba565b5b600061369184828501613508565b91505092915050565b6000806000606084860312156136b3576136b26134ba565b5b60006136c186828701613508565b93505060206136d286828701613508565b92505060406136e38682870161353e565b9150509250925092565b600061ffff82169050919050565b613704816136ed565b82525050565b600060208201905061371f60008301846136fb565b92915050565b600060ff82169050919050565b61373b81613725565b82525050565b60006020820190506137566000830184613732565b92915050565b613765816136ed565b811461377057600080fd5b50565b6000813590506137828161375c565b92915050565b60006020828403121561379e5761379d6134ba565b5b60006137ac84828501613773565b91505092915050565b6137be816134df565b82525050565b60006020820190506137d960008301846137b5565b92915050565b6000602082840312156137f5576137f46134ba565b5b60006138038482850161353e565b91505092915050565b61381581613593565b811461382057600080fd5b50565b6000813590506138328161380c565b92915050565b6000806040838503121561384f5761384e6134ba565b5b600061385d85828601613508565b925050602061386e85828601613823565b9150509250929050565b6000806040838503121561388f5761388e6134ba565b5b600061389d85828601613508565b92505060206138ae85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ff57607f821691505b602082108103613912576139116138b8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394e602083613413565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e0602483613413565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a72602883613413565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae28261351d565b9150613aed8361351d565b9250828201905080821115613b0557613b04613aa8565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320323025000000000000600082015250565b6000613b41601a83613413565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd3602283613413565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c148261351d565b9150613c1f8361351d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5857613c57613aa8565b5b828202905092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ce5604883613413565b9150613cf082613c63565b606082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d77602583613413565b9150613d8282613d1b565b604082019050919050565b60006020820190508181036000830152613da681613d6a565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613e09603183613413565b9150613e1482613dad565b604082019050919050565b60006020820190508181036000830152613e3881613dfc565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e9b602a83613413565b9150613ea682613e3f565b604082019050919050565b60006020820190508181036000830152613eca81613e8e565b9050919050565b600081519050613ee0816134f1565b92915050565b600060208284031215613efc57613efb6134ba565b5b6000613f0a84828501613ed1565b91505092915050565b6000604082019050613f2860008301856137b5565b613f3560208301846137b5565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320323025000000000000600082015250565b6000613f72601a83613413565b9150613f7d82613f3c565b602082019050919050565b60006020820190508181036000830152613fa181613f65565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614004602683613413565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b6000614070600783613413565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b6000815190506140b581613527565b92915050565b6000602082840312156140d1576140d06134ba565b5b60006140df848285016140a6565b91505092915050565b60006040820190506140fd60008301856137b5565b61410a6020830184613643565b9392505050565b6000815190506141208161380c565b92915050565b60006020828403121561413c5761413b6134ba565b5b600061414a84828501614111565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141af602483613413565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614241602283613413565b915061424c826141e5565b604082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142d3602583613413565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614365602383613413565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143d1601783613413565b91506143dc8261439b565b602082019050919050565b60006020820190508181036000830152614400816143c4565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614463602283613413565b915061446e82614407565b604082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144f5602183613413565b915061450082614499565b604082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b6000614561602083613413565b915061456c8261452b565b602082019050919050565b6000602082019050818103600083015261459081614554565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145f3603f83613413565b91506145fe82614597565b604082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614685602583613413565b915061469082614629565b604082019050919050565b600060208201905081810360008301526146b481614678565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614717602383613413565b9150614722826146bb565b604082019050919050565b600060208201905081810360008301526147468161470a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147a9602683613413565b91506147b48261474d565b604082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b600081905092915050565b50565b60006147fa6000836147df565b9150614805826147ea565b600082019050919050565b600061481b826147ed565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b600061485b601283613413565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148cb8261351d565b91506148d68361351d565b9250826148e6576148e5614891565b5b828204905092915050565b60006148fc8261351d565b91506149078361351d565b925082820390508181111561491f5761491e613aa8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006149a86149a361499e84614983565b6135c9565b61351d565b9050919050565b6149b88161498d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149f3816134df565b82525050565b6000614a0583836149ea565b60208301905092915050565b6000602082019050919050565b6000614a29826149be565b614a3381856149c9565b9350614a3e836149da565b8060005b83811015614a6f578151614a5688826149f9565b9750614a6183614a11565b925050600181019050614a42565b5085935050505092915050565b600060a082019050614a916000830188613643565b614a9e60208301876149af565b8181036040830152614ab08186614a1e565b9050614abf60608301856137b5565b614acc6080830184613643565b969550505050505056fea2646970667358221220c25589562f8eed06ff8ed6c1bedc62e66b7fb0e07863b1e3f28c86cc041816d264736f6c63430008100033
Deployed Bytecode
0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f4560514610828578063e99c9d0914610853578063f2fde38b1461087c578063f34eb0b8146108a5578063f9d0831a146108ce57610230565b8063b62496f514610733578063c024666814610770578063c851cc3214610799578063dd62ed3e146107c2578063e064648a146107ff57610230565b80639a7a23d6116100f25780639a7a23d61461063c578063a457c2d714610665578063a9059cbb146106a2578063aa4bde28146106df578063afa4f3b21461070a57610230565b806388e765ff146105a45780638a8c523c146105cf5780638da5cb5b146105e657806395d89b411461061157610230565b806343c348a5116101b157806366d602ae1161017557806366d602ae146104d15780636ddd1713146104fc57806370a0823114610527578063715018a6146105645780637537a47f1461057b57610230565b806343c348a5146103ec578063470624021461041557806349bd5a5e146104405780634fbee1931461046b5780635d0044ca146104a857610230565b80631f53ac02116101f85780631f53ac02146102f357806323b872dd1461031c5780632b14ca5614610359578063313ce5671461038457806339509351146103af57610230565b806306fdde0314610235578063095ea7b3146102605780631694505e1461029d57806318160ddd146102c857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061024a6108f7565b6040516102579190613498565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190613553565b610989565b60405161029491906135ae565b60405180910390f35b3480156102a957600080fd5b506102b26109a7565b6040516102bf9190613628565b60405180910390f35b3480156102d457600080fd5b506102dd6109cd565b6040516102ea9190613652565b60405180910390f35b3480156102ff57600080fd5b5061031a6004803603810190610315919061366d565b6109d7565b005b34801561032857600080fd5b50610343600480360381019061033e919061369a565b610b06565b60405161035091906135ae565b60405180910390f35b34801561036557600080fd5b5061036e610bfe565b60405161037b919061370a565b60405180910390f35b34801561039057600080fd5b50610399610c18565b6040516103a69190613741565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613553565b610c21565b6040516103e391906135ae565b60405180910390f35b3480156103f857600080fd5b50610413600480360381019061040e9190613788565b610ccd565b005b34801561042157600080fd5b5061042a610de1565b604051610437919061370a565b60405180910390f35b34801561044c57600080fd5b50610455610dfb565b60405161046291906137c4565b60405180910390f35b34801561047757600080fd5b50610492600480360381019061048d919061366d565b610e21565b60405161049f91906135ae565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca91906137df565b610e77565b005b3480156104dd57600080fd5b506104e6610f55565b6040516104f39190613652565b60405180910390f35b34801561050857600080fd5b50610511610f5b565b60405161051e91906135ae565b60405180910390f35b34801561053357600080fd5b5061054e6004803603810190610549919061366d565b610f6e565b60405161055b9190613652565b60405180910390f35b34801561057057600080fd5b50610579610fb6565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613838565b61103e565b005b3480156105b057600080fd5b506105b9611115565b6040516105c69190613652565b60405180910390f35b3480156105db57600080fd5b506105e461111b565b005b3480156105f257600080fd5b506105fb6111b4565b60405161060891906137c4565b60405180910390f35b34801561061d57600080fd5b506106266111de565b6040516106339190613498565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613838565b611270565b005b34801561067157600080fd5b5061068c60048036038101906106879190613553565b61138a565b60405161069991906135ae565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c49190613553565b611475565b6040516106d691906135ae565b60405180910390f35b3480156106eb57600080fd5b506106f4611493565b6040516107019190613652565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906137df565b611499565b005b34801561073f57600080fd5b5061075a6004803603810190610755919061366d565b611532565b60405161076791906135ae565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613838565b611552565b005b3480156107a557600080fd5b506107c060048036038101906107bb919061366d565b611709565b005b3480156107ce57600080fd5b506107e960048036038101906107e49190613878565b611c53565b6040516107f69190613652565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190613788565b611cda565b005b34801561083457600080fd5b5061083d611dee565b60405161084a9190613652565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906137df565b611df4565b005b34801561088857600080fd5b506108a3600480360381019061089e919061366d565b611ed3565b005b3480156108b157600080fd5b506108cc60048036038101906108c791906137df565b611fca565b005b3480156108da57600080fd5b506108f560048036038101906108f0919061366d565b6120a9565b005b606060038054610906906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610932906138e7565b801561097f5780601f106109545761010080835404028352916020019161097f565b820191906000526020600020905b81548152906001019060200180831161096257829003601f168201915b5050505050905090565b600061099d610996612329565b8484612331565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6109df612329565b73ffffffffffffffffffffffffffffffffffffffff166109fd6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a90613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab9906139f6565b60405180910390fd5b80600e60066101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610b138484846124fa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b5e612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd590613a88565b60405180910390fd5b610bf285610bea612329565b858403612331565b60019150509392505050565b60098060000160009054906101000a900461ffff16905081565b60006012905090565b6000610cc3610c2e612329565b848460016000610c3c612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cbe9190613ad7565b612331565b6001905092915050565b610cd5612329565b73ffffffffffffffffffffffffffffffffffffffff16610cf36111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613964565b60405180910390fd5b80600860000160006101000a81548161ffff021916908361ffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055506014600e60009054906101000a900461ffff1661ffff161115610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590613b57565b60405180910390fd5b50565b60088060000160009054906101000a900461ffff16905081565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610e7f612329565b73ffffffffffffffffffffffffffffffffffffffff16610e9d6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613964565b60405180910390fd5b629896808111610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f90613be9565b60405180910390fd5b670de0b6b3a764000081610f4c9190613c09565b600d8190555050565b600c5481565b600e60049054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fbe612329565b73ffffffffffffffffffffffffffffffffffffffff16610fdc6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102990613964565b60405180910390fd5b61103c6000612bc8565b565b611046612329565b73ffffffffffffffffffffffffffffffffffffffff166110646111b4565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190613964565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b5481565b611123612329565b73ffffffffffffffffffffffffffffffffffffffff166111416111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613964565b60405180910390fd5b6001600e60056101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111ed906138e7565b80601f0160208091040260200160405190810160405280929190818152602001828054611219906138e7565b80156112665780601f1061123b57610100808354040283529160200191611266565b820191906000526020600020905b81548152906001019060200180831161124957829003601f168201915b5050505050905090565b611278612329565b73ffffffffffffffffffffffffffffffffffffffff166112966111b4565b73ffffffffffffffffffffffffffffffffffffffff16146112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390613964565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137390613cfb565b60405180910390fd5b6113868282612c8e565b5050565b60008060016000611399612329565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90613d8d565b60405180910390fd5b61146a611461612329565b85858403612331565b600191505092915050565b6000611489611482612329565b84846124fa565b6001905092915050565b600d5481565b6114a1612329565b73ffffffffffffffffffffffffffffffffffffffff166114bf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90613964565b60405180910390fd5b670de0b6b3a7640000816115299190613c09565b600a8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61155a612329565b73ffffffffffffffffffffffffffffffffffffffff166115786111b4565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613964565b60405180910390fd5b801515600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613e1f565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116fd91906135ae565b60405180910390a25050565b611711612329565b73ffffffffffffffffffffffffffffffffffffffff1661172f6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613964565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613eb1565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e99190613ee6565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611972573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119969190613ee6565b6040518363ffffffff1660e01b81526004016119b3929190613f13565b602060405180830381865afa1580156119d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f49190613ee6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c0d57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190613ee6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b689190613ee6565b6040518363ffffffff1660e01b8152600401611b85929190613f13565b6020604051808303816000875af1158015611ba4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc89190613ee6565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611c4f565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611ce2612329565b73ffffffffffffffffffffffffffffffffffffffff16611d006111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d90613964565b60405180910390fd5b80600960000160006101000a81548161ffff021916908361ffff16021790555080600e60026101000a81548161ffff021916908361ffff1602179055506014600e60029054906101000a900461ffff1661ffff161115611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290613f88565b60405180910390fd5b50565b600a5481565b611dfc612329565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613964565b60405180910390fd5b620186a0811015611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90613be9565b60405180910390fd5b670de0b6b3a764000081611eca9190613c09565b600c8190555050565b611edb612329565b73ffffffffffffffffffffffffffffffffffffffff16611ef96111b4565b73ffffffffffffffffffffffffffffffffffffffff1614611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613964565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb59061401a565b60405180910390fd5b611fc781612bc8565b50565b611fd2612329565b73ffffffffffffffffffffffffffffffffffffffff16611ff06111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613964565b60405180910390fd5b620186a081101561208c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208390613be9565b60405180910390fd5b670de0b6b3a7640000816120a09190613c09565b600b8190555050565b6120b1612329565b73ffffffffffffffffffffffffffffffffffffffff166120cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff1614612125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211c90613964565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614086565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361221a576121cf6111b4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612214573d6000803e3d6000fd5b50612326565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161225a91906137c4565b602060405180830381865afa158015612277573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229b91906140bb565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c16111b4565b836040518363ffffffff1660e01b81526004016122df9291906140e8565b6020604051808303816000875af11580156122fe573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123229190614126565b5050505b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612397906141c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361240f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240690614257565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124ed9190613652565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906142e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cf9061437b565b60405180910390fd5b600e60059054906101000a900460ff168061263c5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61267b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612672906143e7565b60405180910390fd5b600081036126945761268f83836000612dc1565b612bc3565b600061269f30610f6e565b90506000600a548210159050600e60049054906101000a900460ff1680156126d45750600760149054906101000a900460ff16155b801561272e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127375750805b1561274c57600082905061274a8161304a565b505b600060019050600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127f35750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156127fd57600090505b8015612bb4576000601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561287357600e60029054906101000a900461ffff1661ffff1690506128de565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156128dd57600e60009054906101000a900461ffff1661ffff1690505b5b601060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129825750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b6757601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612a2357600c54851115612a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1590614479565b60405180910390fd5b612abc565b601160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612abb57600b54851115612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061450b565b60405180910390fd5b5b5b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b6657600d5485612b1a88610f6e565b612b249190613ad7565b1115612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614577565b60405180910390fd5b5b5b6000612b8f6064612b81848961317990919063ffffffff16565b61318f90919063ffffffff16565b9050612ba481876131a590919063ffffffff16565b9550612bb1883083612dc1565b50505b612bbf868686612dc1565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1790614609565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e279061469b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e969061472d565b60405180910390fd5b612eaa8383836131bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f27906147bf565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc39190613ad7565b925050819055506000821115613039578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130309190613652565b60405180910390a35b6130448484846131c0565b50505050565b6001600760146101000a81548160ff0219169083151502179055506000479050613073826131c5565b600061308882476131a590919063ffffffff16565b90506000600e60069054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130d290614810565b60006040518083038185875af1925050503d806000811461310f576040519150601f19603f3d011682016040523d82523d6000602084013e613114565b606091505b5050905080613158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314f90614871565b60405180910390fd5b5050506000600760146101000a81548160ff02191690831515021790555050565b600081836131879190613c09565b905092915050565b6000818361319d91906148c0565b905092915050565b600081836131b391906148f1565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156131e2576131e1614925565b5b6040519080825280602002602001820160405280156132105781602001602082028036833780820191505090505b509050308160008151811061322857613227614954565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132f39190613ee6565b8160018151811061330757613306614954565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061336e30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612331565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133d2959493929190614a7c565b600060405180830381600087803b1580156133ec57600080fd5b505af1158015613400573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613442578082015181840152602081019050613427565b60008484015250505050565b6000601f19601f8301169050919050565b600061346a82613408565b6134748185613413565b9350613484818560208601613424565b61348d8161344e565b840191505092915050565b600060208201905081810360008301526134b2818461345f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ea826134bf565b9050919050565b6134fa816134df565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b6000819050919050565b6135308161351d565b811461353b57600080fd5b50565b60008135905061354d81613527565b92915050565b6000806040838503121561356a576135696134ba565b5b600061357885828601613508565b92505060206135898582860161353e565b9150509250929050565b60008115159050919050565b6135a881613593565b82525050565b60006020820190506135c3600083018461359f565b92915050565b6000819050919050565b60006135ee6135e96135e4846134bf565b6135c9565b6134bf565b9050919050565b6000613600826135d3565b9050919050565b6000613612826135f5565b9050919050565b61362281613607565b82525050565b600060208201905061363d6000830184613619565b92915050565b61364c8161351d565b82525050565b60006020820190506136676000830184613643565b92915050565b600060208284031215613683576136826134ba565b5b600061369184828501613508565b91505092915050565b6000806000606084860312156136b3576136b26134ba565b5b60006136c186828701613508565b93505060206136d286828701613508565b92505060406136e38682870161353e565b9150509250925092565b600061ffff82169050919050565b613704816136ed565b82525050565b600060208201905061371f60008301846136fb565b92915050565b600060ff82169050919050565b61373b81613725565b82525050565b60006020820190506137566000830184613732565b92915050565b613765816136ed565b811461377057600080fd5b50565b6000813590506137828161375c565b92915050565b60006020828403121561379e5761379d6134ba565b5b60006137ac84828501613773565b91505092915050565b6137be816134df565b82525050565b60006020820190506137d960008301846137b5565b92915050565b6000602082840312156137f5576137f46134ba565b5b60006138038482850161353e565b91505092915050565b61381581613593565b811461382057600080fd5b50565b6000813590506138328161380c565b92915050565b6000806040838503121561384f5761384e6134ba565b5b600061385d85828601613508565b925050602061386e85828601613823565b9150509250929050565b6000806040838503121561388f5761388e6134ba565b5b600061389d85828601613508565b92505060206138ae85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806138ff57607f821691505b602082108103613912576139116138b8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394e602083613413565b915061395982613918565b602082019050919050565b6000602082019050818103600083015261397d81613941565b9050919050565b7f4465762077616c6c65742063616e206e6f742062652061207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006139e0602483613413565b91506139eb82613984565b604082019050919050565b60006020820190508181036000830152613a0f816139d3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613a72602883613413565b9150613a7d82613a16565b604082019050919050565b60006020820190508181036000830152613aa181613a65565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ae28261351d565b9150613aed8361351d565b9250828201905080821115613b0557613b04613aa8565b5b92915050565b7f4d6158206275792066656573206c696d69742020697320323025000000000000600082015250565b6000613b41601a83613413565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b7f43616e277420736574206c6f77657220616d6f756e742c204e6f20727567507560008201527f6c6c000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bd3602283613413565b9150613bde82613b77565b604082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b6000613c148261351d565b9150613c1f8361351d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c5857613c57613aa8565b5b828202905092915050565b7f45524332303a2054686520556e697377617020706169722063616e6e6f74206260008201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d6160208201527f6b65725061697273000000000000000000000000000000000000000000000000604082015250565b6000613ce5604883613413565b9150613cf082613c63565b606082019050919050565b60006020820190508181036000830152613d1481613cd8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613d77602583613413565b9150613d8282613d1b565b604082019050919050565b60006020820190508181036000830152613da681613d6a565b9050919050565b7f45524332303a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613e09603183613413565b9150613e1482613dad565b604082019050919050565b60006020820190508181036000830152613e3881613dfc565b9050919050565b7f45524332303a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613e9b602a83613413565b9150613ea682613e3f565b604082019050919050565b60006020820190508181036000830152613eca81613e8e565b9050919050565b600081519050613ee0816134f1565b92915050565b600060208284031215613efc57613efb6134ba565b5b6000613f0a84828501613ed1565b91505092915050565b6000604082019050613f2860008301856137b5565b613f3560208301846137b5565b9392505050565b7f4d61782073656c6c2066656573206c696d697420697320323025000000000000600082015250565b6000613f72601a83613413565b9150613f7d82613f3c565b602082019050919050565b60006020820190508181036000830152613fa181613f65565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614004602683613413565b915061400f82613fa8565b604082019050919050565b6000602082019050818103600083015261403381613ff7565b9050919050565b7f4e6f207275677300000000000000000000000000000000000000000000000000600082015250565b6000614070600783613413565b915061407b8261403a565b602082019050919050565b6000602082019050818103600083015261409f81614063565b9050919050565b6000815190506140b581613527565b92915050565b6000602082840312156140d1576140d06134ba565b5b60006140df848285016140a6565b91505092915050565b60006040820190506140fd60008301856137b5565b61410a6020830184613643565b9392505050565b6000815190506141208161380c565b92915050565b60006020828403121561413c5761413b6134ba565b5b600061414a84828501614111565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006141af602483613413565b91506141ba82614153565b604082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614241602283613413565b915061424c826141e5565b604082019050919050565b6000602082019050818103600083015261427081614234565b9050919050565b7f546f6b656e3a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006142d3602583613413565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614365602383613413565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b60006143d1601783613413565b91506143dc8261439b565b602082019050919050565b60006020820190508181036000830152614400816143c4565b9050919050565b7f53656c6c206578636565647320706572207472616e73616374696f6e206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b6000614463602283613413565b915061446e82614407565b604082019050919050565b6000602082019050818103600083015261449281614456565b9050919050565b7f427579206578636565647320706572207472616e73616374696f6e206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b60006144f5602183613413565b915061450082614499565b604082019050919050565b60006020820190508181036000830152614524816144e8565b9050919050565b7f416e74697768616c653a2042616c616e63652065786365656473206c696d6974600082015250565b6000614561602083613413565b915061456c8261452b565b602082019050919050565b6000602082019050818103600083015261459081614554565b9050919050565b7f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006145f3603f83613413565b91506145fe82614597565b604082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614685602583613413565b915061469082614629565b604082019050919050565b600060208201905081810360008301526146b481614678565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614717602383613413565b9150614722826146bb565b604082019050919050565b600060208201905081810360008301526147468161470a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006147a9602683613413565b91506147b48261474d565b604082019050919050565b600060208201905081810360008301526147d88161479c565b9050919050565b600081905092915050565b50565b60006147fa6000836147df565b9150614805826147ea565b600082019050919050565b600061481b826147ed565b9150819050919050565b7f7472616e73616374696f6e206661696c65640000000000000000000000000000600082015250565b600061485b601283613413565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148cb8261351d565b91506148d68361351d565b9250826148e6576148e5614891565b5b828204905092915050565b60006148fc8261351d565b91506149078361351d565b925082820390508181111561491f5761491e613aa8565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006149a86149a361499e84614983565b6135c9565b61351d565b9050919050565b6149b88161498d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6149f3816134df565b82525050565b6000614a0583836149ea565b60208301905092915050565b6000602082019050919050565b6000614a29826149be565b614a3381856149c9565b9350614a3e836149da565b8060005b83811015614a6f578151614a5688826149f9565b9750614a6183614a11565b925050600181019050614a42565b5085935050505092915050565b600060a082019050614a916000830188613643565b614a9e60208301876149af565b8181036040830152614ab08186614a1e565b9050614abf60608301856137b5565b614acc6080830184613643565b969550505050505056fea2646970667358221220c25589562f8eed06ff8ed6c1bedc62e66b7fb0e07863b1e3f28c86cc041816d264736f6c63430008100033
Deployed Bytecode Sourcemap
34697:10296:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26808:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34772:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25761:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40506:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27459:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35047:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28360:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39813:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35020:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34820:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40334:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40783:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35270:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35525:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25932:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18062:103;;;;;;;;;;;;;:::i;:::-;;38843:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35183:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39011:95;;;;;;;;;;;;;:::i;:::-;;17411:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24860:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39114:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29078:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26272:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35358:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41517:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35831:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38078:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37441:629;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26510:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40066:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35086:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41272:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18320:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41030:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38421:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24641:100;24695:13;24728:5;24721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;:::o;26808:169::-;26891:4;26908:39;26917:12;:10;:12::i;:::-;26931:7;26940:6;26908:8;:39::i;:::-;26965:4;26958:11;;26808:169;;;;:::o;34772:41::-;;;;;;;;;;;;;:::o;25761:108::-;25822:7;25849:12;;25842:19;;25761:108;:::o;40506:189::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40603:1:::1;40582:23;;:9;:23;;::::0;40573:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40677:9;40657;;:30;;;;;;;;;;;;;;;;;;40506:189:::0;:::o;27459:492::-;27599:4;27616:36;27626:6;27634:9;27645:6;27616:9;:36::i;:::-;27665:24;27692:11;:19;27704:6;27692:19;;;;;;;;;;;;;;;:33;27712:12;:10;:12::i;:::-;27692:33;;;;;;;;;;;;;;;;27665:60;;27764:6;27744:16;:26;;27736:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27851:57;27860:6;27868:12;:10;:12::i;:::-;27901:6;27882:16;:25;27851:8;:57::i;:::-;27939:4;27932:11;;;27459:492;;;;;:::o;35047:22::-;;;;;;;;;;;;;;;;;;:::o;25603:93::-;25661:5;25686:2;25679:9;;25603:93;:::o;28360:215::-;28448:4;28465:80;28474:12;:10;:12::i;:::-;28488:7;28534:10;28497:11;:25;28509:12;:10;:12::i;:::-;28497:25;;;;;;;;;;;;;;;:34;28523:7;28497:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28465:8;:80::i;:::-;28563:4;28556:11;;28360:215;;;;:::o;39813:240::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39924:9:::1;39908:6;:13;;;:25;;;;;;;;;;;;;;;;;;39959:9;39945:11;;:23;;;;;;;;;;;;;;;;;;40002:2;39987:11;;;;;;;;;;;:17;;;;39979:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;39813:240:::0;:::o;35020:20::-;;;;;;;;;;;;;;;;;;:::o;34820:29::-;;;;;;;;;;;;;:::o;40334:126::-;40400:4;40424:19;:28;40444:7;40424:28;;;;;;;;;;;;;;;;;;;;;;;;;40417:35;;40334:126;;;:::o;40783:184::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40868:8:::1;40859:6;:17;40851:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40953:6;40944;:15;;;;:::i;:::-;40926;:33;;;;40783:184:::0;:::o;35270:49::-;;;;:::o;35525:23::-;;;;;;;;;;;;;:::o;25932:127::-;26006:7;26033:9;:18;26043:7;26033:18;;;;;;;;;;;;;;;;26026:25;;25932:127;;;:::o;18062:103::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18127:30:::1;18154:1;18127:18;:30::i;:::-;18062:103::o:0;38843:159::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38986:8:::1;38954:20;:29;38975:7;38954:29;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;38843:159:::0;;:::o;35183:48::-;;;;:::o;39011:95::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39085:4:::1;39066:16;;:23;;;;;;;;;;;;;;;;;;39011:95::o:0;17411:87::-;17457:7;17484:6;;;;;;;;;;;17477:13;;17411:87;:::o;24860:104::-;24916:13;24949:7;24942:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24860:104;:::o;39114:319::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39258:13:::1;;;;;;;;;;;39250:21;;:4;:21;;::::0;39228:143:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39384:41;39413:4;39419:5;39384:28;:41::i;:::-;39114:319:::0;;:::o;29078:413::-;29171:4;29188:24;29215:11;:25;29227:12;:10;:12::i;:::-;29215:25;;;;;;;;;;;;;;;:34;29241:7;29215:34;;;;;;;;;;;;;;;;29188:61;;29288:15;29268:16;:35;;29260:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29381:67;29390:12;:10;:12::i;:::-;29404:7;29432:15;29413:16;:34;29381:8;:67::i;:::-;29479:4;29472:11;;;29078:413;;;;:::o;26272:175::-;26358:4;26375:42;26385:12;:10;:12::i;:::-;26399:9;26410:6;26375:9;:42::i;:::-;26435:4;26428:11;;26272:175;;;;:::o;35358:51::-;;;;:::o;41517:121::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41624:6:::1;41615;:15;;;;:::i;:::-;41593:18;:37;;;;41517:121:::0;:::o;35831:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38078:334::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38217:8:::1;38185:40;;:19;:28;38205:7;38185:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;38163:139:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38344:8;38313:19;:28;38333:7;38313:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38386:7;38370:34;;;38395:8;38370:34;;;;;;:::i;:::-;;;;;;;;38078:334:::0;;:::o;37441:629::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37539:15:::1;;;;;;;;;;;37517:38;;:10;:38;;::::0;37509:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37654:10;37617:15;;:48;;;;;;;;;;;;;;;;;;37677:16;37727:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37709:52;;;37770:4;37790:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37709:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37677:136;;37848:1;37828:22;;:8;:22;;::::0;37824:239:::1;;37912:15;;;;;;;;;;;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37894:55;;;37958:4;37979:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37894:108;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37865:13;;:137;;;;;;;;;;;;;;;;;;37824:239;;;38043:8;38027:13;;:24;;;;;;;;;;;;;;;;;;37824:239;37502:568;37441:629:::0;:::o;26510:151::-;26599:7;26626:11;:18;26638:5;26626:18;;;;;;;;;;;;;;;:27;26645:7;26626:27;;;;;;;;;;;;;;;;26619:34;;26510:151;;;;:::o;40066:236::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40179:10:::1;40162:7;:14;;;:27;;;;;;;;;;;;;;;;;;40215:10;40200:12;;:25;;;;;;;;;;;;;;;;;;40261:2;40245:12;;;;;;;;;;;:18;;;;40236:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40066:236:::0;:::o;35086:54::-;;;;:::o;41272:185::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41362:6:::1;41352;:16;;41344:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41443:6;41434;:15;;;;:::i;:::-;41418:13;:31;;;;41272:185:::0;:::o;18320:201::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18429:1:::1;18409:22;;:8;:22;;::::0;18401:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18485:28;18504:8;18485:18;:28::i;:::-;18320:201:::0;:::o;41030:181::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41117:6:::1;41107;:16;;41099:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41197:6;41188;:15;;;;:::i;:::-;41173:12;:30;;;;41030:181:::0;:::o;38421:414::-;17642:12;:10;:12::i;:::-;17631:23;;:7;:5;:7::i;:::-;:23;;;17623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38519:4:::1;38501:23;;:6;:23;;::::0;38493:43:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38569:3;38551:22;;:6;:22;;::::0;38547:124:::1;;38598:7;:5;:7::i;:::-;38590:25;;:48;38616:21;38590:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38653:7;;38547:124;38681:17;38708:6;38681:34;;38726:15;38744:10;:20;;;38773:4;38744:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38726:53;;38790:10;:19;;;38810:7;:5;:7::i;:::-;38819;38790:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38482:353;;17702:1;38421:414:::0;:::o;16115:98::-;16168:7;16195:10;16188:17;;16115:98;:::o;32792:380::-;32945:1;32928:19;;:5;:19;;;32920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33026:1;33007:21;;:7;:21;;;32999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33110:6;33080:11;:18;33092:5;33080:18;;;;;;;;;;;;;;;:27;33099:7;33080:27;;;;;;;;;;;;;;;:36;;;;33148:7;33132:32;;33141:5;33132:32;;;33157:6;33132:32;;;;;;:::i;:::-;;;;;;;;32792:380;;;:::o;41646:2370::-;41794:1;41778:18;;:4;:18;;;41770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41871:1;41857:16;;:2;:16;;;41849:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41942:16;;;;;;;;;;;:45;;;;41962:19;:25;41982:4;41962:25;;;;;;;;;;;;;;;;;;;;;;;;;41942:45;41933:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;42065:1;42055:6;:11;42051:93;;42083:28;42099:4;42105:2;42109:1;42083:15;:28::i;:::-;42126:7;;42051:93;42156:28;42187:24;42205:4;42187:9;:24::i;:::-;42156:55;;42222:28;42290:18;;42253:20;:55;;42222:86;;42339:11;;;;;;;;;;;:37;;;;;42368:8;;;;;;;;;;;42367:9;42339:37;:75;;;;;42401:13;;;;;;;;;;;42393:21;;:4;:21;;;;42339:75;:115;;;;;42431:23;42339:115;42321:272;;;42495:18;42516:20;42495:41;;42551:28;42568:10;42551:16;:28::i;:::-;42466:127;42321:272;42605:12;42620:4;42605:19;;42726;:25;42746:4;42726:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42755:19;:23;42775:2;42755:23;;;;;;;;;;;;;;;;;;;;;;;;;42726:52;42722:100;;;42805:5;42795:15;;42722:100;42838:7;42834:1129;;;42862:12;42909:25;:29;42935:2;42909:29;;;;;;;;;;;;;;;;;;;;;;;;;42905:185;;;42966:12;;;;;;;;;;;42959:19;;;;42905:185;;;43004:25;:31;43030:4;43004:31;;;;;;;;;;;;;;;;;;;;;;;;;43000:90;;;43063:11;;;;;;;;;;;43056:18;;;;43000:90;42905:185;43111:20;:26;43132:4;43111:26;;;;;;;;;;;;;;;;;;;;;;;;;43110:27;:56;;;;;43142:20;:24;43163:2;43142:24;;;;;;;;;;;;;;;;;;;;;;;;;43141:25;43110:56;43106:675;;;43191:25;:29;43217:2;43191:29;;;;;;;;;;;;;;;;;;;;;;;;;43187:321;;;43263:13;;43253:6;:23;;43245:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43187:321;;;43345:25;:31;43371:4;43345:31;;;;;;;;;;;;;;;;;;;;;;;;;43341:167;;;43417:12;;43407:6;:22;;43399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43341:167;43187:321;43533:25;:29;43559:2;43533:29;;;;;;;;;;;;;;;;;;;;;;;;;43528:238;;43647:15;;43637:6;43621:13;43631:2;43621:9;:13::i;:::-;:22;;;;:::i;:::-;:41;;43587:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43528:238;43106:675;43797:17;43817:25;43838:3;43817:16;43828:4;43817:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;43797:45;;43866:21;43877:9;43866:6;:10;;:21;;;;:::i;:::-;43857:30;;43904:47;43920:4;43934;43941:9;43904:15;:47::i;:::-;42847:1116;;42834:1129;43975:33;43991:4;43997:2;44001:6;43975:15;:33::i;:::-;41759:2257;;;41646:2370;;;;:::o;18681:191::-;18755:16;18774:6;;;;;;;;;;;18755:25;;18800:8;18791:6;;:17;;;;;;;;;;;;;;;;;;18855:8;18824:40;;18845:8;18824:40;;;;;;;;;;;;18744:128;18681:191;:::o;39441:352::-;39581:5;39546:40;;:25;:31;39572:4;39546:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;39524:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;39722:5;39688:25;:31;39714:4;39688:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39779:5;39745:40;;39773:4;39745:40;;;;;;;;;;;;39441:352;;:::o;29981:763::-;30139:1;30121:20;;:6;:20;;;30113:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30223:1;30202:23;;:9;:23;;;30194:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30278:47;30299:6;30307:9;30318:6;30278:20;:47::i;:::-;30338:21;30362:9;:17;30372:6;30362:17;;;;;;;;;;;;;;;;30338:41;;30415:6;30398:13;:23;;30390:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30536:6;30520:13;:22;30500:9;:17;30510:6;30500:17;;;;;;;;;;;;;;;:42;;;;30588:6;30564:9;:20;30574:9;30564:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;30620:1;30611:6;:10;30607:71;;;30658:9;30641:35;;30650:6;30641:35;;;30669:6;30641:35;;;;;;:::i;:::-;;;;;;;;30607:71;30690:46;30710:6;30718:9;30729:6;30690:19;:46::i;:::-;30102:642;29981:763;;;:::o;44024:362::-;36221:4;36210:8;;:15;;;;;;;;;;;;;;;;;;44098:22:::1;44123:21;44098:46;;44155:24;44172:6;44155:16;:24::i;:::-;44190:18;44211:41;44237:14;44211:21;:25;;:41;;;;:::i;:::-;44190:62;;44275:7;44296:9;;;;;;;;;;;44288:23;;44319:10;44288:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44274:60;;;44352:2;44344:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;44087:299;;;36259:5:::0;36248:8;;:16;;;;;;;;;;;;;;;;;;44024:362;:::o;12009:98::-;12067:7;12098:1;12094;:5;;;;:::i;:::-;12087:12;;12009:98;;;;:::o;12408:::-;12466:7;12497:1;12493;:5;;;;:::i;:::-;12486:12;;12408:98;;;;:::o;11652:::-;11710:7;11741:1;11737;:5;;;;:::i;:::-;11730:12;;11652:98;;;;:::o;33772:125::-;;;;:::o;34501:124::-;;;;:::o;44399:591::-;44525:21;44563:1;44549:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44525:40;;44594:4;44576;44581:1;44576:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44620:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44610:4;44615:1;44610:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44655:62;44672:4;44687:15;;;;;;;;;;;44705:11;44655:8;:62::i;:::-;44756:15;;;;;;;;;;;:66;;;44837:11;44863:1;44907:4;44934;44954:15;44756:226;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44454:536;44399:591;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:152::-;3868:9;3901:37;3932:5;3901:37;:::i;:::-;3888:50;;3792:152;;;:::o;3950:183::-;4063:63;4120:5;4063:63;:::i;:::-;4058:3;4051:76;3950:183;;:::o;4139:274::-;4258:4;4296:2;4285:9;4281:18;4273:26;;4309:97;4403:1;4392:9;4388:17;4379:6;4309:97;:::i;:::-;4139:274;;;;:::o;4419:118::-;4506:24;4524:5;4506:24;:::i;:::-;4501:3;4494:37;4419:118;;:::o;4543:222::-;4636:4;4674:2;4663:9;4659:18;4651:26;;4687:71;4755:1;4744:9;4740:17;4731:6;4687:71;:::i;:::-;4543:222;;;;:::o;4771:329::-;4830:6;4879:2;4867:9;4858:7;4854:23;4850:32;4847:119;;;4885:79;;:::i;:::-;4847:119;5005:1;5030:53;5075:7;5066:6;5055:9;5051:22;5030:53;:::i;:::-;5020:63;;4976:117;4771:329;;;;:::o;5106:619::-;5183:6;5191;5199;5248:2;5236:9;5227:7;5223:23;5219:32;5216:119;;;5254:79;;:::i;:::-;5216:119;5374:1;5399:53;5444:7;5435:6;5424:9;5420:22;5399:53;:::i;:::-;5389:63;;5345:117;5501:2;5527:53;5572:7;5563:6;5552:9;5548:22;5527:53;:::i;:::-;5517:63;;5472:118;5629:2;5655:53;5700:7;5691:6;5680:9;5676:22;5655:53;:::i;:::-;5645:63;;5600:118;5106:619;;;;;:::o;5731:89::-;5767:7;5807:6;5800:5;5796:18;5785:29;;5731:89;;;:::o;5826:115::-;5911:23;5928:5;5911:23;:::i;:::-;5906:3;5899:36;5826:115;;:::o;5947:218::-;6038:4;6076:2;6065:9;6061:18;6053:26;;6089:69;6155:1;6144:9;6140:17;6131:6;6089:69;:::i;:::-;5947:218;;;;:::o;6171:86::-;6206:7;6246:4;6239:5;6235:16;6224:27;;6171:86;;;:::o;6263:112::-;6346:22;6362:5;6346:22;:::i;:::-;6341:3;6334:35;6263:112;;:::o;6381:214::-;6470:4;6508:2;6497:9;6493:18;6485:26;;6521:67;6585:1;6574:9;6570:17;6561:6;6521:67;:::i;:::-;6381:214;;;;:::o;6601:120::-;6673:23;6690:5;6673:23;:::i;:::-;6666:5;6663:34;6653:62;;6711:1;6708;6701:12;6653:62;6601:120;:::o;6727:137::-;6772:5;6810:6;6797:20;6788:29;;6826:32;6852:5;6826:32;:::i;:::-;6727:137;;;;:::o;6870:327::-;6928:6;6977:2;6965:9;6956:7;6952:23;6948:32;6945:119;;;6983:79;;:::i;:::-;6945:119;7103:1;7128:52;7172:7;7163:6;7152:9;7148:22;7128:52;:::i;:::-;7118:62;;7074:116;6870:327;;;;:::o;7203:118::-;7290:24;7308:5;7290:24;:::i;:::-;7285:3;7278:37;7203:118;;:::o;7327:222::-;7420:4;7458:2;7447:9;7443:18;7435:26;;7471:71;7539:1;7528:9;7524:17;7515:6;7471:71;:::i;:::-;7327:222;;;;:::o;7555:329::-;7614:6;7663:2;7651:9;7642:7;7638:23;7634:32;7631:119;;;7669:79;;:::i;:::-;7631:119;7789:1;7814:53;7859:7;7850:6;7839:9;7835:22;7814:53;:::i;:::-;7804:63;;7760:117;7555:329;;;;:::o;7890:116::-;7960:21;7975:5;7960:21;:::i;:::-;7953:5;7950:32;7940:60;;7996:1;7993;7986:12;7940:60;7890:116;:::o;8012:133::-;8055:5;8093:6;8080:20;8071:29;;8109:30;8133:5;8109:30;:::i;:::-;8012:133;;;;:::o;8151:468::-;8216:6;8224;8273:2;8261:9;8252:7;8248:23;8244:32;8241:119;;;8279:79;;:::i;:::-;8241:119;8399:1;8424:53;8469:7;8460:6;8449:9;8445:22;8424:53;:::i;:::-;8414:63;;8370:117;8526:2;8552:50;8594:7;8585:6;8574:9;8570:22;8552:50;:::i;:::-;8542:60;;8497:115;8151:468;;;;;:::o;8625:474::-;8693:6;8701;8750:2;8738:9;8729:7;8725:23;8721:32;8718:119;;;8756:79;;:::i;:::-;8718:119;8876:1;8901:53;8946:7;8937:6;8926:9;8922:22;8901:53;:::i;:::-;8891:63;;8847:117;9003:2;9029:53;9074:7;9065:6;9054:9;9050:22;9029:53;:::i;:::-;9019:63;;8974:118;8625:474;;;;;:::o;9105:180::-;9153:77;9150:1;9143:88;9250:4;9247:1;9240:15;9274:4;9271:1;9264:15;9291:320;9335:6;9372:1;9366:4;9362:12;9352:22;;9419:1;9413:4;9409:12;9440:18;9430:81;;9496:4;9488:6;9484:17;9474:27;;9430:81;9558:2;9550:6;9547:14;9527:18;9524:38;9521:84;;9577:18;;:::i;:::-;9521:84;9342:269;9291:320;;;:::o;9617:182::-;9757:34;9753:1;9745:6;9741:14;9734:58;9617:182;:::o;9805:366::-;9947:3;9968:67;10032:2;10027:3;9968:67;:::i;:::-;9961:74;;10044:93;10133:3;10044:93;:::i;:::-;10162:2;10157:3;10153:12;10146:19;;9805:366;;;:::o;10177:419::-;10343:4;10381:2;10370:9;10366:18;10358:26;;10430:9;10424:4;10420:20;10416:1;10405:9;10401:17;10394:47;10458:131;10584:4;10458:131;:::i;:::-;10450:139;;10177:419;;;:::o;10602:223::-;10742:34;10738:1;10730:6;10726:14;10719:58;10811:6;10806:2;10798:6;10794:15;10787:31;10602:223;:::o;10831:366::-;10973:3;10994:67;11058:2;11053:3;10994:67;:::i;:::-;10987:74;;11070:93;11159:3;11070:93;:::i;:::-;11188:2;11183:3;11179:12;11172:19;;10831:366;;;:::o;11203:419::-;11369:4;11407:2;11396:9;11392:18;11384:26;;11456:9;11450:4;11446:20;11442:1;11431:9;11427:17;11420:47;11484:131;11610:4;11484:131;:::i;:::-;11476:139;;11203:419;;;:::o;11628:227::-;11768:34;11764:1;11756:6;11752:14;11745:58;11837:10;11832:2;11824:6;11820:15;11813:35;11628:227;:::o;11861:366::-;12003:3;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12100:93;12189:3;12100:93;:::i;:::-;12218:2;12213:3;12209:12;12202:19;;11861:366;;;:::o;12233:419::-;12399:4;12437:2;12426:9;12422:18;12414:26;;12486:9;12480:4;12476:20;12472:1;12461:9;12457:17;12450:47;12514:131;12640:4;12514:131;:::i;:::-;12506:139;;12233:419;;;:::o;12658:180::-;12706:77;12703:1;12696:88;12803:4;12800:1;12793:15;12827:4;12824:1;12817:15;12844:191;12884:3;12903:20;12921:1;12903:20;:::i;:::-;12898:25;;12937:20;12955:1;12937:20;:::i;:::-;12932:25;;12980:1;12977;12973:9;12966:16;;13001:3;12998:1;12995:10;12992:36;;;13008:18;;:::i;:::-;12992:36;12844:191;;;;:::o;13041:176::-;13181:28;13177:1;13169:6;13165:14;13158:52;13041:176;:::o;13223:366::-;13365:3;13386:67;13450:2;13445:3;13386:67;:::i;:::-;13379:74;;13462:93;13551:3;13462:93;:::i;:::-;13580:2;13575:3;13571:12;13564:19;;13223:366;;;:::o;13595:419::-;13761:4;13799:2;13788:9;13784:18;13776:26;;13848:9;13842:4;13838:20;13834:1;13823:9;13819:17;13812:47;13876:131;14002:4;13876:131;:::i;:::-;13868:139;;13595:419;;;:::o;14020:221::-;14160:34;14156:1;14148:6;14144:14;14137:58;14229:4;14224:2;14216:6;14212:15;14205:29;14020:221;:::o;14247:366::-;14389:3;14410:67;14474:2;14469:3;14410:67;:::i;:::-;14403:74;;14486:93;14575:3;14486:93;:::i;:::-;14604:2;14599:3;14595:12;14588:19;;14247:366;;;:::o;14619:419::-;14785:4;14823:2;14812:9;14808:18;14800:26;;14872:9;14866:4;14862:20;14858:1;14847:9;14843:17;14836:47;14900:131;15026:4;14900:131;:::i;:::-;14892:139;;14619:419;;;:::o;15044:348::-;15084:7;15107:20;15125:1;15107:20;:::i;:::-;15102:25;;15141:20;15159:1;15141:20;:::i;:::-;15136:25;;15329:1;15261:66;15257:74;15254:1;15251:81;15246:1;15239:9;15232:17;15228:105;15225:131;;;15336:18;;:::i;:::-;15225:131;15384:1;15381;15377:9;15366:20;;15044:348;;;;:::o;15398:296::-;15538:34;15534:1;15526:6;15522:14;15515:58;15607:34;15602:2;15594:6;15590:15;15583:59;15676:10;15671:2;15663:6;15659:15;15652:35;15398:296;:::o;15700:366::-;15842:3;15863:67;15927:2;15922:3;15863:67;:::i;:::-;15856:74;;15939:93;16028:3;15939:93;:::i;:::-;16057:2;16052:3;16048:12;16041:19;;15700:366;;;:::o;16072:419::-;16238:4;16276:2;16265:9;16261:18;16253:26;;16325:9;16319:4;16315:20;16311:1;16300:9;16296:17;16289:47;16353:131;16479:4;16353:131;:::i;:::-;16345:139;;16072:419;;;:::o;16497:224::-;16637:34;16633:1;16625:6;16621:14;16614:58;16706:7;16701:2;16693:6;16689:15;16682:32;16497:224;:::o;16727:366::-;16869:3;16890:67;16954:2;16949:3;16890:67;:::i;:::-;16883:74;;16966:93;17055:3;16966:93;:::i;:::-;17084:2;17079:3;17075:12;17068:19;;16727:366;;;:::o;17099:419::-;17265:4;17303:2;17292:9;17288:18;17280:26;;17352:9;17346:4;17342:20;17338:1;17327:9;17323:17;17316:47;17380:131;17506:4;17380:131;:::i;:::-;17372:139;;17099:419;;;:::o;17524:236::-;17664:34;17660:1;17652:6;17648:14;17641:58;17733:19;17728:2;17720:6;17716:15;17709:44;17524:236;:::o;17766:366::-;17908:3;17929:67;17993:2;17988:3;17929:67;:::i;:::-;17922:74;;18005:93;18094:3;18005:93;:::i;:::-;18123:2;18118:3;18114:12;18107:19;;17766:366;;;:::o;18138:419::-;18304:4;18342:2;18331:9;18327:18;18319:26;;18391:9;18385:4;18381:20;18377:1;18366:9;18362:17;18355:47;18419:131;18545:4;18419:131;:::i;:::-;18411:139;;18138:419;;;:::o;18563:229::-;18703:34;18699:1;18691:6;18687:14;18680:58;18772:12;18767:2;18759:6;18755:15;18748:37;18563:229;:::o;18798:366::-;18940:3;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19037:93;19126:3;19037:93;:::i;:::-;19155:2;19150:3;19146:12;19139:19;;18798:366;;;:::o;19170:419::-;19336:4;19374:2;19363:9;19359:18;19351:26;;19423:9;19417:4;19413:20;19409:1;19398:9;19394:17;19387:47;19451:131;19577:4;19451:131;:::i;:::-;19443:139;;19170:419;;;:::o;19595:143::-;19652:5;19683:6;19677:13;19668:22;;19699:33;19726:5;19699:33;:::i;:::-;19595:143;;;;:::o;19744:351::-;19814:6;19863:2;19851:9;19842:7;19838:23;19834:32;19831:119;;;19869:79;;:::i;:::-;19831:119;19989:1;20014:64;20070:7;20061:6;20050:9;20046:22;20014:64;:::i;:::-;20004:74;;19960:128;19744:351;;;;:::o;20101:332::-;20222:4;20260:2;20249:9;20245:18;20237:26;;20273:71;20341:1;20330:9;20326:17;20317:6;20273:71;:::i;:::-;20354:72;20422:2;20411:9;20407:18;20398:6;20354:72;:::i;:::-;20101:332;;;;;:::o;20439:176::-;20579:28;20575:1;20567:6;20563:14;20556:52;20439:176;:::o;20621:366::-;20763:3;20784:67;20848:2;20843:3;20784:67;:::i;:::-;20777:74;;20860:93;20949:3;20860:93;:::i;:::-;20978:2;20973:3;20969:12;20962:19;;20621:366;;;:::o;20993:419::-;21159:4;21197:2;21186:9;21182:18;21174:26;;21246:9;21240:4;21236:20;21232:1;21221:9;21217:17;21210:47;21274:131;21400:4;21274:131;:::i;:::-;21266:139;;20993:419;;;:::o;21418:225::-;21558:34;21554:1;21546:6;21542:14;21535:58;21627:8;21622:2;21614:6;21610:15;21603:33;21418:225;:::o;21649:366::-;21791:3;21812:67;21876:2;21871:3;21812:67;:::i;:::-;21805:74;;21888:93;21977:3;21888:93;:::i;:::-;22006:2;22001:3;21997:12;21990:19;;21649:366;;;:::o;22021:419::-;22187:4;22225:2;22214:9;22210:18;22202:26;;22274:9;22268:4;22264:20;22260:1;22249:9;22245:17;22238:47;22302:131;22428:4;22302:131;:::i;:::-;22294:139;;22021:419;;;:::o;22446:157::-;22586:9;22582:1;22574:6;22570:14;22563:33;22446:157;:::o;22609:365::-;22751:3;22772:66;22836:1;22831:3;22772:66;:::i;:::-;22765:73;;22847:93;22936:3;22847:93;:::i;:::-;22965:2;22960:3;22956:12;22949:19;;22609:365;;;:::o;22980:419::-;23146:4;23184:2;23173:9;23169:18;23161:26;;23233:9;23227:4;23223:20;23219:1;23208:9;23204:17;23197:47;23261:131;23387:4;23261:131;:::i;:::-;23253:139;;22980:419;;;:::o;23405:143::-;23462:5;23493:6;23487:13;23478:22;;23509:33;23536:5;23509:33;:::i;:::-;23405:143;;;;:::o;23554:351::-;23624:6;23673:2;23661:9;23652:7;23648:23;23644:32;23641:119;;;23679:79;;:::i;:::-;23641:119;23799:1;23824:64;23880:7;23871:6;23860:9;23856:22;23824:64;:::i;:::-;23814:74;;23770:128;23554:351;;;;:::o;23911:332::-;24032:4;24070:2;24059:9;24055:18;24047:26;;24083:71;24151:1;24140:9;24136:17;24127:6;24083:71;:::i;:::-;24164:72;24232:2;24221:9;24217:18;24208:6;24164:72;:::i;:::-;23911:332;;;;;:::o;24249:137::-;24303:5;24334:6;24328:13;24319:22;;24350:30;24374:5;24350:30;:::i;:::-;24249:137;;;;:::o;24392:345::-;24459:6;24508:2;24496:9;24487:7;24483:23;24479:32;24476:119;;;24514:79;;:::i;:::-;24476:119;24634:1;24659:61;24712:7;24703:6;24692:9;24688:22;24659:61;:::i;:::-;24649:71;;24605:125;24392:345;;;;:::o;24743:223::-;24883:34;24879:1;24871:6;24867:14;24860:58;24952:6;24947:2;24939:6;24935:15;24928:31;24743:223;:::o;24972:366::-;25114:3;25135:67;25199:2;25194:3;25135:67;:::i;:::-;25128:74;;25211:93;25300:3;25211:93;:::i;:::-;25329:2;25324:3;25320:12;25313:19;;24972:366;;;:::o;25344:419::-;25510:4;25548:2;25537:9;25533:18;25525:26;;25597:9;25591:4;25587:20;25583:1;25572:9;25568:17;25561:47;25625:131;25751:4;25625:131;:::i;:::-;25617:139;;25344:419;;;:::o;25769:221::-;25909:34;25905:1;25897:6;25893:14;25886:58;25978:4;25973:2;25965:6;25961:15;25954:29;25769:221;:::o;25996:366::-;26138:3;26159:67;26223:2;26218:3;26159:67;:::i;:::-;26152:74;;26235:93;26324:3;26235:93;:::i;:::-;26353:2;26348:3;26344:12;26337:19;;25996:366;;;:::o;26368:419::-;26534:4;26572:2;26561:9;26557:18;26549:26;;26621:9;26615:4;26611:20;26607:1;26596:9;26592:17;26585:47;26649:131;26775:4;26649:131;:::i;:::-;26641:139;;26368:419;;;:::o;26793:224::-;26933:34;26929:1;26921:6;26917:14;26910:58;27002:7;26997:2;26989:6;26985:15;26978:32;26793:224;:::o;27023:366::-;27165:3;27186:67;27250:2;27245:3;27186:67;:::i;:::-;27179:74;;27262:93;27351:3;27262:93;:::i;:::-;27380:2;27375:3;27371:12;27364:19;;27023:366;;;:::o;27395:419::-;27561:4;27599:2;27588:9;27584:18;27576:26;;27648:9;27642:4;27638:20;27634:1;27623:9;27619:17;27612:47;27676:131;27802:4;27676:131;:::i;:::-;27668:139;;27395:419;;;:::o;27820:222::-;27960:34;27956:1;27948:6;27944:14;27937:58;28029:5;28024:2;28016:6;28012:15;28005:30;27820:222;:::o;28048:366::-;28190:3;28211:67;28275:2;28270:3;28211:67;:::i;:::-;28204:74;;28287:93;28376:3;28287:93;:::i;:::-;28405:2;28400:3;28396:12;28389:19;;28048:366;;;:::o;28420:419::-;28586:4;28624:2;28613:9;28609:18;28601:26;;28673:9;28667:4;28663:20;28659:1;28648:9;28644:17;28637:47;28701:131;28827:4;28701:131;:::i;:::-;28693:139;;28420:419;;;:::o;28845:173::-;28985:25;28981:1;28973:6;28969:14;28962:49;28845:173;:::o;29024:366::-;29166:3;29187:67;29251:2;29246:3;29187:67;:::i;:::-;29180:74;;29263:93;29352:3;29263:93;:::i;:::-;29381:2;29376:3;29372:12;29365:19;;29024:366;;;:::o;29396:419::-;29562:4;29600:2;29589:9;29585:18;29577:26;;29649:9;29643:4;29639:20;29635:1;29624:9;29620:17;29613:47;29677:131;29803:4;29677:131;:::i;:::-;29669:139;;29396:419;;;:::o;29821:221::-;29961:34;29957:1;29949:6;29945:14;29938:58;30030:4;30025:2;30017:6;30013:15;30006:29;29821:221;:::o;30048:366::-;30190:3;30211:67;30275:2;30270:3;30211:67;:::i;:::-;30204:74;;30287:93;30376:3;30287:93;:::i;:::-;30405:2;30400:3;30396:12;30389:19;;30048:366;;;:::o;30420:419::-;30586:4;30624:2;30613:9;30609:18;30601:26;;30673:9;30667:4;30663:20;30659:1;30648:9;30644:17;30637:47;30701:131;30827:4;30701:131;:::i;:::-;30693:139;;30420:419;;;:::o;30845:220::-;30985:34;30981:1;30973:6;30969:14;30962:58;31054:3;31049:2;31041:6;31037:15;31030:28;30845:220;:::o;31071:366::-;31213:3;31234:67;31298:2;31293:3;31234:67;:::i;:::-;31227:74;;31310:93;31399:3;31310:93;:::i;:::-;31428:2;31423:3;31419:12;31412:19;;31071:366;;;:::o;31443:419::-;31609:4;31647:2;31636:9;31632:18;31624:26;;31696:9;31690:4;31686:20;31682:1;31671:9;31667:17;31660:47;31724:131;31850:4;31724:131;:::i;:::-;31716:139;;31443:419;;;:::o;31868:182::-;32008:34;32004:1;31996:6;31992:14;31985:58;31868:182;:::o;32056:366::-;32198:3;32219:67;32283:2;32278:3;32219:67;:::i;:::-;32212:74;;32295:93;32384:3;32295:93;:::i;:::-;32413:2;32408:3;32404:12;32397:19;;32056:366;;;:::o;32428:419::-;32594:4;32632:2;32621:9;32617:18;32609:26;;32681:9;32675:4;32671:20;32667:1;32656:9;32652:17;32645:47;32709:131;32835:4;32709:131;:::i;:::-;32701:139;;32428:419;;;:::o;32853:250::-;32993:34;32989:1;32981:6;32977:14;32970:58;33062:33;33057:2;33049:6;33045:15;33038:58;32853:250;:::o;33109:366::-;33251:3;33272:67;33336:2;33331:3;33272:67;:::i;:::-;33265:74;;33348:93;33437:3;33348:93;:::i;:::-;33466:2;33461:3;33457:12;33450:19;;33109:366;;;:::o;33481:419::-;33647:4;33685:2;33674:9;33670:18;33662:26;;33734:9;33728:4;33724:20;33720:1;33709:9;33705:17;33698:47;33762:131;33888:4;33762:131;:::i;:::-;33754:139;;33481:419;;;:::o;33906:224::-;34046:34;34042:1;34034:6;34030:14;34023:58;34115:7;34110:2;34102:6;34098:15;34091:32;33906:224;:::o;34136:366::-;34278:3;34299:67;34363:2;34358:3;34299:67;:::i;:::-;34292:74;;34375:93;34464:3;34375:93;:::i;:::-;34493:2;34488:3;34484:12;34477:19;;34136:366;;;:::o;34508:419::-;34674:4;34712:2;34701:9;34697:18;34689:26;;34761:9;34755:4;34751:20;34747:1;34736:9;34732:17;34725:47;34789:131;34915:4;34789:131;:::i;:::-;34781:139;;34508:419;;;:::o;34933:222::-;35073:34;35069:1;35061:6;35057:14;35050:58;35142:5;35137:2;35129:6;35125:15;35118:30;34933:222;:::o;35161:366::-;35303:3;35324:67;35388:2;35383:3;35324:67;:::i;:::-;35317:74;;35400:93;35489:3;35400:93;:::i;:::-;35518:2;35513:3;35509:12;35502:19;;35161:366;;;:::o;35533:419::-;35699:4;35737:2;35726:9;35722:18;35714:26;;35786:9;35780:4;35776:20;35772:1;35761:9;35757:17;35750:47;35814:131;35940:4;35814:131;:::i;:::-;35806:139;;35533:419;;;:::o;35958:225::-;36098:34;36094:1;36086:6;36082:14;36075:58;36167:8;36162:2;36154:6;36150:15;36143:33;35958:225;:::o;36189:366::-;36331:3;36352:67;36416:2;36411:3;36352:67;:::i;:::-;36345:74;;36428:93;36517:3;36428:93;:::i;:::-;36546:2;36541:3;36537:12;36530:19;;36189:366;;;:::o;36561:419::-;36727:4;36765:2;36754:9;36750:18;36742:26;;36814:9;36808:4;36804:20;36800:1;36789:9;36785:17;36778:47;36842:131;36968:4;36842:131;:::i;:::-;36834:139;;36561:419;;;:::o;36986:147::-;37087:11;37124:3;37109:18;;36986:147;;;;:::o;37139:114::-;;:::o;37259:398::-;37418:3;37439:83;37520:1;37515:3;37439:83;:::i;:::-;37432:90;;37531:93;37620:3;37531:93;:::i;:::-;37649:1;37644:3;37640:11;37633:18;;37259:398;;;:::o;37663:379::-;37847:3;37869:147;38012:3;37869:147;:::i;:::-;37862:154;;38033:3;38026:10;;37663:379;;;:::o;38048:168::-;38188:20;38184:1;38176:6;38172:14;38165:44;38048:168;:::o;38222:366::-;38364:3;38385:67;38449:2;38444:3;38385:67;:::i;:::-;38378:74;;38461:93;38550:3;38461:93;:::i;:::-;38579:2;38574:3;38570:12;38563:19;;38222:366;;;:::o;38594:419::-;38760:4;38798:2;38787:9;38783:18;38775:26;;38847:9;38841:4;38837:20;38833:1;38822:9;38818:17;38811:47;38875:131;39001:4;38875:131;:::i;:::-;38867:139;;38594:419;;;:::o;39019:180::-;39067:77;39064:1;39057:88;39164:4;39161:1;39154:15;39188:4;39185:1;39178:15;39205:185;39245:1;39262:20;39280:1;39262:20;:::i;:::-;39257:25;;39296:20;39314:1;39296:20;:::i;:::-;39291:25;;39335:1;39325:35;;39340:18;;:::i;:::-;39325:35;39382:1;39379;39375:9;39370:14;;39205:185;;;;:::o;39396:194::-;39436:4;39456:20;39474:1;39456:20;:::i;:::-;39451:25;;39490:20;39508:1;39490:20;:::i;:::-;39485:25;;39534:1;39531;39527:9;39519:17;;39558:1;39552:4;39549:11;39546:37;;;39563:18;;:::i;:::-;39546:37;39396:194;;;;:::o;39596:180::-;39644:77;39641:1;39634:88;39741:4;39738:1;39731:15;39765:4;39762:1;39755:15;39782:180;39830:77;39827:1;39820:88;39927:4;39924:1;39917:15;39951:4;39948:1;39941:15;39968:85;40013:7;40042:5;40031:16;;39968:85;;;:::o;40059:158::-;40117:9;40150:61;40168:42;40177:32;40203:5;40177:32;:::i;:::-;40168:42;:::i;:::-;40150:61;:::i;:::-;40137:74;;40059:158;;;:::o;40223:147::-;40318:45;40357:5;40318:45;:::i;:::-;40313:3;40306:58;40223:147;;:::o;40376:114::-;40443:6;40477:5;40471:12;40461:22;;40376:114;;;:::o;40496:184::-;40595:11;40629:6;40624:3;40617:19;40669:4;40664:3;40660:14;40645:29;;40496:184;;;;:::o;40686:132::-;40753:4;40776:3;40768:11;;40806:4;40801:3;40797:14;40789:22;;40686:132;;;:::o;40824:108::-;40901:24;40919:5;40901:24;:::i;:::-;40896:3;40889:37;40824:108;;:::o;40938:179::-;41007:10;41028:46;41070:3;41062:6;41028:46;:::i;:::-;41106:4;41101:3;41097:14;41083:28;;40938:179;;;;:::o;41123:113::-;41193:4;41225;41220:3;41216:14;41208:22;;41123:113;;;:::o;41272:732::-;41391:3;41420:54;41468:5;41420:54;:::i;:::-;41490:86;41569:6;41564:3;41490:86;:::i;:::-;41483:93;;41600:56;41650:5;41600:56;:::i;:::-;41679:7;41710:1;41695:284;41720:6;41717:1;41714:13;41695:284;;;41796:6;41790:13;41823:63;41882:3;41867:13;41823:63;:::i;:::-;41816:70;;41909:60;41962:6;41909:60;:::i;:::-;41899:70;;41755:224;41742:1;41739;41735:9;41730:14;;41695:284;;;41699:14;41995:3;41988:10;;41396:608;;;41272:732;;;;:::o;42010:831::-;42273:4;42311:3;42300:9;42296:19;42288:27;;42325:71;42393:1;42382:9;42378:17;42369:6;42325:71;:::i;:::-;42406:80;42482:2;42471:9;42467:18;42458:6;42406:80;:::i;:::-;42533:9;42527:4;42523:20;42518:2;42507:9;42503:18;42496:48;42561:108;42664:4;42655:6;42561:108;:::i;:::-;42553:116;;42679:72;42747:2;42736:9;42732:18;42723:6;42679:72;:::i;:::-;42761:73;42829:3;42818:9;42814:19;42805:6;42761:73;:::i;:::-;42010:831;;;;;;;;:::o
Swarm Source
ipfs://c25589562f8eed06ff8ed6c1bedc62e66b7fb0e07863b1e3f28c86cc041816d2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.