Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000 FUNDED
Holders
140
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,547 FUNDEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Funded
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-05 */ // ███████╗██╗░░░██╗███╗░░██╗██████╗░███████╗██████╗░ // ██╔════╝██║░░░██║████╗░██║██╔══██╗██╔════╝██╔══██╗ // █████╗░░██║░░░██║██╔██╗██║██║░░██║█████╗░░██║░░██║ // ██╔══╝░░██║░░░██║██║╚████║██║░░██║██╔══╝░░██║░░██║ // ██║░░░░░╚██████╔╝██║░╚███║██████╔╝███████╗██████╔╝ // ╚═╝░░░░░░╚═════╝░╚═╝░░╚══╝╚═════╝░╚══════╝╚═════╝░ // The worlds first Low Cap Prop Trading Firm. We give on-chain traders more to trade with. // // https://fundedeth.com // https://t.me/fundedportal // https://discord.gg/fundedeth // https://twitter.com/fundedcoineth // // SPDX-License-Identifier: MIT pragma solidity 0.8.17; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (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; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @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); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // 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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Funded is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public revShareWallet; address public fundedAccountWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 private buyRevShareFee; uint256 private buyFundedAccountFee; uint256 public sellTotalFees; uint256 private sellMarketingFee; uint256 private sellRevShareFee; uint256 private sellFundedAccountFee; uint256 private tokensForMarketing; uint256 private tokensForRevShare; uint256 private tokensForFundedAccount; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event revShareWalletUpdated( address indexed newWallet, address indexed oldWallet ); event fundedAccountWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Funded", "FUNDED") { uint256 totalSupply = 1_000_000 ether; address disperse = 0xD152f549545093347A162Dce210e7293f1452150; uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); maxTransactionAmount = totalSupply; maxWallet = totalSupply; swapTokensAtAmount = (totalSupply * 5) / 10000; marketingWallet = address(0xE4862d399294709dd075586206213250b6e3Ea74); revShareWallet = address(0x804b9d0037d25F72b19950Ea2141A3Fd5e979fAD); fundedAccountWallet = address( 0x013003f9BCb20aC57d04DBb56AFCE34F7d70571b ); buyMarketingFee = 4; buyRevShareFee = 4; buyFundedAccountFee = 4; buyTotalFees = buyMarketingFee + buyRevShareFee + buyFundedAccountFee; sellMarketingFee = 4; sellRevShareFee = 4; sellFundedAccountFee = 4; sellTotalFees = sellMarketingFee + sellRevShareFee + sellFundedAccountFee; previousFee = sellTotalFees; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromFees(revShareWallet, true); excludeFromFees(fundedAccountWallet, true); excludeFromFees(disperse, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(revShareWallet, true); excludeFromMaxTransaction(fundedAccountWallet, true); excludeFromMaxTransaction(disperse, true); _mint(address(this), 155_375 ether); _mint(owner(), 844_625 ether); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function enableTrading() external onlyOwner { require(!tradingActive, "Trading already active."); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), 106_376 ether, 0, 0, owner(), block.timestamp ); maxTransactionAmount = (totalSupply() * 25) / 10000; maxWallet = (totalSupply() * 25) / 10000; tokensForMarketing = 16_332 ether; tokensForRevShare = 16_332 ether; tokensForFundedAccount = 16_332 ether; tradingActive = true; swapEnabled = true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _marketingFee, uint256 _revShareFee, uint256 _fundedAccountFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyRevShareFee = _revShareFee; buyFundedAccountFee = _fundedAccountFee; buyTotalFees = buyMarketingFee + buyRevShareFee + buyFundedAccountFee; require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _revShareFee, uint256 _fundedAccountFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellRevShareFee = _revShareFee; sellFundedAccountFee = _fundedAccountFee; sellTotalFees = sellMarketingFee + sellRevShareFee + sellFundedAccountFee; previousFee = sellTotalFees; require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less"); } function updateMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "ERC20: Address 0"); address oldWallet = marketingWallet; marketingWallet = _marketingWallet; emit marketingWalletUpdated(marketingWallet, oldWallet); } function updateRevShareWallet(address _revShareWallet) external onlyOwner { require(_revShareWallet != address(0), "ERC20: Address 0"); address oldWallet = revShareWallet; revShareWallet = _revShareWallet; emit revShareWalletUpdated(revShareWallet, oldWallet); } function updateFundedAccountWallet(address _fundedAccountWallet) external onlyOwner { require(_fundedAccountWallet != address(0), "ERC20: Address 0"); address oldWallet = fundedAccountWallet; fundedAccountWallet = _fundedAccountWallet; emit fundedAccountWalletUpdated(fundedAccountWallet, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklist(address[] calldata accounts, bool value) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (accounts[i] != uniswapV2Pair) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) ) blacklisted[accounts[i]] = value; } } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function withdrawStuckTokens(address tkn) public onlyOwner { require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from], "ERC20: bot detected"); require(!blacklisted[msg.sender], "ERC20: bot detected"); require(!blacklisted[tx.origin], "ERC20: bot detected"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForFundedAccount += (fees * sellFundedAccountFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; tokensForRevShare += (fees * sellRevShareFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForFundedAccount += (fees * buyFundedAccountFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; tokensForRevShare += (fees * buyRevShareFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { 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, path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForFundedAccount + tokensForMarketing + tokensForRevShare; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance; uint256 ethForRevShare = ethBalance.mul(tokensForRevShare).div( totalTokensToSwap ); uint256 ethForFundedAccount = ethBalance .mul(tokensForFundedAccount) .div(totalTokensToSwap); tokensForMarketing = 0; tokensForRevShare = 0; tokensForFundedAccount = 0; (success, ) = address(fundedAccountWallet).call{ value: ethForFundedAccount }(""); (success, ) = address(revShareWallet).call{value: ethForRevShare}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"fundedAccountWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundedAccountWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"revShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_fundedAccountFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundedAccountWallet","type":"address"}],"name":"updateFundedAccountWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_revShareWallet","type":"address"}],"name":"updateRevShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_revShareFee","type":"uint256"},{"internalType":"uint256","name":"_fundedAccountFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600d805461ffff191690553480156200001c57600080fd5b5060405180604001604052806006815260200165119d5b99195960d21b8152506040518060400160405280600681526020016511955391115160d21b81525081600390816200006c919062000736565b5060046200007b828262000736565b50505062000098620000926200034c60201b60201c565b62000350565b737a250d5630b4cf539739df2c5dacb4c659f2488d608081905269d3c21bcecceda10000009073d152f549545093347a162dce210e7293f145215090620000e4903090600019620003a2565b600a829055600c829055612710620000fe83600562000818565b6200010a919062000838565b600b55600780546001600160a01b031990811673e4862d399294709dd075586206213250b6e3ea741790915560088054821673804b9d0037d25f72b19950ea2141a3fd5e979fad1790556009805490911673013003f9bcb20ac57d04dbb56afce34f7d70571b17905560046010819055601181905560128190556200019081806200085b565b6200019c91906200085b565b600f556004601481905560158190556016819055620001bc81806200085b565b620001c891906200085b565b6013819055601a55620001ef620001e76005546001600160a01b031690565b6001620004ce565b620001fc306001620004ce565b6200020b61dead6001620004ce565b60075462000224906001600160a01b03166001620004ce565b6008546200023d906001600160a01b03166001620004ce565b60095462000256906001600160a01b03166001620004ce565b62000263816001620004ce565b620002826200027a6005546001600160a01b031690565b600162000537565b6200028f30600162000537565b6200029e61dead600162000537565b608051620002ae90600162000537565b600754620002c7906001600160a01b0316600162000537565b600854620002e0906001600160a01b0316600162000537565b600954620002f9906001600160a01b0316600162000537565b6200030681600162000537565b6200031c306920e6e547d7f7fe5c00006200056c565b62000344620003336005546001600160a01b031690565b69b2db3686f4f5a2a400006200056c565b505062000871565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166200040a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200046d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000401565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004d86200062f565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620005416200062f565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000401565b8060026000828254620005d891906200085b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200068b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000401565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006bd57607f821691505b602082108103620006de57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200068d57600081815260208120601f850160051c810160208610156200070d5750805b601f850160051c820191505b818110156200072e5782815560010162000719565b505050505050565b81516001600160401b0381111562000752576200075262000692565b6200076a81620007638454620006a8565b84620006e4565b602080601f831160018114620007a25760008415620007895750858301515b600019600386901b1c1916600185901b1785556200072e565b600085815260208120601f198616915b82811015620007d357888601518255948401946001909101908401620007b2565b5085821015620007f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000832576200083262000802565b92915050565b6000826200085657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000832576200083262000802565b608051612c8b620008c5600039600081816102d9015281816109e901528181610a7a01528181610bb201528181610c6101528181611173015281816125aa01528181612663015261269f0152612c8b6000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063c997eb8d116100b6578063dd62ed3e1161007a578063dd62ed3e1461072d578063e2f456051461074d578063f2fde38b14610763578063f5648a4f14610783578063f8b45b0514610798578063fe575a87146107ae57600080fd5b8063c997eb8d14610697578063cb963728146106b7578063d257b34f146106d7578063d2a20450146106f7578063d85ba0631461071757600080fd5b8063aacebbe311610108578063aacebbe3146105e7578063adee28ff14610607578063bbc0c74214610627578063c024666814610641578063c17b5b8c14610661578063c8c8ebe41461068157600080fd5b80638da5cb5b1461055457806395d89b41146105725780639618839914610587578063a457c2d7146105a7578063a9059cbb146105c757600080fd5b806349bd5a5e116101dd578063715018a6116101a1578063715018a6146104aa5780637571336a146104bf57806375f0a874146104df578063782c4e99146104ff5780638095d5641461051f5780638a8c523c1461053f57600080fd5b806349bd5a5e146103e65780634fbee193146104065780636a486a8e1461043f5780636ddd17131461045557806370a082311461047457600080fd5b806327c8f8351161022457806327c8f835146103525780632f0c6c8a14610368578063313ce5671461038857806339509351146103a457806342966c68146103c457600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806323b872dd1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107e7565b60405161028e9190612713565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004612776565b610879565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b506102b761034d3660046127a2565b610893565b34801561035e57600080fd5b506102fb61dead81565b34801561037457600080fd5b506009546102fb906001600160a01b031681565b34801561039457600080fd5b506040516012815260200161028e565b3480156103b057600080fd5b506102b76103bf366004612776565b6108b7565b3480156103d057600080fd5b506103e46103df3660046127e3565b6108d9565b005b3480156103f257600080fd5b506006546102fb906001600160a01b031681565b34801561041257600080fd5b506102b76104213660046127fc565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561044b57600080fd5b5061032460135481565b34801561046157600080fd5b50600d546102b790610100900460ff1681565b34801561048057600080fd5b5061032461048f3660046127fc565b6001600160a01b031660009081526020819052604090205490565b3480156104b657600080fd5b506103e46108e6565b3480156104cb57600080fd5b506103e46104da366004612827565b6108fa565b3480156104eb57600080fd5b506007546102fb906001600160a01b031681565b34801561050b57600080fd5b506008546102fb906001600160a01b031681565b34801561052b57600080fd5b506103e461053a366004612860565b61092d565b34801561054b57600080fd5b506103e461098c565b34801561056057600080fd5b506005546001600160a01b03166102fb565b34801561057e57600080fd5b50610281610db1565b34801561059357600080fd5b506103e46105a236600461288c565b610dc0565b3480156105b357600080fd5b506102b76105c2366004612776565b610ed5565b3480156105d357600080fd5b506102b76105e2366004612776565b610f50565b3480156105f357600080fd5b506103e46106023660046127fc565b610f5e565b34801561061357600080fd5b506103e46106223660046127fc565b610fdd565b34801561063357600080fd5b50600d546102b79060ff1681565b34801561064d57600080fd5b506103e461065c366004612827565b61105c565b34801561066d57600080fd5b506103e461067c366004612860565b6110c3565b34801561068d57600080fd5b50610324600a5481565b3480156106a357600080fd5b506103e46106b23660046128ae565b611119565b3480156106c357600080fd5b506103e46106d23660046127fc565b61127b565b3480156106e357600080fd5b506102b76106f23660046127e3565b611406565b34801561070357600080fd5b506103e46107123660046127fc565b611546565b34801561072357600080fd5b50610324600f5481565b34801561073957600080fd5b50610324610748366004612934565b6115c5565b34801561075957600080fd5b50610324600b5481565b34801561076f57600080fd5b506103e461077e3660046127fc565b6115f0565b34801561078f57600080fd5b506103e4611666565b3480156107a457600080fd5b50610324600c5481565b3480156107ba57600080fd5b506102b76107c93660046127fc565b6001600160a01b03166000908152600e602052604090205460ff1690565b6060600380546107f690612962565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612962565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000336108878185856116b0565b60019150505b92915050565b6000336108a18582856117d4565b6108ac858585611848565b506001949350505050565b6000336108878185856108ca83836115c5565b6108d491906129b2565b6116b0565b6108e3338261200b565b50565b6108ee61213d565b6108f86000612197565b565b61090261213d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b61093561213d565b6010839055601182905560128190558061094f83856129b2565b61095991906129b2565b600f819055600a10156109875760405162461bcd60e51b815260040161097e906129c5565b60405180910390fd5b505050565b61099461213d565b600d5460ff16156109e75760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e000000000000000000604482015260640161097e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a699190612a09565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afa9190612a09565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6b9190612a09565b600680546001600160a01b0319166001600160a01b03929092169182179055610b989030906000196116b0565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190612a26565b50600654610c48906001600160a01b031660016121e9565b600654610c5f906001600160a01b031660016108fa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730691686a78e4bcc09200000600080610cb06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610d18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d3d9190612a43565b505050612710610d4c60025490565b610d57906019612a71565b610d619190612a88565b600a55612710610d7060025490565b610d7b906019612a71565b610d859190612a88565b600c556903755c07cd5affb0000060178190556018819055601955600d805461ffff1916610101179055565b6060600480546107f690612962565b610dc861213d565b6103e8610dd460025490565b610ddf906005612a71565b610de99190612a88565b821015610e495760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b606482015260840161097e565b6103e8610e5560025490565b610e60906005612a71565b610e6a9190612a88565b811015610ecd5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b606482015260840161097e565b600c55600a55565b60003381610ee382866115c5565b905083811015610f435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161097e565b6108ac82868684036116b0565b600033610887818585611848565b610f6661213d565b6001600160a01b038116610f8c5760405162461bcd60e51b815260040161097e90612aaa565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610fe561213d565b6001600160a01b03811661100b5760405162461bcd60e51b815260040161097e90612aaa565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b61106461213d565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110cb61213d565b601483905560158290556016819055806110e583856129b2565b6110ef91906129b2565b6013819055601a819055600a10156109875760405162461bcd60e51b815260040161097e906129c5565b61112161213d565b60005b82811015611275576006546001600160a01b031684848381811061114a5761114a612ad4565b905060200201602081019061115f91906127fc565b6001600160a01b0316141580156111ce57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168484838181106111ad576111ad612ad4565b90506020020160208101906111c291906127fc565b6001600160a01b031614155b80156112095750308484838181106111e8576111e8612ad4565b90506020020160208101906111fd91906127fc565b6001600160a01b031614155b156112635781600e600086868581811061122557611225612ad4565b905060200201602081019061123a91906127fc565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061126d81612aea565b915050611124565b50505050565b61128361213d565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190612b03565b116113275760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161097e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113929190612b03565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109879190612a26565b600061141061213d565b620186a061141d60025490565b611428906001612a71565b6114329190612a88565b8210156114a75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161097e565b6103e86114b360025490565b6114be906005612a71565b6114c89190612a88565b82111561153d5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161097e565b50600b55600190565b61154e61213d565b6001600160a01b0381166115745760405162461bcd60e51b815260040161097e90612aaa565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f36c61f3e9a4b5dbee45cb23f23102551f986c7b30019019814aab7933d4f630390600090a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6115f861213d565b6001600160a01b03811661165d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097e565b6108e381612197565b61166e61213d565b604051600090339047908381818185875af1925050503d8060008114611275576040519150601f19603f3d011682016040523d82523d6000602084013e611275565b6001600160a01b0383166117125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161097e565b6001600160a01b0382166117735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161097e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006117e084846115c5565b90506000198114611275578181101561183b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161097e565b61127584848484036116b0565b6001600160a01b03831661186e5760405162461bcd60e51b815260040161097e90612b1c565b6001600160a01b0382166118945760405162461bcd60e51b815260040161097e90612b61565b6001600160a01b0383166000908152600e602052604090205460ff16156118cd5760405162461bcd60e51b815260040161097e90612ba4565b336000908152600e602052604090205460ff16156118fd5760405162461bcd60e51b815260040161097e90612ba4565b326000908152600e602052604090205460ff161561192d5760405162461bcd60e51b815260040161097e90612ba4565b80600003611941576109878383600061223d565b6005546001600160a01b0384811691161480159061196d57506005546001600160a01b03838116911614155b801561198157506001600160a01b03821615155b801561199857506001600160a01b03821661dead14155b80156119ae5750600654600160a01b900460ff16155b15611cd157600d5460ff16611a48576001600160a01b0383166000908152601b602052604090205460ff16806119fc57506001600160a01b0382166000908152601b602052604090205460ff165b611a485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161097e565b6001600160a01b0383166000908152601d602052604090205460ff168015611a8957506001600160a01b0382166000908152601c602052604090205460ff16155b15611b7f57600a54811115611b065760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161097e565b600c546001600160a01b038316600090815260208190526040902054611b2c90836129b2565b1115611b7a5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161097e565b611cd1565b6001600160a01b0382166000908152601d602052604090205460ff168015611bc057506001600160a01b0383166000908152601c602052604090205460ff16155b15611c3d57600a54811115611b7a5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161097e565b6001600160a01b0382166000908152601c602052604090205460ff16611cd157600c546001600160a01b038316600090815260208190526040902054611c8390836129b2565b1115611cd15760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161097e565b30600090815260208190526040902054600b5481108015908190611cfc5750600d54610100900460ff165b8015611d125750600654600160a01b900460ff16155b8015611d3757506001600160a01b0385166000908152601d602052604090205460ff16155b8015611d5c57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8157506001600160a01b0384166000908152601b602052604090205460ff16155b15611daf576006805460ff60a01b1916600160a01b179055611da1612367565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611dfd57506001600160a01b0385166000908152601b602052604090205460ff165b15611e06575060005b60008115611ff1576001600160a01b0386166000908152601d602052604090205460ff168015611e3857506000601354115b15611ef657611e5d6064611e576013548861253490919063ffffffff16565b90612547565b905060135460165482611e709190612a71565b611e7a9190612a88565b60196000828254611e8b91906129b2565b9091555050601354601454611ea09083612a71565b611eaa9190612a88565b60176000828254611ebb91906129b2565b9091555050601354601554611ed09083612a71565b611eda9190612a88565b60186000828254611eeb91906129b2565b90915550611fd39050565b6001600160a01b0387166000908152601d602052604090205460ff168015611f2057506000600f54115b15611fd357611f3f6064611e57600f548861253490919063ffffffff16565b9050600f5460125482611f529190612a71565b611f5c9190612a88565b60196000828254611f6d91906129b2565b9091555050600f54601054611f829083612a71565b611f8c9190612a88565b60176000828254611f9d91906129b2565b9091555050600f54601154611fb29083612a71565b611fbc9190612a88565b60186000828254611fcd91906129b2565b90915550505b8015611fe457611fe487308361223d565b611fee8186612bd1565b94505b611ffc87878761223d565b5050601a546013555050505050565b6001600160a01b03821661206b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161097e565b6001600160a01b038216600090815260208190526040902054818110156120df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161097e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161097e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122635760405162461bcd60e51b815260040161097e90612b1c565b6001600160a01b0382166122895760405162461bcd60e51b815260040161097e90612b61565b6001600160a01b038316600090815260208190526040902054818110156123015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161097e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611275565b306000908152602081905260408120549050600060185460175460195461238e91906129b2565b61239891906129b2565b905060008215806123a7575081155b156123b157505050565b600b546123bf906014612a71565b8311156123d757600b546123d4906014612a71565b92505b6123e083612553565b6000479050600061240084611e576018548561253490919063ffffffff16565b9050600061241d85611e576019548661253490919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d806000811461247a576040519150601f19603f3d011682016040523d82523d6000602084013e61247f565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612524576040519150601f19603f3d011682016040523d82523d6000602084013e612529565b606091505b505050505050505050565b60006125408284612a71565b9392505050565b60006125408284612a88565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258857612588612ad4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612606573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262a9190612a09565b8160018151811061263d5761263d612ad4565b60200260200101906001600160a01b031690816001600160a01b031681525050612688307f0000000000000000000000000000000000000000000000000000000000000000846116b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906126dd908590600090869030904290600401612be4565b600060405180830381600087803b1580156126f757600080fd5b505af115801561270b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561274057858101830151858201604001528201612724565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e357600080fd5b6000806040838503121561278957600080fd5b823561279481612761565b946020939093013593505050565b6000806000606084860312156127b757600080fd5b83356127c281612761565b925060208401356127d281612761565b929592945050506040919091013590565b6000602082840312156127f557600080fd5b5035919050565b60006020828403121561280e57600080fd5b813561254081612761565b80151581146108e357600080fd5b6000806040838503121561283a57600080fd5b823561284581612761565b9150602083013561285581612819565b809150509250929050565b60008060006060848603121561287557600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561289f57600080fd5b50508035926020909101359150565b6000806000604084860312156128c357600080fd5b833567ffffffffffffffff808211156128db57600080fd5b818601915086601f8301126128ef57600080fd5b8135818111156128fe57600080fd5b8760208260051b850101111561291357600080fd5b6020928301955093505084013561292981612819565b809150509250925092565b6000806040838503121561294757600080fd5b823561295281612761565b9150602083013561285581612761565b600181811c9082168061297657607f821691505b60208210810361299657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088d5761088d61299c565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612a1b57600080fd5b815161254081612761565b600060208284031215612a3857600080fd5b815161254081612819565b600080600060608486031215612a5857600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761088d5761088d61299c565b600082612aa557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201612afc57612afc61299c565b5060010190565b600060208284031215612b1557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561088d5761088d61299c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c345784516001600160a01b031683529383019391830191600101612c0f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220926ab878c8b983c06c30beb313e786b1567f7683586d13458fffe53ddfd6b4da64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063c997eb8d116100b6578063dd62ed3e1161007a578063dd62ed3e1461072d578063e2f456051461074d578063f2fde38b14610763578063f5648a4f14610783578063f8b45b0514610798578063fe575a87146107ae57600080fd5b8063c997eb8d14610697578063cb963728146106b7578063d257b34f146106d7578063d2a20450146106f7578063d85ba0631461071757600080fd5b8063aacebbe311610108578063aacebbe3146105e7578063adee28ff14610607578063bbc0c74214610627578063c024666814610641578063c17b5b8c14610661578063c8c8ebe41461068157600080fd5b80638da5cb5b1461055457806395d89b41146105725780639618839914610587578063a457c2d7146105a7578063a9059cbb146105c757600080fd5b806349bd5a5e116101dd578063715018a6116101a1578063715018a6146104aa5780637571336a146104bf57806375f0a874146104df578063782c4e99146104ff5780638095d5641461051f5780638a8c523c1461053f57600080fd5b806349bd5a5e146103e65780634fbee193146104065780636a486a8e1461043f5780636ddd17131461045557806370a082311461047457600080fd5b806327c8f8351161022457806327c8f835146103525780632f0c6c8a14610368578063313ce5671461038857806339509351146103a457806342966c68146103c457600080fd5b806306fdde031461026c578063095ea7b3146102975780631694505e146102c757806318160ddd1461031357806323b872dd1461033257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107e7565b60405161028e9190612713565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004612776565b610879565b604051901515815260200161028e565b3480156102d357600080fd5b506102fb7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561031f57600080fd5b506002545b60405190815260200161028e565b34801561033e57600080fd5b506102b761034d3660046127a2565b610893565b34801561035e57600080fd5b506102fb61dead81565b34801561037457600080fd5b506009546102fb906001600160a01b031681565b34801561039457600080fd5b506040516012815260200161028e565b3480156103b057600080fd5b506102b76103bf366004612776565b6108b7565b3480156103d057600080fd5b506103e46103df3660046127e3565b6108d9565b005b3480156103f257600080fd5b506006546102fb906001600160a01b031681565b34801561041257600080fd5b506102b76104213660046127fc565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561044b57600080fd5b5061032460135481565b34801561046157600080fd5b50600d546102b790610100900460ff1681565b34801561048057600080fd5b5061032461048f3660046127fc565b6001600160a01b031660009081526020819052604090205490565b3480156104b657600080fd5b506103e46108e6565b3480156104cb57600080fd5b506103e46104da366004612827565b6108fa565b3480156104eb57600080fd5b506007546102fb906001600160a01b031681565b34801561050b57600080fd5b506008546102fb906001600160a01b031681565b34801561052b57600080fd5b506103e461053a366004612860565b61092d565b34801561054b57600080fd5b506103e461098c565b34801561056057600080fd5b506005546001600160a01b03166102fb565b34801561057e57600080fd5b50610281610db1565b34801561059357600080fd5b506103e46105a236600461288c565b610dc0565b3480156105b357600080fd5b506102b76105c2366004612776565b610ed5565b3480156105d357600080fd5b506102b76105e2366004612776565b610f50565b3480156105f357600080fd5b506103e46106023660046127fc565b610f5e565b34801561061357600080fd5b506103e46106223660046127fc565b610fdd565b34801561063357600080fd5b50600d546102b79060ff1681565b34801561064d57600080fd5b506103e461065c366004612827565b61105c565b34801561066d57600080fd5b506103e461067c366004612860565b6110c3565b34801561068d57600080fd5b50610324600a5481565b3480156106a357600080fd5b506103e46106b23660046128ae565b611119565b3480156106c357600080fd5b506103e46106d23660046127fc565b61127b565b3480156106e357600080fd5b506102b76106f23660046127e3565b611406565b34801561070357600080fd5b506103e46107123660046127fc565b611546565b34801561072357600080fd5b50610324600f5481565b34801561073957600080fd5b50610324610748366004612934565b6115c5565b34801561075957600080fd5b50610324600b5481565b34801561076f57600080fd5b506103e461077e3660046127fc565b6115f0565b34801561078f57600080fd5b506103e4611666565b3480156107a457600080fd5b50610324600c5481565b3480156107ba57600080fd5b506102b76107c93660046127fc565b6001600160a01b03166000908152600e602052604090205460ff1690565b6060600380546107f690612962565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612962565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b6000336108878185856116b0565b60019150505b92915050565b6000336108a18582856117d4565b6108ac858585611848565b506001949350505050565b6000336108878185856108ca83836115c5565b6108d491906129b2565b6116b0565b6108e3338261200b565b50565b6108ee61213d565b6108f86000612197565b565b61090261213d565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b61093561213d565b6010839055601182905560128190558061094f83856129b2565b61095991906129b2565b600f819055600a10156109875760405162461bcd60e51b815260040161097e906129c5565b60405180910390fd5b505050565b61099461213d565b600d5460ff16156109e75760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e000000000000000000604482015260640161097e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a699190612a09565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afa9190612a09565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610b47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6b9190612a09565b600680546001600160a01b0319166001600160a01b03929092169182179055610b989030906000196116b0565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610c0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c309190612a26565b50600654610c48906001600160a01b031660016121e9565b600654610c5f906001600160a01b031660016108fa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730691686a78e4bcc09200000600080610cb06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610d18573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d3d9190612a43565b505050612710610d4c60025490565b610d57906019612a71565b610d619190612a88565b600a55612710610d7060025490565b610d7b906019612a71565b610d859190612a88565b600c556903755c07cd5affb0000060178190556018819055601955600d805461ffff1916610101179055565b6060600480546107f690612962565b610dc861213d565b6103e8610dd460025490565b610ddf906005612a71565b610de99190612a88565b821015610e495760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b606482015260840161097e565b6103e8610e5560025490565b610e60906005612a71565b610e6a9190612a88565b811015610ecd5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b606482015260840161097e565b600c55600a55565b60003381610ee382866115c5565b905083811015610f435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161097e565b6108ac82868684036116b0565b600033610887818585611848565b610f6661213d565b6001600160a01b038116610f8c5760405162461bcd60e51b815260040161097e90612aaa565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b610fe561213d565b6001600160a01b03811661100b5760405162461bcd60e51b815260040161097e90612aaa565b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b61106461213d565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110cb61213d565b601483905560158290556016819055806110e583856129b2565b6110ef91906129b2565b6013819055601a819055600a10156109875760405162461bcd60e51b815260040161097e906129c5565b61112161213d565b60005b82811015611275576006546001600160a01b031684848381811061114a5761114a612ad4565b905060200201602081019061115f91906127fc565b6001600160a01b0316141580156111ce57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03168484838181106111ad576111ad612ad4565b90506020020160208101906111c291906127fc565b6001600160a01b031614155b80156112095750308484838181106111e8576111e8612ad4565b90506020020160208101906111fd91906127fc565b6001600160a01b031614155b156112635781600e600086868581811061122557611225612ad4565b905060200201602081019061123a91906127fc565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b8061126d81612aea565b915050611124565b50505050565b61128361213d565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190612b03565b116113275760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b604482015260640161097e565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113929190612b03565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156113e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109879190612a26565b600061141061213d565b620186a061141d60025490565b611428906001612a71565b6114329190612a88565b8210156114a75760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000606482015260840161097e565b6103e86114b360025490565b6114be906005612a71565b6114c89190612a88565b82111561153d5760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000606482015260840161097e565b50600b55600190565b61154e61213d565b6001600160a01b0381166115745760405162461bcd60e51b815260040161097e90612aaa565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f36c61f3e9a4b5dbee45cb23f23102551f986c7b30019019814aab7933d4f630390600090a35050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6115f861213d565b6001600160a01b03811661165d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097e565b6108e381612197565b61166e61213d565b604051600090339047908381818185875af1925050503d8060008114611275576040519150601f19603f3d011682016040523d82523d6000602084013e611275565b6001600160a01b0383166117125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161097e565b6001600160a01b0382166117735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161097e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006117e084846115c5565b90506000198114611275578181101561183b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161097e565b61127584848484036116b0565b6001600160a01b03831661186e5760405162461bcd60e51b815260040161097e90612b1c565b6001600160a01b0382166118945760405162461bcd60e51b815260040161097e90612b61565b6001600160a01b0383166000908152600e602052604090205460ff16156118cd5760405162461bcd60e51b815260040161097e90612ba4565b336000908152600e602052604090205460ff16156118fd5760405162461bcd60e51b815260040161097e90612ba4565b326000908152600e602052604090205460ff161561192d5760405162461bcd60e51b815260040161097e90612ba4565b80600003611941576109878383600061223d565b6005546001600160a01b0384811691161480159061196d57506005546001600160a01b03838116911614155b801561198157506001600160a01b03821615155b801561199857506001600160a01b03821661dead14155b80156119ae5750600654600160a01b900460ff16155b15611cd157600d5460ff16611a48576001600160a01b0383166000908152601b602052604090205460ff16806119fc57506001600160a01b0382166000908152601b602052604090205460ff165b611a485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e000000604482015260640161097e565b6001600160a01b0383166000908152601d602052604090205460ff168015611a8957506001600160a01b0382166000908152601c602052604090205460ff16155b15611b7f57600a54811115611b065760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000606482015260840161097e565b600c546001600160a01b038316600090815260208190526040902054611b2c90836129b2565b1115611b7a5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161097e565b611cd1565b6001600160a01b0382166000908152601d602052604090205460ff168015611bc057506001600160a01b0383166000908152601c602052604090205460ff16155b15611c3d57600a54811115611b7a5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000606482015260840161097e565b6001600160a01b0382166000908152601c602052604090205460ff16611cd157600c546001600160a01b038316600090815260208190526040902054611c8390836129b2565b1115611cd15760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c6574206578636565646564000000000000604482015260640161097e565b30600090815260208190526040902054600b5481108015908190611cfc5750600d54610100900460ff165b8015611d125750600654600160a01b900460ff16155b8015611d3757506001600160a01b0385166000908152601d602052604090205460ff16155b8015611d5c57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611d8157506001600160a01b0384166000908152601b602052604090205460ff16155b15611daf576006805460ff60a01b1916600160a01b179055611da1612367565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611dfd57506001600160a01b0385166000908152601b602052604090205460ff165b15611e06575060005b60008115611ff1576001600160a01b0386166000908152601d602052604090205460ff168015611e3857506000601354115b15611ef657611e5d6064611e576013548861253490919063ffffffff16565b90612547565b905060135460165482611e709190612a71565b611e7a9190612a88565b60196000828254611e8b91906129b2565b9091555050601354601454611ea09083612a71565b611eaa9190612a88565b60176000828254611ebb91906129b2565b9091555050601354601554611ed09083612a71565b611eda9190612a88565b60186000828254611eeb91906129b2565b90915550611fd39050565b6001600160a01b0387166000908152601d602052604090205460ff168015611f2057506000600f54115b15611fd357611f3f6064611e57600f548861253490919063ffffffff16565b9050600f5460125482611f529190612a71565b611f5c9190612a88565b60196000828254611f6d91906129b2565b9091555050600f54601054611f829083612a71565b611f8c9190612a88565b60176000828254611f9d91906129b2565b9091555050600f54601154611fb29083612a71565b611fbc9190612a88565b60186000828254611fcd91906129b2565b90915550505b8015611fe457611fe487308361223d565b611fee8186612bd1565b94505b611ffc87878761223d565b5050601a546013555050505050565b6001600160a01b03821661206b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161097e565b6001600160a01b038216600090815260208190526040902054818110156120df5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161097e565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146108f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161097e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122635760405162461bcd60e51b815260040161097e90612b1c565b6001600160a01b0382166122895760405162461bcd60e51b815260040161097e90612b61565b6001600160a01b038316600090815260208190526040902054818110156123015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161097e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611275565b306000908152602081905260408120549050600060185460175460195461238e91906129b2565b61239891906129b2565b905060008215806123a7575081155b156123b157505050565b600b546123bf906014612a71565b8311156123d757600b546123d4906014612a71565b92505b6123e083612553565b6000479050600061240084611e576018548561253490919063ffffffff16565b9050600061241d85611e576019548661253490919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d806000811461247a576040519150601f19603f3d011682016040523d82523d6000602084013e61247f565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612524576040519150601f19603f3d011682016040523d82523d6000602084013e612529565b606091505b505050505050505050565b60006125408284612a71565b9392505050565b60006125408284612a88565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258857612588612ad4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612606573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262a9190612a09565b8160018151811061263d5761263d612ad4565b60200260200101906001600160a01b031690816001600160a01b031681525050612688307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846116b0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906126dd908590600090869030904290600401612be4565b600060405180830381600087803b1580156126f757600080fd5b505af115801561270b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561274057858101830151858201604001528201612724565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108e357600080fd5b6000806040838503121561278957600080fd5b823561279481612761565b946020939093013593505050565b6000806000606084860312156127b757600080fd5b83356127c281612761565b925060208401356127d281612761565b929592945050506040919091013590565b6000602082840312156127f557600080fd5b5035919050565b60006020828403121561280e57600080fd5b813561254081612761565b80151581146108e357600080fd5b6000806040838503121561283a57600080fd5b823561284581612761565b9150602083013561285581612819565b809150509250929050565b60008060006060848603121561287557600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561289f57600080fd5b50508035926020909101359150565b6000806000604084860312156128c357600080fd5b833567ffffffffffffffff808211156128db57600080fd5b818601915086601f8301126128ef57600080fd5b8135818111156128fe57600080fd5b8760208260051b850101111561291357600080fd5b6020928301955093505084013561292981612819565b809150509250925092565b6000806040838503121561294757600080fd5b823561295281612761565b9150602083013561285581612761565b600181811c9082168061297657607f821691505b60208210810361299657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561088d5761088d61299c565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612a1b57600080fd5b815161254081612761565b600060208284031215612a3857600080fd5b815161254081612819565b600080600060608486031215612a5857600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761088d5761088d61299c565b600082612aa557634e487b7160e01b600052601260045260246000fd5b500490565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060018201612afc57612afc61299c565b5060010190565b600060208284031215612b1557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b8181038181111561088d5761088d61299c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c345784516001600160a01b031683529383019391830191600101612c0f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220926ab878c8b983c06c30beb313e786b1567f7683586d13458fffe53ddfd6b4da64736f6c63430008110033
Deployed Bytecode Sourcemap
36204:15659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10939:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13440:242;;;;;;;;;;-1:-1:-1;13440:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13440:242:0;1023:187:1;36280:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;36280:51:0;1215:230:1;12068:108:0;;;;;;;;;;-1:-1:-1;12156:12:0;;12068:108;;;1596:25:1;;;1584:2;1569:18;12068:108:0;1450:177:1;14262:295:0;;;;;;;;;;-1:-1:-1;14262:295:0;;;;;:::i;:::-;;:::i;36373:53::-;;;;;;;;;;;;36419:6;36373:53;;36538:34;;;;;;;;;;-1:-1:-1;36538:34:0;;;;-1:-1:-1;;;;;36538:34:0;;;11910:93;;;;;;;;;;-1:-1:-1;11910:93:0;;11993:2;2443:36:1;;2431:2;2416:18;11910:93:0;2301:184:1;14966:270:0;;;;;;;;;;-1:-1:-1;14966:270:0;;;;;:::i;:::-;;:::i;40184:83::-;;;;;;;;;;-1:-1:-1;40184:83:0;;;;;:::i;:::-;;:::i;:::-;;36338:28;;;;;;;;;;-1:-1:-1;36338:28:0;;;;-1:-1:-1;;;;;36338:28:0;;;45913:126;;;;;;;;;;-1:-1:-1;45913:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46003:28:0;45979:4;46003:28;;;:19;:28;;;;;;;;;45913:126;37029:28;;;;;;;;;;;;;;;;36736:31;;;;;;;;;;-1:-1:-1;36736:31:0;;;;;;;;;;;12239:177;;;;;;;;;;-1:-1:-1;12239:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;12390:18:0;12358:7;12390:18;;;;;;;;;;;;12239:177;4319:103;;;;;;;;;;;;;:::i;42465:167::-;;;;;;;;;;-1:-1:-1;42465:167:0;;;;;:::i;:::-;;:::i;36465:30::-;;;;;;;;;;-1:-1:-1;36465:30:0;;;;-1:-1:-1;;;;;36465:30:0;;;36502:29;;;;;;;;;;-1:-1:-1;36502:29:0;;;;-1:-1:-1;;;;;36502:29:0;;;42640:446;;;;;;;;;;-1:-1:-1;42640:446:0;;;;;:::i;:::-;;:::i;40275:1148::-;;;;;;;;;;;;;:::i;3678:87::-;;;;;;;;;;-1:-1:-1;3751:6:0;;-1:-1:-1;;;;;3751:6:0;3678:87;;11158:104;;;;;;;;;;;;;:::i;41950:507::-;;;;;;;;;;-1:-1:-1;41950:507:0;;;;;:::i;:::-;;:::i;15739:505::-;;;;;;;;;;-1:-1:-1;15739:505:0;;;;;:::i;:::-;;:::i;12622:234::-;;;;;;;;;;-1:-1:-1;12622:234:0;;;;;:::i;:::-;;:::i;43634:334::-;;;;;;;;;;-1:-1:-1;43634:334:0;;;;;:::i;:::-;;:::i;43976:303::-;;;;;;;;;;-1:-1:-1;43976:303:0;;;;;:::i;:::-;;:::i;36696:33::-;;;;;;;;;;-1:-1:-1;36696:33:0;;;;;;;;44661:182;;;;;;;;;;-1:-1:-1;44661:182:0;;;;;:::i;:::-;;:::i;43094:532::-;;;;;;;;;;-1:-1:-1;43094:532:0;;;;;:::i;:::-;;:::i;36581:35::-;;;;;;;;;;;;;;;;44851:404;;;;;;;;;;-1:-1:-1;44851:404:0;;;;;:::i;:::-;;:::i;45454:255::-;;;;;;;;;;-1:-1:-1;45454:255:0;;;;;:::i;:::-;;:::i;41431:511::-;;;;;;;;;;-1:-1:-1;41431:511:0;;;;;:::i;:::-;;:::i;44287:366::-;;;;;;;;;;-1:-1:-1;44287:366:0;;;;;:::i;:::-;;:::i;36876:27::-;;;;;;;;;;;;;;;;12919:201;;;;;;;;;;-1:-1:-1;12919:201:0;;;;;:::i;:::-;;:::i;36623:33::-;;;;;;;;;;;;;;;;4577:238;;;;;;;;;;-1:-1:-1;4577:238:0;;;;;:::i;:::-;;:::i;45263:183::-;;;;;;;;;;;;;:::i;36663:24::-;;;;;;;;;;;;;;;;46047:113;;;;;;;;;;-1:-1:-1;46047:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;46132:20:0;46108:4;46132:20;;;:11;:20;;;;;;;;;46047:113;10939:100;10993:13;11026:5;11019:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10939:100;:::o;13440:242::-;13559:4;2303:10;13620:32;2303:10;13636:7;13645:6;13620:8;:32::i;:::-;13670:4;13663:11;;;13440:242;;;;;:::o;14262:295::-;14393:4;2303:10;14451:38;14467:4;2303:10;14482:6;14451:15;:38::i;:::-;14500:27;14510:4;14516:2;14520:6;14500:9;:27::i;:::-;-1:-1:-1;14545:4:0;;14262:295;-1:-1:-1;;;;14262:295:0:o;14966:270::-;15081:4;2303:10;15142:64;2303:10;15158:7;15195:10;15167:25;2303:10;15158:7;15167:9;:25::i;:::-;:38;;;;:::i;:::-;15142:8;:64::i;40184:83::-;40234:25;40240:10;40252:6;40234:5;:25::i;:::-;40184:83;:::o;4319:103::-;3564:13;:11;:13::i;:::-;4384:30:::1;4411:1;4384:18;:30::i;:::-;4319:103::o:0;42465:167::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;42578:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;42578:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42465:167::o;42640:446::-;3564:13;:11;:13::i;:::-;42799:15:::1;:31:::0;;;42841:14:::1;:29:::0;;;42881:19:::1;:39:::0;;;42903:17;42946:32:::1;42858:12:::0;42817:13;42946:32:::1;:::i;:::-;:54;;;;:::i;:::-;42931:12;:69:::0;;;43035:2:::1;-1:-1:-1::0;43019:18:0::1;43011:67;;;;-1:-1:-1::0;;;43011:67:0::1;;;;;;;:::i;:::-;;;;;;;;;42640:446:::0;;;:::o;40275:1148::-;3564:13;:11;:13::i;:::-;40339::::1;::::0;::::1;;40338:14;40330:50;;;::::0;-1:-1:-1;;;40330:50:0;;6413:2:1;40330:50:0::1;::::0;::::1;6395:21:1::0;6452:2;6432:18;;;6425:30;6491:25;6471:18;;;6464:53;6534:18;;40330:50:0::1;6211:347:1::0;40330:50:0::1;40427:15;-1:-1:-1::0;;;;;40427:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40409:55:0::1;;40487:4;40507:15;-1:-1:-1::0;;;;;40507:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40409:131;::::0;-1:-1:-1;;;;;;40409:131:0::1;::::0;;;;;;-1:-1:-1;;;;;7049:15:1;;;40409:131:0::1;::::0;::::1;7031:34:1::0;7101:15;;7081:18;;;7074:43;6966:18;;40409:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40393:13;:147:::0;;-1:-1:-1;;;;;;40393:147:0::1;-1:-1:-1::0;;;;;40393:147:0;;;::::1;::::0;;::::1;::::0;;40551:66:::1;::::0;40568:4:::1;::::0;-1:-1:-1;;40551:8:0::1;:66::i;:::-;40635:13;::::0;40628:111:::1;::::0;-1:-1:-1;;;40628:111:0;;-1:-1:-1;;;;;40680:15:0::1;7320:32:1::0;;40628:111:0::1;::::0;::::1;7302:51:1::0;-1:-1:-1;;7369:18:1;;;7362:34;40635:13:0;;::::1;::::0;40628:29:::1;::::0;7275:18:1;;40628:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;40789:13:0::1;::::0;40752:58:::1;::::0;-1:-1:-1;;;;;40789:13:0::1;::::0;40752:28:::1;:58::i;:::-;40855:13;::::0;40821:55:::1;::::0;-1:-1:-1;;;;;40855:13:0::1;::::0;40821:25:::1;:55::i;:::-;40889:15;-1:-1:-1::0;;;;;40889:31:0::1;;40928:21;40973:4;40993:13;41021:1;41037::::0;41053:7:::1;3751:6:::0;;-1:-1:-1;;;;;3751:6:0;;3678:87;41053:7:::1;40889:212;::::0;::::1;::::0;;;-1:-1:-1;;;;;;40889:212:0;;;-1:-1:-1;;;;;8047:15:1;;;40889:212:0::1;::::0;::::1;8029:34:1::0;8079:18;;;8072:34;;;;8122:18;;;8115:34;;;;8165:18;;;8158:34;8229:15;;;8208:19;;;8201:44;41075:15:0::1;8261:19:1::0;;;8254:35;7963:19;;40889:212:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;41160:5;41138:13;12156:12:::0;;;12068:108;41138:13:::1;:18;::::0;41154:2:::1;41138:18;:::i;:::-;41137:28;;;;:::i;:::-;41114:20;:51:::0;41211:5:::1;41189:13;12156:12:::0;;;12068:108;41189:13:::1;:18;::::0;41205:2:::1;41189:18;:::i;:::-;41188:28;;;;:::i;:::-;41176:9;:40:::0;41250:12:::1;41229:18;:33:::0;;;41273:17:::1;:32:::0;;;41316:22:::1;:37:::0;41366:13:::1;:20:::0;;-1:-1:-1;;41397:18:0;;;;;40275:1148::o;11158:104::-;11214:13;11247:7;11240:14;;;;;:::i;41950:507::-;3564:13;:11;:13::i;:::-;42144:4:::1;42123:13;12156:12:::0;;;12068:108;42123:13:::1;:17;::::0;42139:1:::1;42123:17;:::i;:::-;42122:26;;;;:::i;:::-;42108:9;:41;;42086:131;;;::::0;-1:-1:-1;;;42086:131:0;;9208:2:1;42086:131:0::1;::::0;::::1;9190:21:1::0;9247:2;9227:18;;;9220:30;9286:34;9266:18;;;9259:62;-1:-1:-1;;;9337:18:1;;;9330:38;9385:19;;42086:131:0::1;9006:404:1::0;42086:131:0::1;42292:4;42271:13;12156:12:::0;;;12068:108;42271:13:::1;:17;::::0;42287:1:::1;42271:17;:::i;:::-;42270:26;;;;:::i;:::-;42250:15;:47;;42228:140;;;::::0;-1:-1:-1;;;42228:140:0;;9617:2:1;42228:140:0::1;::::0;::::1;9599:21:1::0;9656:2;9636:18;;;9629:30;9695:34;9675:18;;;9668:62;-1:-1:-1;;;9746:18:1;;;9739:41;9797:19;;42228:140:0::1;9415:407:1::0;42228:140:0::1;42379:9;:27:::0;42417:20:::1;:32:::0;41950:507::o;15739:505::-;15859:4;2303:10;15859:4;15947:25;2303:10;15964:7;15947:9;:25::i;:::-;15920:52;;16025:15;16005:16;:35;;15983:122;;;;-1:-1:-1;;;15983:122:0;;10029:2:1;15983:122:0;;;10011:21:1;10068:2;10048:18;;;10041:30;10107:34;10087:18;;;10080:62;-1:-1:-1;;;10158:18:1;;;10151:35;10203:19;;15983:122:0;9827:401:1;15983:122:0;16141:60;16150:5;16157:7;16185:15;16166:16;:34;16141:8;:60::i;12622:234::-;12737:4;2303:10;12798:28;2303:10;12815:2;12819:6;12798:9;:28::i;43634:334::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;43752:30:0;::::1;43744:59;;;;-1:-1:-1::0;;;43744:59:0::1;;;;;;;:::i;:::-;43834:15;::::0;;-1:-1:-1;;;;;43860:34:0;;::::1;-1:-1:-1::0;;;;;;43860:34:0;::::1;::::0;::::1;::::0;;;43910:50:::1;::::0;43834:15;::::1;::::0;;;43910:50:::1;::::0;43814:17:::1;::::0;43910:50:::1;43733:235;43634:334:::0;:::o;43976:303::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;44069:29:0;::::1;44061:58;;;;-1:-1:-1::0;;;44061:58:0::1;;;;;;;:::i;:::-;44150:14;::::0;;-1:-1:-1;;;;;44175:32:0;;::::1;-1:-1:-1::0;;;;;;44175:32:0;::::1;::::0;::::1;::::0;;;44223:48:::1;::::0;44150:14;::::1;::::0;;;44223:48:::1;::::0;44130:17:::1;::::0;44223:48:::1;44050:229;43976:303:::0;:::o;44661:182::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;44746:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;44746:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44801:34;;1163:41:1;;;44801:34:0::1;::::0;1136:18:1;44801:34:0::1;;;;;;;44661:182:::0;;:::o;43094:532::-;3564:13;:11;:13::i;:::-;43254:16:::1;:32:::0;;;43297:15:::1;:30:::0;;;43338:20:::1;:40:::0;;;43361:17;43418:47:::1;43315:12:::0;43273:13;43418:47:::1;:::i;:::-;:83;;;;:::i;:::-;43389:13;:112:::0;;;43512:11:::1;:27:::0;;;43575:2:::1;-1:-1:-1::0;43558:19:0::1;43550:68;;;;-1:-1:-1::0;;;43550:68:0::1;;;;;;;:::i;44851:404::-:0;3564:13;:11;:13::i;:::-;44967:9:::1;44962:286;44982:19:::0;;::::1;44962:286;;;45061:13;::::0;-1:-1:-1;;;;;45061:13:0::1;45046:8:::0;;45055:1;45046:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45046:28:0::1;;;45045:92;;;;;45120:15;-1:-1:-1::0;;;;;45097:39:0::1;:8;;45106:1;45097:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45097:39:0::1;;;45045:92;:143;;;;-1:-1:-1::0;45182:4:0::1;45159:8:::0;;45168:1;45159:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45159:28:0::1;;;45045:143;45023:213;;;45231:5;45204:11;:24;45216:8;;45225:1;45216:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45204:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45204:24:0;:32;;-1:-1:-1;;45204:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45023:213:::1;45003:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44962:286;;;;44851:404:::0;;;:::o;45454:255::-;3564:13;:11;:13::i;:::-;45532:36:::1;::::0;-1:-1:-1;;;45532:36:0;;45562:4:::1;45532:36;::::0;::::1;1388:51:1::0;45571:1:0::1;::::0;-1:-1:-1;;;;;45532:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45532:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;45524:62;;;::::0;-1:-1:-1;;;45524:62:0;;11241:2:1;45524:62:0::1;::::0;::::1;11223:21:1::0;11280:1;11260:18;;;11253:29;-1:-1:-1;;;11298:18:1;;;11291:39;11347:18;;45524:62:0::1;11039:332:1::0;45524:62:0::1;45614:36;::::0;-1:-1:-1;;;45614:36:0;;45644:4:::1;45614:36;::::0;::::1;1388:51:1::0;45597:14:0::1;::::0;-1:-1:-1;;;;;45614:21:0;::::1;::::0;::::1;::::0;1361:18:1;;45614:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45661:40;::::0;-1:-1:-1;;;45661:40:0;;45682:10:::1;45661:40;::::0;::::1;7302:51:1::0;7369:18;;;7362:34;;;45597:53:0;;-1:-1:-1;;;;;;45661:20:0;::::1;::::0;::::1;::::0;7275:18:1;;45661:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41431:511::-:0;41539:4;3564:13;:11;:13::i;:::-;41618:6:::1;41597:13;12156:12:::0;;;12068:108;41597:13:::1;:17;::::0;41613:1:::1;41597:17;:::i;:::-;41596:28;;;;:::i;:::-;41583:9;:41;;41561:151;;;::::0;-1:-1:-1;;;41561:151:0;;11578:2:1;41561:151:0::1;::::0;::::1;11560:21:1::0;11617:2;11597:18;;;11590:30;11656:34;11636:18;;;11629:62;11727:30;11707:18;;;11700:58;11775:19;;41561:151:0::1;11376:424:1::0;41561:151:0::1;41780:4;41759:13;12156:12:::0;;;12068:108;41759:13:::1;:17;::::0;41775:1:::1;41759:17;:::i;:::-;41758:26;;;;:::i;:::-;41745:9;:39;;41723:148;;;::::0;-1:-1:-1;;;41723:148:0;;12007:2:1;41723:148:0::1;::::0;::::1;11989:21:1::0;12046:2;12026:18;;;12019:30;12085:34;12065:18;;;12058:62;12156:29;12136:18;;;12129:57;12203:19;;41723:148:0::1;11805:423:1::0;41723:148:0::1;-1:-1:-1::0;41882:18:0::1;:30:::0;41930:4:::1;::::0;41431:511::o;44287:366::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;44413:34:0;::::1;44405:63;;;;-1:-1:-1::0;;;44405:63:0::1;;;;;;;:::i;:::-;44499:19;::::0;;-1:-1:-1;;;;;44529:42:0;;::::1;-1:-1:-1::0;;;;;;44529:42:0;::::1;::::0;::::1;::::0;;;44587:58:::1;::::0;44499:19;::::1;::::0;;;44587:58:::1;::::0;44479:17:::1;::::0;44587:58:::1;44394:259;44287:366:::0;:::o;12919:201::-;-1:-1:-1;;;;;13085:18:0;;;13053:7;13085:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12919:201::o;4577:238::-;3564:13;:11;:13::i;:::-;-1:-1:-1;;;;;4680:22:0;::::1;4658:110;;;::::0;-1:-1:-1;;;4658:110:0;;12435:2:1;4658:110:0::1;::::0;::::1;12417:21:1::0;12474:2;12454:18;;;12447:30;12513:34;12493:18;;;12486:62;-1:-1:-1;;;12564:18:1;;;12557:36;12610:19;;4658:110:0::1;12233:402:1::0;4658:110:0::1;4779:28;4798:8;4779:18;:28::i;45263:183::-:0;3564:13;:11;:13::i;:::-;45356:82:::1;::::0;45319:12:::1;::::0;45364:10:::1;::::0;45388:21:::1;::::0;45319:12;45356:82;45319:12;45356:82;45388:21;45364:10;45356:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19872:380:::0;-1:-1:-1;;;;;20008:19:0;;20000:68;;;;-1:-1:-1;;;20000:68:0;;13052:2:1;20000:68:0;;;13034:21:1;13091:2;13071:18;;;13064:30;13130:34;13110:18;;;13103:62;-1:-1:-1;;;13181:18:1;;;13174:34;13225:19;;20000:68:0;12850:400:1;20000:68:0;-1:-1:-1;;;;;20087:21:0;;20079:68;;;;-1:-1:-1;;;20079:68:0;;13457:2:1;20079:68:0;;;13439:21:1;13496:2;13476:18;;;13469:30;13535:34;13515:18;;;13508:62;-1:-1:-1;;;13586:18:1;;;13579:32;13628:19;;20079:68:0;13255:398:1;20079:68:0;-1:-1:-1;;;;;20160:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20212:32;;1596:25:1;;;20212:32:0;;1569:18:1;20212:32:0;;;;;;;19872:380;;;:::o;20543:502::-;20678:24;20705:25;20715:5;20722:7;20705:9;:25::i;:::-;20678:52;;-1:-1:-1;;20745:16:0;:37;20741:297;;20845:6;20825:16;:26;;20799:117;;;;-1:-1:-1;;;20799:117:0;;13860:2:1;20799:117:0;;;13842:21:1;13899:2;13879:18;;;13872:30;13938:31;13918:18;;;13911:59;13987:18;;20799:117:0;13658:353:1;20799:117:0;20960:51;20969:5;20976:7;21004:6;20985:16;:25;20960:8;:51::i;46168:3936::-;-1:-1:-1;;;;;46300:18:0;;46292:68;;;;-1:-1:-1;;;46292:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46379:16:0;;46371:64;;;;-1:-1:-1;;;46371:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46455:17:0;;;;;;:11;:17;;;;;;;;46454:18;46446:50;;;;-1:-1:-1;;;46446:50:0;;;;;;;:::i;:::-;46528:10;46516:23;;;;:11;:23;;;;;;;;46515:24;46507:56;;;;-1:-1:-1;;;46507:56:0;;;;;;;:::i;:::-;46595:9;46583:22;;;;:11;:22;;;;;;;;46582:23;46574:55;;;;-1:-1:-1;;;46574:55:0;;;;;;;:::i;:::-;46646:6;46656:1;46646:11;46642:93;;46674:28;46690:4;46696:2;46700:1;46674:15;:28::i;46642:93::-;3751:6;;-1:-1:-1;;;;;46765:15:0;;;3751:6;;46765:15;;;;:45;;-1:-1:-1;3751:6:0;;-1:-1:-1;;;;;46797:13:0;;;3751:6;;46797:13;;46765:45;:78;;;;-1:-1:-1;;;;;;46827:16:0;;;;46765:78;:112;;;;-1:-1:-1;;;;;;46860:17:0;;36419:6;46860:17;;46765:112;:138;;;;-1:-1:-1;46895:8:0;;-1:-1:-1;;;46895:8:0;;;;46894:9;46765:138;46747:1511;;;46935:13;;;;46930:210;;-1:-1:-1;;;;;46999:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47028:23:0;;;;;;:19;:23;;;;;;;;46999:52;46969:155;;;;-1:-1:-1;;;46969:155:0;;15376:2:1;46969:155:0;;;15358:21:1;15415:2;15395:18;;;15388:30;15454:31;15434:18;;;15427:59;15503:18;;46969:155:0;15174:353:1;46969:155:0;-1:-1:-1;;;;;47202:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;47255:35:0;;;;;;:31;:35;;;;;;;;47254:36;47202:88;47180:1067;;;47365:20;;47355:6;:30;;47325:164;;;;-1:-1:-1;;;47325:164:0;;15734:2:1;47325:164:0;;;15716:21:1;15773:2;15753:18;;;15746:30;15812:34;15792:18;;;15785:62;15883:30;15863:18;;;15856:58;15931:19;;47325:164:0;15532:424:1;47325:164:0;47564:9;;-1:-1:-1;;;;;12390:18:0;;12358:7;12390:18;;;;;;;;;;;47538:22;;:6;:22;:::i;:::-;:35;;47508:135;;;;-1:-1:-1;;;47508:135:0;;16163:2:1;47508:135:0;;;16145:21:1;16202:2;16182:18;;;16175:30;16241:28;16221:18;;;16214:56;16287:18;;47508:135:0;15961:350:1;47508:135:0;47180:1067;;;-1:-1:-1;;;;;47725:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;47776:37:0;;;;;;:31;:37;;;;;;;;47775:38;47725:88;47703:544;;;47888:20;;47878:6;:30;;47848:165;;;;-1:-1:-1;;;47848:165:0;;16518:2:1;47848:165:0;;;16500:21:1;16557:2;16537:18;;;16530:30;16596:34;16576:18;;;16569:62;16667:31;16647:18;;;16640:59;16716:19;;47848:165:0;16316:425:1;47703:544:0;-1:-1:-1;;;;;48040:35:0;;;;;;:31;:35;;;;;;;;48035:212;;48152:9;;-1:-1:-1;;;;;12390:18:0;;12358:7;12390:18;;;;;;;;;;;48126:22;;:6;:22;:::i;:::-;:35;;48096:135;;;;-1:-1:-1;;;48096:135:0;;16163:2:1;48096:135:0;;;16145:21:1;16202:2;16182:18;;;16175:30;16241:28;16221:18;;;16214:56;16287:18;;48096:135:0;15961:350:1;48096:135:0;48319:4;48270:28;12390:18;;;;;;;;;;;48377;;48353:42;;;;;;;48426:35;;-1:-1:-1;48450:11:0;;;;;;;48426:35;:61;;;;-1:-1:-1;48479:8:0;;-1:-1:-1;;;48479:8:0;;;;48478:9;48426:61;:110;;;;-1:-1:-1;;;;;;48505:31:0;;;;;;:25;:31;;;;;;;;48504:32;48426:110;:153;;;;-1:-1:-1;;;;;;48554:25:0;;;;;;:19;:25;;;;;;;;48553:26;48426:153;:194;;;;-1:-1:-1;;;;;;48597:23:0;;;;;;:19;:23;;;;;;;;48596:24;48426:194;48408:326;;;48647:8;:15;;-1:-1:-1;;;;48647:15:0;-1:-1:-1;;;48647:15:0;;;48679:10;:8;:10::i;:::-;48706:8;:16;;-1:-1:-1;;;;48706:16:0;;;48408:326;48762:8;;-1:-1:-1;;;;;48787:25:0;;48746:12;48787:25;;;:19;:25;;;;;;48762:8;-1:-1:-1;;;48762:8:0;;;;;48761:9;;48787:25;;:52;;-1:-1:-1;;;;;;48816:23:0;;;;;;:19;:23;;;;;;;;48787:52;48783:100;;;-1:-1:-1;48866:5:0;48783:100;48895:12;48928:7;48924:1089;;;-1:-1:-1;;;;;48980:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;49029:1;49013:13;;:17;48980:50;48976:888;;;49058:34;49088:3;49058:25;49069:13;;49058:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;49051:41;;49211:13;;49166:20;;49159:4;:27;;;;:::i;:::-;49158:66;;;;:::i;:::-;49111:22;;:113;;;;;;;:::i;:::-;;;;-1:-1:-1;;49293:13:0;;49273:16;;49266:23;;:4;:23;:::i;:::-;49265:41;;;;:::i;:::-;49243:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49373:13:0;;49354:15;;49347:22;;:4;:22;:::i;:::-;49346:40;;;;:::i;:::-;49325:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;48976:888:0;;-1:-1:-1;48976:888:0;;-1:-1:-1;;;;;49448:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;49498:1;49483:12;;:16;49448:51;49444:420;;;49527:33;49556:3;49527:24;49538:12;;49527:6;:10;;:24;;;;:::i;:33::-;49520:40;;49678:12;;49634:19;;49627:4;:26;;;;:::i;:::-;49626:64;;;;:::i;:::-;49579:22;;:111;;;;;;;:::i;:::-;;;;-1:-1:-1;;49758:12:0;;49739:15;;49732:22;;:4;:22;:::i;:::-;49731:39;;;;:::i;:::-;49709:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49836:12:0;;49818:14;;49811:21;;:4;:21;:::i;:::-;49810:38;;;;:::i;:::-;49789:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;49444:420:0;49884:8;;49880:91;;49913:42;49929:4;49943;49950;49913:15;:42::i;:::-;49987:14;49997:4;49987:14;;:::i;:::-;;;48924:1089;50025:33;50041:4;50047:2;50051:6;50025:15;:33::i;:::-;-1:-1:-1;;50085:11:0;;50069:13;:27;-1:-1:-1;;;;;46168:3936:0:o;18759:675::-;-1:-1:-1;;;;;18843:21:0;;18835:67;;;;-1:-1:-1;;;18835:67:0;;17081:2:1;18835:67:0;;;17063:21:1;17120:2;17100:18;;;17093:30;17159:34;17139:18;;;17132:62;-1:-1:-1;;;17210:18:1;;;17203:31;17251:19;;18835:67:0;16879:397:1;18835:67:0;-1:-1:-1;;;;;19002:18:0;;18977:22;19002:18;;;;;;;;;;;19039:24;;;;19031:71;;;;-1:-1:-1;;;19031:71:0;;17483:2:1;19031:71:0;;;17465:21:1;17522:2;17502:18;;;17495:30;17561:34;17541:18;;;17534:62;-1:-1:-1;;;17612:18:1;;;17605:32;17654:19;;19031:71:0;17281:398:1;19031:71:0;-1:-1:-1;;;;;19138:18:0;;:9;:18;;;;;;;;;;;19159:23;;;19138:44;;19277:12;:22;;;;;;;19328:37;1596:25:1;;;19138:9:0;;:18;19328:37;;1569:18:1;19328:37:0;;;;;;;42640:446;;;:::o;3843:132::-;3751:6;;-1:-1:-1;;;;;3751:6:0;2303:10;3907:23;3899:68;;;;-1:-1:-1;;;3899:68:0;;17886:2:1;3899:68:0;;;17868:21:1;;;17905:18;;;17898:30;17964:34;17944:18;;;17937:62;18016:18;;3899:68:0;17684:356:1;4975:191:0;5068:6;;;-1:-1:-1;;;;;5085:17:0;;;-1:-1:-1;;;;;;5085:17:0;;;;;;;5118:40;;5068:6;;;5085:17;5068:6;;5118:40;;5049:16;;5118:40;5038:128;4975:191;:::o;45717:188::-;-1:-1:-1;;;;;45800:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;45800:39:0;;;;;;;;;;45857:40;;45800:39;;:31;45857:40;;;45717:188;;:::o;16714:877::-;-1:-1:-1;;;;;16845:18:0;;16837:68;;;;-1:-1:-1;;;16837:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16924:16:0;;16916:64;;;;-1:-1:-1;;;16916:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17066:15:0;;17044:19;17066:15;;;;;;;;;;;17114:21;;;;17092:109;;;;-1:-1:-1;;;17092:109:0;;18247:2:1;17092:109:0;;;18229:21:1;18286:2;18266:18;;;18259:30;18325:34;18305:18;;;18298:62;-1:-1:-1;;;18376:18:1;;;18369:36;18422:19;;17092:109:0;18045:402:1;17092:109:0;-1:-1:-1;;;;;17237:15:0;;;:9;:15;;;;;;;;;;;17255:20;;;17237:38;;17455:13;;;;;;;;;;:23;;;;;;17507:26;;1596:25:1;;;17455:13:0;;17507:26;;1569:18:1;17507:26:0;;;;;;;17546:37;42640:446;50621:1239;50704:4;50660:23;12390:18;;;;;;;;;;;50660:50;;50721:25;50821:17;;50787:18;;50749:22;;:56;;;;:::i;:::-;:89;;;;:::i;:::-;50721:117;-1:-1:-1;50849:12:0;50878:20;;;:46;;-1:-1:-1;50902:22:0;;50878:46;50874:85;;;50941:7;;;50621:1239::o;50874:85::-;50993:18;;:23;;51014:2;50993:23;:::i;:::-;50975:15;:41;50971:115;;;51051:18;;:23;;51072:2;51051:23;:::i;:::-;51033:41;;50971:115;51098:33;51115:15;51098:16;:33::i;:::-;51144:18;51165:21;51144:42;;51199:22;51224:80;51276:17;51224:33;51239:17;;51224:10;:14;;:33;;;;:::i;:80::-;51199:105;;51317:27;51347:89;51418:17;51347:52;51376:22;;51347:10;:28;;:52;;;;:::i;:89::-;51470:1;51449:18;:22;;;51482:17;:21;;;51514:22;:26;;;51575:19;;51567:89;;51317:119;;-1:-1:-1;;;;;;51575:19:0;;51317:119;;51567:89;51470:1;51567:89;51317:119;51575:19;51567:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51691:14:0;;51683:55;;51553:103;;-1:-1:-1;;;;;;51691:14:0;;51719;;51683:55;;;;51719:14;51691;51683:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51773:15:0;;51765:87;;51669:69;;-1:-1:-1;;;;;;51773:15:0;;51816:21;;51765:87;;;;51816:21;51773:15;51765:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;50621:1239:0:o;26220:98::-;26278:7;26305:5;26309:1;26305;:5;:::i;:::-;26298:12;26220:98;-1:-1:-1;;;26220:98:0:o;26619:::-;26677:7;26704:5;26708:1;26704;:5;:::i;50112:501::-;50202:16;;;50216:1;50202:16;;;;;;;;50178:21;;50202:16;;;;;;;;;;-1:-1:-1;50202:16:0;50178:40;;50247:4;50229;50234:1;50229:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50229:23:0;;;-1:-1:-1;;;;;50229:23:0;;;;;50273:15;-1:-1:-1;;;;;50273:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50263:4;50268:1;50263:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50263:32:0;;;-1:-1:-1;;;;;50263:32:0;;;;;50308:62;50325:4;50340:15;50358:11;50308:8;:62::i;:::-;50409:196;;-1:-1:-1;;;50409:196:0;;-1:-1:-1;;;;;50409:15:0;:66;;;;:196;;50490:11;;50516:1;;50532:4;;50559;;50579:15;;50409:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50167:446;50112:501;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:750::-;4103:6;4111;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4228:9;4215:23;4257:18;4298:2;4290:6;4287:14;4284:34;;;4314:1;4311;4304:12;4284:34;4352:6;4341:9;4337:22;4327:32;;4397:7;4390:4;4386:2;4382:13;4378:27;4368:55;;4419:1;4416;4409:12;4368:55;4459:2;4446:16;4485:2;4477:6;4474:14;4471:34;;;4501:1;4498;4491:12;4471:34;4556:7;4549:4;4539:6;4536:1;4532:14;4528:2;4524:23;4520:34;4517:47;4514:67;;;4577:1;4574;4567:12;4514:67;4608:4;4600:13;;;;-1:-1:-1;4632:6:1;-1:-1:-1;;4673:20:1;;4660:34;4703:28;4660:34;4703:28;:::i;:::-;4750:5;4740:15;;;4011:750;;;;;:::o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:380::-;5238:1;5234:12;;;;5281;;;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5409:2;5401:6;5398:14;5378:18;5375:38;5372:161;;5455:10;5450:3;5446:20;5443:1;5436:31;5490:4;5487:1;5480:15;5518:4;5515:1;5508:15;5372:161;;5159:380;;;:::o;5544:127::-;5605:10;5600:3;5596:20;5593:1;5586:31;5636:4;5633:1;5626:15;5660:4;5657:1;5650:15;5676:125;5741:9;;;5762:10;;;5759:36;;;5775:18;;:::i;5806:400::-;6008:2;5990:21;;;6047:2;6027:18;;;6020:30;6086:34;6081:2;6066:18;;6059:62;-1:-1:-1;;;6152:2:1;6137:18;;6130:34;6196:3;6181:19;;5806:400::o;6563:251::-;6633:6;6686:2;6674:9;6665:7;6661:23;6657:32;6654:52;;;6702:1;6699;6692:12;6654:52;6734:9;6728:16;6753:31;6778:5;6753:31;:::i;7407:245::-;7474:6;7527:2;7515:9;7506:7;7502:23;7498:32;7495:52;;;7543:1;7540;7533:12;7495:52;7575:9;7569:16;7594:28;7616:5;7594:28;:::i;8300:306::-;8388:6;8396;8404;8457:2;8445:9;8436:7;8432:23;8428:32;8425:52;;;8473:1;8470;8463:12;8425:52;8502:9;8496:16;8486:26;;8552:2;8541:9;8537:18;8531:25;8521:35;;8596:2;8585:9;8581:18;8575:25;8565:35;;8300:306;;;;;:::o;8611:168::-;8684:9;;;8715;;8732:15;;;8726:22;;8712:37;8702:71;;8753:18;;:::i;8784:217::-;8824:1;8850;8840:132;;8894:10;8889:3;8885:20;8882:1;8875:31;8929:4;8926:1;8919:15;8957:4;8954:1;8947:15;8840:132;-1:-1:-1;8986:9:1;;8784:217::o;10233:340::-;10435:2;10417:21;;;10474:2;10454:18;;;10447:30;-1:-1:-1;;;10508:2:1;10493:18;;10486:46;10564:2;10549:18;;10233:340::o;10578:127::-;10639:10;10634:3;10630:20;10627:1;10620:31;10670:4;10667:1;10660:15;10694:4;10691:1;10684:15;10710:135;10749:3;10770:17;;;10767:43;;10790:18;;:::i;:::-;-1:-1:-1;10837:1:1;10826:13;;10710:135::o;10850:184::-;10920:6;10973:2;10961:9;10952:7;10948:23;10944:32;10941:52;;;10989:1;10986;10979:12;10941:52;-1:-1:-1;11012:16:1;;10850:184;-1:-1:-1;10850:184:1:o;14016:401::-;14218:2;14200:21;;;14257:2;14237:18;;;14230:30;14296:34;14291:2;14276:18;;14269:62;-1:-1:-1;;;14362:2:1;14347:18;;14340:35;14407:3;14392:19;;14016:401::o;14422:399::-;14624:2;14606:21;;;14663:2;14643:18;;;14636:30;14702:34;14697:2;14682:18;;14675:62;-1:-1:-1;;;14768:2:1;14753:18;;14746:33;14811:3;14796:19;;14422:399::o;14826:343::-;15028:2;15010:21;;;15067:2;15047:18;;;15040:30;-1:-1:-1;;;15101:2:1;15086:18;;15079:49;15160:2;15145:18;;14826:343::o;16746:128::-;16813:9;;;16834:11;;;16831:37;;;16848:18;;:::i;18584:980::-;18846:4;18894:3;18883:9;18879:19;18925:6;18914:9;18907:25;18951:2;18989:6;18984:2;18973:9;18969:18;18962:34;19032:3;19027:2;19016:9;19012:18;19005:31;19056:6;19091;19085:13;19122:6;19114;19107:22;19160:3;19149:9;19145:19;19138:26;;19199:2;19191:6;19187:15;19173:29;;19220:1;19230:195;19244:6;19241:1;19238:13;19230:195;;;19309:13;;-1:-1:-1;;;;;19305:39:1;19293:52;;19400:15;;;;19365:12;;;;19341:1;19259:9;19230:195;;;-1:-1:-1;;;;;;;19481:32:1;;;;19476:2;19461:18;;19454:60;-1:-1:-1;;;19545:3:1;19530:19;19523:35;19442:3;18584:980;-1:-1:-1;;;18584:980:1:o
Swarm Source
ipfs://926ab878c8b983c06c30beb313e786b1567f7683586d13458fffe53ddfd6b4da
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.