ERC-20
Overview
Max Total Supply
1,000,000 ZKBOT
Holders
333
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000025077076646494 ZKBOTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZKBOT
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-26 */ /** zkBot Next-generation zkTrading Bot Website: https://zkbot.io/ Twitter: https://twitter.com/zkbotofficial Tutorials: https://docs.zkbot.io/ Telegram Bot: Link on website **/ // SPDX-License-Identifier: UNLICENSED // Sources flattened with hardhat v2.17.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // 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; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/ZKBOT.sol pragma solidity =0.8.19; contract ZKBOT is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public collectFeeEnabled = false; uint256 public buyLiquidityFee; uint256 public sellLiquidityFee; uint256 public tokensForLiquidity; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20('zkBot', 'ZKBOT') { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyLiquidityFee = 2; uint256 _sellLiquidityFee = 2; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 50_000 * 1e18; // 5% maxWallet = 50_000 * 1e18; // 5% swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% buyLiquidityFee = _buyLiquidityFee; sellLiquidityFee = _sellLiquidityFee; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); preMigrationTransferrable[owner()] = true; _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableCollectFee() external onlyOwner { collectFeeEnabled = true; preMigrationPhase = false; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, 'Swap amount cannot be lower than 0.001% total supply.' ); require( newAmount <= (totalSupply() * 5) / 1000, 'Swap amount cannot be higher than 0.5% total supply.' ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, 'Cannot set maxTransactionAmount lower than 0.5%' ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, 'Cannot set maxWallet lower than 1.0%' ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { collectFeeEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != uniswapV2Pair, 'The pair cannot be removed from automatedMarketMakerPairs' ); _setAutomatedMarketMakerPair(pair, value); } 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 _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'); if (preMigrationPhase) { require( preMigrationTransferrable[from], 'Not authorized to transfer pre-migration.' ); } if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, 'Buy transfer amount exceeds the maxTransactionAmount.' ); require( amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded' ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, 'Sell transfer amount exceeds the maxTransactionAmount.' ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, 'Max wallet exceeded' ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && collectFeeEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellLiquidityFee > 0) { fees = amount.mul(sellLiquidityFee).div(100); tokensForLiquidity += fees; } // on buy else if (automatedMarketMakerPairs[from] && buyLiquidityFee > 0) { fees = amount.mul(buyLiquidityFee).div(100); tokensForLiquidity += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0 || tokensForLiquidity == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); swapTokensForEth(amountToSwapForETH); uint256 ethForLiquidity = address(this).balance; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } function withdrawStuckToken( address _token, address _to ) external onlyOwner { require(_token != address(0), '_token address cannot be 0'); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{value: address(this).balance}(''); require(success); } function setPreMigrationTransferable( address _addr, bool isAuthorized ) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); excludeFromMaxTransaction(_addr, isAuthorized); } }
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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectFeeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableCollectFee","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","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":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526009805461ffff191660019081179091556010805460ff191690911790553480156200002f57600080fd5b50604051806040016040528060058152602001641e9ad09bdd60da1b815250604051806040016040528060058152602001641692d093d560da1b81525081600390816200007d91906200067c565b5060046200008c82826200067c565b505050620000a9620000a36200036660201b60201c565b6200036a565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000cb816001620003bc565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000116573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013c919062000748565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b0919062000748565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000224919062000748565b6001600160a01b031660a08190526200023f906001620003bc565b60a0516200024f906001620003f1565b690a968163f0a57b400000600681905560085560028069d3c21bcecceda10000006127106200028082600a62000790565b6200028c9190620007b0565b600755600a839055600b829055620002b8620002b06005546001600160a01b031690565b600162000445565b620002c530600162000445565b620002d461dead600162000445565b620002f3620002eb6005546001600160a01b031690565b6001620003bc565b62000300306001620003bc565b6200030f61dead6001620003bc565b600160116000620003286005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200035c3382620004ae565b50505050620007e9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003c662000575565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152600f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6200044f62000575565b6001600160a01b0382166000818152600d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200050a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200051e9190620007d3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000501565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200060357607f821691505b6020821081036200062457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005d357600081815260208120601f850160051c81016020861015620006535750805b601f850160051c820191505b8181101562000674578281556001016200065f565b505050505050565b81516001600160401b03811115620006985762000698620005d8565b620006b081620006a98454620005ee565b846200062a565b602080601f831160018114620006e85760008415620006cf5750858301515b600019600386901b1c1916600185901b17855562000674565b600085815260208120601f198616915b828110156200071957888601518255948401946001909101908401620006f8565b5085821015620007385787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075b57600080fd5b81516001600160a01b03811681146200077357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007aa57620007aa6200077a565b92915050565b600082620007ce57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007aa57620007aa6200077a565b60805160a051612c5962000839600039600081816104ba0152610c3d015260008181610398015281816125300152818161261001528181612672015281816126ec01526127130152612c596000f3fe6080604052600436106102d55760003560e01c80637ca8448a11610179578063bc205ad3116100d6578063dd62ed3e1161008a578063f2fde38b11610064578063f2fde38b14610872578063f637434214610892578063f8b45b05146108a857600080fd5b8063dd62ed3e146107f3578063e2f4560514610846578063f11a24d31461085c57600080fd5b8063c18bc195116100bb578063c18bc1951461079d578063c8c8ebe4146107bd578063d257b34f146107d357600080fd5b8063bc205ad31461075d578063c02466681461077d57600080fd5b8063a457c2d71161012d578063a958e75711610112578063a958e757146106f8578063aa0e43881461070d578063b62496f51461072d57600080fd5b8063a457c2d7146106b8578063a9059cbb146106d857600080fd5b8063924de9b71161015e578063924de9b71461066357806395d89b41146106835780639a7a23d61461069857600080fd5b80637ca8448a146106185780638da5cb5b1461063857600080fd5b8063313ce567116102325780634fbee193116101e6578063715018a6116101c0578063715018a6146105ce578063751039fc146105e35780637571336a146105f857600080fd5b80634fbee19314610526578063668b743e1461056c57806370a082311461058b57600080fd5b806349bd5a5e1161021757806349bd5a5e146104a85780634a62bb65146104dc5780634e29e523146104f657600080fd5b8063313ce5671461046c578063395093511461048857600080fd5b806318160ddd11610289578063203e727e1161026e578063203e727e1461041457806323b872dd1461043657806327c8f8351461045657600080fd5b806318160ddd146103df5780631a8145bb146103fe57600080fd5b80630e922ca7116102ba5780630e922ca71461033c57806310d5de53146103565780631694505e1461038657600080fd5b806306fdde03146102e1578063095ea7b31461030c57600080fd5b366102dc57005b600080fd5b3480156102ed57600080fd5b506102f66108be565b604051610303919061282b565b60405180910390f35b34801561031857600080fd5b5061032c6103273660046128b9565b610950565b6040519015158152602001610303565b34801561034857600080fd5b5060105461032c9060ff1681565b34801561036257600080fd5b5061032c6103713660046128e5565b600e6020526000908152604090205460ff1681565b34801561039257600080fd5b506103ba7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610303565b3480156103eb57600080fd5b506002545b604051908152602001610303565b34801561040a57600080fd5b506103f0600c5481565b34801561042057600080fd5b5061043461042f366004612902565b61096a565b005b34801561044257600080fd5b5061032c61045136600461291b565b610a52565b34801561046257600080fd5b506103ba61dead81565b34801561047857600080fd5b5060405160128152602001610303565b34801561049457600080fd5b5061032c6104a33660046128b9565b610a76565b3480156104b457600080fd5b506103ba7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e857600080fd5b5060095461032c9060ff1681565b34801561050257600080fd5b5061032c6105113660046128e5565b60116020526000908152604090205460ff1681565b34801561053257600080fd5b5061032c6105413660046128e5565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561057857600080fd5b5060095461032c90610100900460ff1681565b34801561059757600080fd5b506103f06105a63660046128e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156105da57600080fd5b50610434610ac2565b3480156105ef57600080fd5b5061032c610ad6565b34801561060457600080fd5b5061043461061336600461296a565b610b0e565b34801561062457600080fd5b506104346106333660046128e5565b610b6c565b34801561064457600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103ba565b34801561066f57600080fd5b5061043461067e3660046129a3565b610be5565b34801561068f57600080fd5b506102f6610c24565b3480156106a457600080fd5b506104346106b336600461296a565b610c33565b3480156106c457600080fd5b5061032c6106d33660046128b9565b610d20565b3480156106e457600080fd5b5061032c6106f33660046128b9565b610df1565b34801561070457600080fd5b50610434610dff565b34801561071957600080fd5b5061043461072836600461296a565b610e5d565b34801561073957600080fd5b5061032c6107483660046128e5565b600f6020526000908152604090205460ff1681565b34801561076957600080fd5b506104346107783660046129c0565b610ec8565b34801561078957600080fd5b5061043461079836600461296a565b611081565b3480156107a957600080fd5b506104346107b8366004612902565b611113565b3480156107c957600080fd5b506103f060065481565b3480156107df57600080fd5b5061032c6107ee366004612902565b6111f5565b3480156107ff57600080fd5b506103f061080e3660046129c0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561085257600080fd5b506103f060075481565b34801561086857600080fd5b506103f0600a5481565b34801561087e57600080fd5b5061043461088d3660046128e5565b611369565b34801561089e57600080fd5b506103f0600b5481565b3480156108b457600080fd5b506103f060085481565b6060600380546108cd906129ee565b80601f01602080910402602001604051908101604052809291908181526020018280546108f9906129ee565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b60003361095e818585611420565b60019150505b92915050565b6109726115d3565b670de0b6b3a76400006103e861098760025490565b610992906005612a70565b61099c9190612a87565b6109a69190612a87565b811015610a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610a4c81670de0b6b3a7640000612a70565b60065550565b600033610a60858285611654565b610a6b858585611725565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061095e9082908690610abd908790612ac2565b611420565b610aca6115d3565b610ad46000612056565b565b6000610ae06115d3565b50600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610b166115d3565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610b746115d3565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610bce576040519150601f19603f3d011682016040523d82523d6000602084013e610bd3565b606091505b5050905080610be157600080fd5b5050565b610bed6115d3565b60098054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6060600480546108cd906129ee565b610c3b6115d3565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a31565b610be182826120cd565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610a31565b610a6b8286868403611420565b60003361095e818585611725565b610e076115d3565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610e656115d3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055610ebe8282611081565b610be18282610b0e565b610ed06115d3565b73ffffffffffffffffffffffffffffffffffffffff8216610f4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a31565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190612ad5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611057573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107b9190612aee565b50505050565b6110896115d3565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61111b6115d3565b670de0b6b3a76400006103e861113060025490565b61113b90600a612a70565b6111459190612a87565b61114f9190612a87565b8110156111dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610a31565b6111ef81670de0b6b3a7640000612a70565b60085550565b60006111ff6115d3565b620186a061120c60025490565b611217906001612a70565b6112219190612a87565b8210156112b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610a31565b6103e86112bc60025490565b6112c7906005612a70565b6112d19190612a87565b821115611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610a31565b50600755600190565b6113716115d3565b73ffffffffffffffffffffffffffffffffffffffff8116611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a31565b61141d81612056565b50565b73ffffffffffffffffffffffffffffffffffffffff83166114c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff8216611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ad4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a31565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461107b5781811015611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a31565b61107b8484848403611420565b73ffffffffffffffffffffffffffffffffffffffff83166117c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff821661186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a31565b60105460ff161561192b5773ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff1661192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201527f6967726174696f6e2e00000000000000000000000000000000000000000000006064820152608401610a31565b806000036119445761193f8383600061214c565b505050565b60095460ff1615611d525760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611995575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156119b6575073ffffffffffffffffffffffffffffffffffffffff821615155b80156119da575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015611a01575060055474010000000000000000000000000000000000000000900460ff16155b15611d525773ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff168015611a61575073ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16155b15611b9857600654811115611af8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610a31565b60085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054611b2b9083612ac2565b1115611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610a31565b611d52565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f602052604090205460ff168015611bf3575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b15611c8a57600654811115611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16611d525760085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054611cea9083612ac2565b1115611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610a31565b3060009081526020819052604090205460075481108015908190611d7d5750600954610100900460ff165b8015611da4575060055474010000000000000000000000000000000000000000900460ff16155b8015611dd6575073ffffffffffffffffffffffffffffffffffffffff85166000908152600f602052604090205460ff16155b8015611e08575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff16155b8015611e3a575073ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16155b15611eaf57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611e866123bb565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152600d602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611f28575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff165b15611f31575060005b600081156120425773ffffffffffffffffffffffffffffffffffffffff86166000908152600f602052604090205460ff168015611f7057506000600b54115b15611fb457611f956064611f8f600b548861249490919063ffffffff16565b906124a7565b905080600c6000828254611fa99190612ac2565b909155506120249050565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600f602052604090205460ff168015611feb57506000600a54115b156120245761200a6064611f8f600a548861249490919063ffffffff16565b905080600c600082825461201e9190612ac2565b90915550505b80156120355761203587308361214c565b61203f8186612b0b565b94505b61204d87878761214c565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166121ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff8216612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361107b565b306000908152602081905260409020548015806123d85750600c54155b156123e05750565b6007546123ee906014612a70565b81111561240657600754612403906014612a70565b90505b6000612413600283612a87565b9050600061242183836124b3565b905061242c816124bf565b47821580159061243c5750600081115b1561107b5761244b83826126e6565b600c54604080518481526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050565b60006124a08284612a70565b9392505050565b60006124a08284612a87565b60006124a08284612b0b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124f4576124f4612b1e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bd9190612b4d565b816001815181106125d0576125d0612b1e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612635307f000000000000000000000000000000000000000000000000000000000000000084611420565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906126b0908590600090869030904290600401612b6a565b600060405180830381600087803b1580156126ca57600080fd5b505af11580156126de573d6000803e3d6000fd5b505050505050565b612711307f000000000000000000000000000000000000000000000000000000000000000084611420565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061277260055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156127ff573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128249190612bf5565b5050505050565b600060208083528351808285015260005b818110156128585785810183015185820160400152820161283c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461141d57600080fd5b600080604083850312156128cc57600080fd5b82356128d781612897565b946020939093013593505050565b6000602082840312156128f757600080fd5b81356124a081612897565b60006020828403121561291457600080fd5b5035919050565b60008060006060848603121561293057600080fd5b833561293b81612897565b9250602084013561294b81612897565b929592945050506040919091013590565b801515811461141d57600080fd5b6000806040838503121561297d57600080fd5b823561298881612897565b915060208301356129988161295c565b809150509250929050565b6000602082840312156129b557600080fd5b81356124a08161295c565b600080604083850312156129d357600080fd5b82356129de81612897565b9150602083013561299881612897565b600181811c90821680612a0257607f821691505b602082108103612a3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761096457610964612a41565b600082612abd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082018082111561096457610964612a41565b600060208284031215612ae757600080fd5b5051919050565b600060208284031215612b0057600080fd5b81516124a08161295c565b8181038181111561096457610964612a41565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215612b5f57600080fd5b81516124a081612897565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bc757845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612b95565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215612c0a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f9ca9293283357cabc95330025a415f32dcb2c1ab2b7300344458434e7d0be1864736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102d55760003560e01c80637ca8448a11610179578063bc205ad3116100d6578063dd62ed3e1161008a578063f2fde38b11610064578063f2fde38b14610872578063f637434214610892578063f8b45b05146108a857600080fd5b8063dd62ed3e146107f3578063e2f4560514610846578063f11a24d31461085c57600080fd5b8063c18bc195116100bb578063c18bc1951461079d578063c8c8ebe4146107bd578063d257b34f146107d357600080fd5b8063bc205ad31461075d578063c02466681461077d57600080fd5b8063a457c2d71161012d578063a958e75711610112578063a958e757146106f8578063aa0e43881461070d578063b62496f51461072d57600080fd5b8063a457c2d7146106b8578063a9059cbb146106d857600080fd5b8063924de9b71161015e578063924de9b71461066357806395d89b41146106835780639a7a23d61461069857600080fd5b80637ca8448a146106185780638da5cb5b1461063857600080fd5b8063313ce567116102325780634fbee193116101e6578063715018a6116101c0578063715018a6146105ce578063751039fc146105e35780637571336a146105f857600080fd5b80634fbee19314610526578063668b743e1461056c57806370a082311461058b57600080fd5b806349bd5a5e1161021757806349bd5a5e146104a85780634a62bb65146104dc5780634e29e523146104f657600080fd5b8063313ce5671461046c578063395093511461048857600080fd5b806318160ddd11610289578063203e727e1161026e578063203e727e1461041457806323b872dd1461043657806327c8f8351461045657600080fd5b806318160ddd146103df5780631a8145bb146103fe57600080fd5b80630e922ca7116102ba5780630e922ca71461033c57806310d5de53146103565780631694505e1461038657600080fd5b806306fdde03146102e1578063095ea7b31461030c57600080fd5b366102dc57005b600080fd5b3480156102ed57600080fd5b506102f66108be565b604051610303919061282b565b60405180910390f35b34801561031857600080fd5b5061032c6103273660046128b9565b610950565b6040519015158152602001610303565b34801561034857600080fd5b5060105461032c9060ff1681565b34801561036257600080fd5b5061032c6103713660046128e5565b600e6020526000908152604090205460ff1681565b34801561039257600080fd5b506103ba7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610303565b3480156103eb57600080fd5b506002545b604051908152602001610303565b34801561040a57600080fd5b506103f0600c5481565b34801561042057600080fd5b5061043461042f366004612902565b61096a565b005b34801561044257600080fd5b5061032c61045136600461291b565b610a52565b34801561046257600080fd5b506103ba61dead81565b34801561047857600080fd5b5060405160128152602001610303565b34801561049457600080fd5b5061032c6104a33660046128b9565b610a76565b3480156104b457600080fd5b506103ba7f000000000000000000000000a66d9518a3644c42d020dcf545baeb01fcee270381565b3480156104e857600080fd5b5060095461032c9060ff1681565b34801561050257600080fd5b5061032c6105113660046128e5565b60116020526000908152604090205460ff1681565b34801561053257600080fd5b5061032c6105413660046128e5565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205460ff1690565b34801561057857600080fd5b5060095461032c90610100900460ff1681565b34801561059757600080fd5b506103f06105a63660046128e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156105da57600080fd5b50610434610ac2565b3480156105ef57600080fd5b5061032c610ad6565b34801561060457600080fd5b5061043461061336600461296a565b610b0e565b34801561062457600080fd5b506104346106333660046128e5565b610b6c565b34801561064457600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166103ba565b34801561066f57600080fd5b5061043461067e3660046129a3565b610be5565b34801561068f57600080fd5b506102f6610c24565b3480156106a457600080fd5b506104346106b336600461296a565b610c33565b3480156106c457600080fd5b5061032c6106d33660046128b9565b610d20565b3480156106e457600080fd5b5061032c6106f33660046128b9565b610df1565b34801561070457600080fd5b50610434610dff565b34801561071957600080fd5b5061043461072836600461296a565b610e5d565b34801561073957600080fd5b5061032c6107483660046128e5565b600f6020526000908152604090205460ff1681565b34801561076957600080fd5b506104346107783660046129c0565b610ec8565b34801561078957600080fd5b5061043461079836600461296a565b611081565b3480156107a957600080fd5b506104346107b8366004612902565b611113565b3480156107c957600080fd5b506103f060065481565b3480156107df57600080fd5b5061032c6107ee366004612902565b6111f5565b3480156107ff57600080fd5b506103f061080e3660046129c0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b34801561085257600080fd5b506103f060075481565b34801561086857600080fd5b506103f0600a5481565b34801561087e57600080fd5b5061043461088d3660046128e5565b611369565b34801561089e57600080fd5b506103f0600b5481565b3480156108b457600080fd5b506103f060085481565b6060600380546108cd906129ee565b80601f01602080910402602001604051908101604052809291908181526020018280546108f9906129ee565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b60003361095e818585611420565b60019150505b92915050565b6109726115d3565b670de0b6b3a76400006103e861098760025490565b610992906005612a70565b61099c9190612a87565b6109a69190612a87565b811015610a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e3525000000000000000000000000000000000060648201526084015b60405180910390fd5b610a4c81670de0b6b3a7640000612a70565b60065550565b600033610a60858285611654565b610a6b858585611725565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061095e9082908690610abd908790612ac2565b611420565b610aca6115d3565b610ad46000612056565b565b6000610ae06115d3565b50600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b610b166115d3565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610b746115d3565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d8060008114610bce576040519150601f19603f3d011682016040523d82523d6000602084013e610bd3565b606091505b5050905080610be157600080fd5b5050565b610bed6115d3565b60098054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6060600480546108cd906129ee565b610c3b6115d3565b7f000000000000000000000000a66d9518a3644c42d020dcf545baeb01fcee270373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d16576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a31565b610be182826120cd565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610de4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610a31565b610a6b8286868403611420565b60003361095e818585611725565b610e076115d3565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b610e656115d3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179055610ebe8282611081565b610be18282610b0e565b610ed06115d3565b73ffffffffffffffffffffffffffffffffffffffff8216610f4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a31565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190612ad5565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611057573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107b9190612aee565b50505050565b6110896115d3565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600d602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61111b6115d3565b670de0b6b3a76400006103e861113060025490565b61113b90600a612a70565b6111459190612a87565b61114f9190612a87565b8110156111dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610a31565b6111ef81670de0b6b3a7640000612a70565b60085550565b60006111ff6115d3565b620186a061120c60025490565b611217906001612a70565b6112219190612a87565b8210156112b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610a31565b6103e86112bc60025490565b6112c7906005612a70565b6112d19190612a87565b821115611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610a31565b50600755600190565b6113716115d3565b73ffffffffffffffffffffffffffffffffffffffff8116611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a31565b61141d81612056565b50565b73ffffffffffffffffffffffffffffffffffffffff83166114c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff8216611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610ad4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a31565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461107b5781811015611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a31565b61107b8484848403611420565b73ffffffffffffffffffffffffffffffffffffffff83166117c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff821661186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a31565b60105460ff161561192b5773ffffffffffffffffffffffffffffffffffffffff831660009081526011602052604090205460ff1661192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60448201527f6967726174696f6e2e00000000000000000000000000000000000000000000006064820152608401610a31565b806000036119445761193f8383600061214c565b505050565b60095460ff1615611d525760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590611995575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b80156119b6575073ffffffffffffffffffffffffffffffffffffffff821615155b80156119da575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b8015611a01575060055474010000000000000000000000000000000000000000900460ff16155b15611d525773ffffffffffffffffffffffffffffffffffffffff83166000908152600f602052604090205460ff168015611a61575073ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16155b15611b9857600654811115611af8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610a31565b60085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054611b2b9083612ac2565b1115611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610a31565b611d52565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600f602052604090205460ff168015611bf3575073ffffffffffffffffffffffffffffffffffffffff83166000908152600e602052604090205460ff16155b15611c8a57600654811115611b93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600e602052604090205460ff16611d525760085473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054611cea9083612ac2565b1115611d52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610a31565b3060009081526020819052604090205460075481108015908190611d7d5750600954610100900460ff165b8015611da4575060055474010000000000000000000000000000000000000000900460ff16155b8015611dd6575073ffffffffffffffffffffffffffffffffffffffff85166000908152600f602052604090205460ff16155b8015611e08575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff16155b8015611e3a575073ffffffffffffffffffffffffffffffffffffffff84166000908152600d602052604090205460ff16155b15611eaf57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055611e866123bb565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152600d602052604090205460ff74010000000000000000000000000000000000000000909204821615911680611f28575073ffffffffffffffffffffffffffffffffffffffff85166000908152600d602052604090205460ff165b15611f31575060005b600081156120425773ffffffffffffffffffffffffffffffffffffffff86166000908152600f602052604090205460ff168015611f7057506000600b54115b15611fb457611f956064611f8f600b548861249490919063ffffffff16565b906124a7565b905080600c6000828254611fa99190612ac2565b909155506120249050565b73ffffffffffffffffffffffffffffffffffffffff87166000908152600f602052604090205460ff168015611feb57506000600a54115b156120245761200a6064611f8f600a548861249490919063ffffffff16565b905080600c600082825461201e9190612ac2565b90915550505b80156120355761203587308361214c565b61203f8186612b0b565b94505b61204d87878761214c565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff82166000818152600f602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166121ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff8216612292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015612348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610a31565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361107b565b306000908152602081905260409020548015806123d85750600c54155b156123e05750565b6007546123ee906014612a70565b81111561240657600754612403906014612a70565b90505b6000612413600283612a87565b9050600061242183836124b3565b905061242c816124bf565b47821580159061243c5750600081115b1561107b5761244b83826126e6565b600c54604080518481526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150505050565b60006124a08284612a70565b9392505050565b60006124a08284612a87565b60006124a08284612b0b565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124f4576124f4612b1e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612599573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125bd9190612b4d565b816001815181106125d0576125d0612b1e565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612635307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611420565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906126b0908590600090869030904290600401612b6a565b600060405180830381600087803b1580156126ca57600080fd5b505af11580156126de573d6000803e3d6000fd5b505050505050565b612711307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611420565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061277260055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156127ff573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128249190612bf5565b5050505050565b600060208083528351808285015260005b818110156128585785810183015185820160400152820161283c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461141d57600080fd5b600080604083850312156128cc57600080fd5b82356128d781612897565b946020939093013593505050565b6000602082840312156128f757600080fd5b81356124a081612897565b60006020828403121561291457600080fd5b5035919050565b60008060006060848603121561293057600080fd5b833561293b81612897565b9250602084013561294b81612897565b929592945050506040919091013590565b801515811461141d57600080fd5b6000806040838503121561297d57600080fd5b823561298881612897565b915060208301356129988161295c565b809150509250929050565b6000602082840312156129b557600080fd5b81356124a08161295c565b600080604083850312156129d357600080fd5b82356129de81612897565b9150602083013561299881612897565b600181811c90821680612a0257607f821691505b602082108103612a3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761096457610964612a41565b600082612abd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8082018082111561096457610964612a41565b600060208284031215612ae757600080fd5b5051919050565b600060208284031215612b0057600080fd5b81516124a08161295c565b8181038181111561096457610964612a41565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060208284031215612b5f57600080fd5b81516124a081612897565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612bc757845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612b95565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215612c0a57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f9ca9293283357cabc95330025a415f32dcb2c1ab2b7300344458434e7d0be1864736f6c63430008130033
Deployed Bytecode Sourcemap
33531:12037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9659:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12019:201;;;;;;;;;;-1:-1:-1;12019:201:0;;;;;:::i;:::-;;:::i;:::-;;;1270:14:1;;1263:22;1245:41;;1233:2;1218:18;12019:201:0;1105:187:1;34550:36:0;;;;;;;;;;-1:-1:-1;34550:36:0;;;;;;;;34263:63;;;;;;;;;;-1:-1:-1;34263:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33606:51;;;;;;;;;;;;;;;;;;1752:42:1;1740:55;;;1722:74;;1710:2;1695:18;33606:51:0;1549:253:1;10788:108:0;;;;;;;;;;-1:-1:-1;10876:12:0;;10788:108;;;1953:25:1;;;1941:2;1926:18;10788:108:0;1807:177:1;34081:33:0;;;;;;;;;;;;;;;;37456:277;;;;;;;;;;-1:-1:-1;37456:277:0;;;;;:::i;:::-;;:::i;:::-;;12800:261;;;;;;;;;;-1:-1:-1;12800:261:0;;;;;:::i;:::-;;:::i;33709:53::-;;;;;;;;;;;;33755:6;33709:53;;10630:93;;;;;;;;;;-1:-1:-1;10630:93:0;;10713:2;3008:36:1;;2996:2;2981:18;10630:93:0;2866:184:1;13470:238:0;;;;;;;;;;-1:-1:-1;13470:238:0;;;;;:::i;:::-;;:::i;33664:38::-;;;;;;;;;;;;;;;33916:33;;;;;;;;;;-1:-1:-1;33916:33:0;;;;;;;;34593:57;;;;;;;;;;-1:-1:-1;34593:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39087:126;;;;;;;;;;-1:-1:-1;39087:126:0;;;;;:::i;:::-;39177:28;;39153:4;39177:28;;;:19;:28;;;;;;;;;39087:126;33956:37;;;;;;;;;;-1:-1:-1;33956:37:0;;;;;;;;;;;10959:127;;;;;;;;;;-1:-1:-1;10959:127:0;;;;;:::i;:::-;11060:18;;11033:7;11060:18;;;;;;;;;;;;10959:127;3100:103;;;;;;;;;;;;;:::i;36776:121::-;;;;;;;;;;;;;:::i;38008:169::-;;;;;;;;;;-1:-1:-1;38008:169:0;;;;;:::i;:::-;;:::i;45103:171::-;;;;;;;;;;-1:-1:-1;45103:171:0;;;;;:::i;:::-;;:::i;2459:87::-;;;;;;;;;;-1:-1:-1;2532:6:0;;;;2459:87;;38273:106;;;;;;;;;;-1:-1:-1;38273:106:0;;;;;:::i;:::-;;:::i;9878:104::-;;;;;;;;;;;;;:::i;38577:306::-;;;;;;;;;;-1:-1:-1;38577:306:0;;;;;:::i;:::-;;:::i;14211:436::-;;;;;;;;;;-1:-1:-1;14211:436:0;;;;;:::i;:::-;;:::i;11292:193::-;;;;;;;;;;-1:-1:-1;11292:193:0;;;;;:::i;:::-;;:::i;36598:126::-;;;;;;;;;;;;;:::i;45282:283::-;;;;;;;;;;-1:-1:-1;45282:283:0;;;;;:::i;:::-;;:::i;34484:57::-;;;;;;;;;;-1:-1:-1;34484:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44782:313;;;;;;;;;;-1:-1:-1;44782:313:0;;;;;:::i;:::-;;:::i;38387:182::-;;;;;;;;;;-1:-1:-1;38387:182:0;;;;;:::i;:::-;;:::i;37741:259::-;;;;;;;;;;-1:-1:-1;37741:259:0;;;;;:::i;:::-;;:::i;33801:35::-;;;;;;;;;;;;;;;;36967:481;;;;;;;;;;-1:-1:-1;36967:481:0;;;;;:::i;:::-;;:::i;11548:151::-;;;;;;;;;;-1:-1:-1;11548:151:0;;;;;:::i;:::-;11664:18;;;;11637:7;11664:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11548:151;33843:33;;;;;;;;;;;;;;;;34002:30;;;;;;;;;;;;;;;;3358:201;;;;;;;;;;-1:-1:-1;3358:201:0;;;;;:::i;:::-;;:::i;34041:31::-;;;;;;;;;;;;;;;;33883:24;;;;;;;;;;;;;;;;9659:100;9713:13;9746:5;9739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9659:100;:::o;12019:201::-;12102:4;1086:10;12158:32;1086:10;12174:7;12183:6;12158:8;:32::i;:::-;12208:4;12201:11;;;12019:201;;;;;:::o;37456:277::-;2345:13;:11;:13::i;:::-;37593:4:::1;37585;37564:13;10876:12:::0;;;10788:108;37564:13:::1;:17;::::0;37580:1:::1;37564:17;:::i;:::-;37563:26;;;;:::i;:::-;37562:35;;;;:::i;:::-;37552:6;:45;;37530:142;;;::::0;::::1;::::0;;5489:2:1;37530:142:0::1;::::0;::::1;5471:21:1::0;5528:2;5508:18;;;5501:30;5567:34;5547:18;;;5540:62;5638:17;5618:18;;;5611:45;5673:19;;37530:142:0::1;;;;;;;;;37706:19;:6:::0;37716:8:::1;37706:19;:::i;:::-;37683:20;:42:::0;-1:-1:-1;37456:277:0:o;12800:261::-;12897:4;1086:10;12955:38;12971:4;1086:10;12986:6;12955:15;:38::i;:::-;13004:27;13014:4;13020:2;13024:6;13004:9;:27::i;:::-;-1:-1:-1;13049:4:0;;12800:261;-1:-1:-1;;;;12800:261:0:o;13470:238::-;1086:10;13558:4;11664:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13558:4;;1086:10;13614:64;;1086:10;;11664:27;;13639:38;;13667:10;;13639:38;:::i;:::-;13614:8;:64::i;3100:103::-;2345:13;:11;:13::i;:::-;3165:30:::1;3192:1;3165:18;:30::i;:::-;3100:103::o:0;36776:121::-;36828:4;2345:13;:11;:13::i;:::-;-1:-1:-1;36845:14:0::1;:22:::0;;;::::1;::::0;;;36776:121;:::o;38008:169::-;2345:13;:11;:13::i;:::-;38123:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;38008:169::o;45103:171::-;2345:13;:11;:13::i;:::-;45176:12:::1;45194:6;:11;;45213:21;45194:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45175:64;;;45258:7;45250:16;;;::::0;::::1;;45164:110;45103:171:::0;:::o;38273:106::-;2345:13;:11;:13::i;:::-;38344:17:::1;:27:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;38273:106::o;9878:104::-;9934:13;9967:7;9960:14;;;;;:::i;38577:306::-;2345:13;:11;:13::i;:::-;38723::::1;38715:21;;:4;:21;;::::0;38693:128:::1;;;::::0;::::1;::::0;;6245:2:1;38693:128:0::1;::::0;::::1;6227:21:1::0;6284:2;6264:18;;;6257:30;6323:34;6303:18;;;6296:62;6394:27;6374:18;;;6367:55;6439:19;;38693:128:0::1;6043:421:1::0;38693:128:0::1;38834:41;38863:4;38869:5;38834:28;:41::i;14211:436::-:0;1086:10;14304:4;11664:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;14304:4;;1086:10;14451:15;14431:16;:35;;14423:85;;;;;;;6671:2:1;14423:85:0;;;6653:21:1;6710:2;6690:18;;;6683:30;6749:34;6729:18;;;6722:62;6820:7;6800:18;;;6793:35;6845:19;;14423:85:0;6469:401:1;14423:85:0;14544:60;14553:5;14560:7;14588:15;14569:16;:34;14544:8;:60::i;11292:193::-;11371:4;1086:10;11427:28;1086:10;11444:2;11448:6;11427:9;:28::i;36598:126::-;2345:13;:11;:13::i;:::-;36656:17:::1;:24:::0;;;::::1;;;::::0;;36691:17:::1;:25:::0;;;::::1;::::0;;36598:126::o;45282:283::-;2345:13;:11;:13::i;:::-;45406:32:::1;::::0;::::1;;::::0;;;:25:::1;:32;::::0;;;;:47;;;::::1;::::0;::::1;;;::::0;;45464:36:::1;45406:32:::0;:47;45464:15:::1;:36::i;:::-;45511:46;45537:5;45544:12;45511:25;:46::i;44782:313::-:0;2345:13;:11;:13::i;:::-;44902:20:::1;::::0;::::1;44894:59;;;::::0;::::1;::::0;;7077:2:1;44894:59:0::1;::::0;::::1;7059:21:1::0;7116:2;7096:18;;;7089:30;7155:28;7135:18;;;7128:56;7201:18;;44894:59:0::1;6875:350:1::0;44894:59:0::1;44991:39;::::0;;;;45024:4:::1;44991:39;::::0;::::1;1722:74:1::0;44964:24:0::1;::::0;44991::::1;::::0;::::1;::::0;::::1;::::0;1695:18:1;;44991:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45041:46;::::0;;;;:23:::1;7611:55:1::0;;;45041:46:0::1;::::0;::::1;7593:74:1::0;7683:18;;;7676:34;;;44964:66:0;;-1:-1:-1;45041:23:0;;::::1;::::0;::::1;::::0;7566:18:1;;45041:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44883:212;44782:313:::0;;:::o;38387:182::-;2345:13;:11;:13::i;:::-;38472:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;38527:34;;1245:41:1;;;38527:34:0::1;::::0;1218:18:1;38527:34:0::1;;;;;;;38387:182:::0;;:::o;37741:259::-;2345:13;:11;:13::i;:::-;37882:4:::1;37874;37852:13;10876:12:::0;;;10788:108;37852:13:::1;:18;::::0;37868:2:::1;37852:18;:::i;:::-;37851:27;;;;:::i;:::-;37850:36;;;;:::i;:::-;37840:6;:46;;37818:132;;;::::0;::::1;::::0;;8173:2:1;37818:132:0::1;::::0;::::1;8155:21:1::0;8212:2;8192:18;;;8185:30;8251:34;8231:18;;;8224:62;8322:6;8302:18;;;8295:34;8346:19;;37818:132:0::1;7971:400:1::0;37818:132:0::1;37973:19;:6:::0;37983:8:::1;37973:19;:::i;:::-;37961:9;:31:::0;-1:-1:-1;37741:259:0:o;36967:481::-;37064:4;2345:13;:11;:13::i;:::-;37138:6:::1;37117:13;10876:12:::0;;;10788:108;37117:13:::1;:17;::::0;37133:1:::1;37117:17;:::i;:::-;37116:28;;;;:::i;:::-;37103:9;:41;;37081:144;;;::::0;::::1;::::0;;8578:2:1;37081:144:0::1;::::0;::::1;8560:21:1::0;8617:2;8597:18;;;8590:30;8656:34;8636:18;;;8629:62;8727:23;8707:18;;;8700:51;8768:19;;37081:144:0::1;8376:417:1::0;37081:144:0::1;37293:4;37272:13;10876:12:::0;;;10788:108;37272:13:::1;:17;::::0;37288:1:::1;37272:17;:::i;:::-;37271:26;;;;:::i;:::-;37258:9;:39;;37236:141;;;::::0;::::1;::::0;;9000:2:1;37236:141:0::1;::::0;::::1;8982:21:1::0;9039:2;9019:18;;;9012:30;9078:34;9058:18;;;9051:62;9149:22;9129:18;;;9122:50;9189:19;;37236:141:0::1;8798:416:1::0;37236:141:0::1;-1:-1:-1::0;37388:18:0::1;:30:::0;37436:4:::1;::::0;36967:481::o;3358:201::-;2345:13;:11;:13::i;:::-;3447:22:::1;::::0;::::1;3439:73;;;::::0;::::1;::::0;;9421:2:1;3439:73:0::1;::::0;::::1;9403:21:1::0;9460:2;9440:18;;;9433:30;9499:34;9479:18;;;9472:62;9570:8;9550:18;;;9543:36;9596:19;;3439:73:0::1;9219:402:1::0;3439:73:0::1;3523:28;3542:8;3523:18;:28::i;:::-;3358:201:::0;:::o;18204:346::-;18306:19;;;18298:68;;;;;;;9828:2:1;18298:68:0;;;9810:21:1;9867:2;9847:18;;;9840:30;9906:34;9886:18;;;9879:62;9977:6;9957:18;;;9950:34;10001:19;;18298:68:0;9626:400:1;18298:68:0;18385:21;;;18377:68;;;;;;;10233:2:1;18377:68:0;;;10215:21:1;10272:2;10252:18;;;10245:30;10311:34;10291:18;;;10284:62;10382:4;10362:18;;;10355:32;10404:19;;18377:68:0;10031:398:1;18377:68:0;18458:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18510:32;;1953:25:1;;;18510:32:0;;1926:18:1;18510:32:0;;;;;;;18204:346;;;:::o;2624:132::-;2532:6;;2688:23;2532:6;1086:10;2688:23;2680:68;;;;;;;10636:2:1;2680:68:0;;;10618:21:1;;;10655:18;;;10648:30;10714:34;10694:18;;;10687:62;10766:18;;2680:68:0;10434:356:1;18841:419:0;11664:18;;;;18942:24;11664:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;19029:17;19009:37;;19005:248;;19091:6;19071:16;:26;;19063:68;;;;;;;10997:2:1;19063:68:0;;;10979:21:1;11036:2;11016:18;;;11009:30;11075:31;11055:18;;;11048:59;11124:18;;19063:68:0;10795:353:1;19063:68:0;19175:51;19184:5;19191:7;19219:6;19200:16;:25;19175:8;:51::i;39221:3523::-;39353:18;;;39345:68;;;;;;;11355:2:1;39345:68:0;;;11337:21:1;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;11504:7;11484:18;;;11477:35;11529:19;;39345:68:0;11153:401:1;39345:68:0;39432:16;;;39424:64;;;;;;;11761:2:1;39424:64:0;;;11743:21:1;11800:2;11780:18;;;11773:30;11839:34;11819:18;;;11812:62;11910:5;11890:18;;;11883:33;11933:19;;39424:64:0;11559:399:1;39424:64:0;39505:17;;;;39501:184;;;39565:31;;;;;;;:25;:31;;;;;;;;39539:134;;;;;;;12165:2:1;39539:134:0;;;12147:21:1;12204:2;12184:18;;;12177:30;12243:34;12223:18;;;12216:62;12314:11;12294:18;;;12287:39;12343:19;;39539:134:0;11963:405:1;39539:134:0;39701:6;39711:1;39701:11;39697:93;;39729:28;39745:4;39751:2;39755:1;39729:15;:28::i;:::-;39221:3523;;;:::o;39697:93::-;39806:14;;;;39802:1451;;;2532:6;;;39859:15;;;2532:6;;39859:15;;;;:49;;-1:-1:-1;2532:6:0;;;39895:13;;;2532:6;;39895:13;;39859:49;:86;;;;-1:-1:-1;39929:16:0;;;;;39859:86;:128;;;;-1:-1:-1;39966:21:0;;;39980:6;39966:21;;39859:128;:158;;;;-1:-1:-1;40009:8:0;;;;;;;40008:9;39859:158;39837:1405;;;40106:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;40163:35:0;;;;;;;:31;:35;;;;;;;;40162:36;40106:92;40080:1147;;;40285:20;;40275:6;:30;;40241:169;;;;;;;12575:2:1;40241:169:0;;;12557:21:1;12614:2;12594:18;;;12587:30;12653:34;12633:18;;;12626:62;12724:23;12704:18;;;12697:51;12765:19;;40241:169:0;12373:417:1;40241:169:0;40493:9;;11060:18;;;11033:7;11060:18;;;;;;;;;;;40467:22;;:6;:22;:::i;:::-;:35;;40433:140;;;;;;;12997:2:1;40433:140:0;;;12979:21:1;13036:2;13016:18;;;13009:30;13075:21;13055:18;;;13048:49;13114:18;;40433:140:0;12795:343:1;40433:140:0;40080:1147;;;40671:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;40726:37:0;;;;;;;:31;:37;;;;;;;;40725:38;40671:92;40645:582;;;40850:20;;40840:6;:30;;40806:170;;;;;;;13345:2:1;40806:170:0;;;13327:21:1;13384:2;13364:18;;;13357:30;13423:34;13403:18;;;13396:62;13494:24;13474:18;;;13467:52;13536:19;;40806:170:0;13143:418:1;40645:582:0;41007:35;;;;;;;:31;:35;;;;;;;;41002:225;;41127:9;;11060:18;;;11033:7;11060:18;;;;;;;;;;;41101:22;;:6;:22;:::i;:::-;:35;;41067:140;;;;;;;12997:2:1;41067:140:0;;;12979:21:1;13036:2;13016:18;;;13009:30;13075:21;13055:18;;;13048:49;13114:18;;41067:140:0;12795:343:1;41067:140:0;41314:4;41265:28;11060:18;;;;;;;;;;;41372;;41348:42;;;;;;;41421:41;;-1:-1:-1;41445:17:0;;;;;;;41421:41;:67;;;;-1:-1:-1;41480:8:0;;;;;;;41479:9;41421:67;:116;;;;-1:-1:-1;41506:31:0;;;;;;;:25;:31;;;;;;;;41505:32;41421:116;:159;;;;-1:-1:-1;41555:25:0;;;;;;;:19;:25;;;;;;;;41554:26;41421:159;:200;;;;-1:-1:-1;41598:23:0;;;;;;;:19;:23;;;;;;;;41597:24;41421:200;41403:332;;;41648:8;:15;;;;;;;;41680:10;:8;:10::i;:::-;41707:8;:16;;;;;;41403:332;41763:8;;41873:25;;;41747:12;41873:25;;;:19;:25;;;;;;41763:8;;;;;;;41762:9;;41873:25;;:52;;-1:-1:-1;41902:23:0;;;;;;;:19;:23;;;;;;;;41873:52;41869:100;;;-1:-1:-1;41952:5:0;41869:100;41981:12;42086:7;42082:609;;;42138:29;;;;;;;:25;:29;;;;;;;;:53;;;;;42190:1;42171:16;;:20;42138:53;42134:408;;;42219:37;42252:3;42219:28;42230:16;;42219:6;:10;;:28;;;;:::i;:::-;:32;;:37::i;:::-;42212:44;;42297:4;42275:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;42134:408:0;;-1:-1:-1;42134:408:0;;42363:31;;;;;;;:25;:31;;;;;;;;:54;;;;;42416:1;42398:15;;:19;42363:54;42359:183;;;42445:36;42477:3;42445:27;42456:15;;42445:6;:10;;:27;;;;:::i;:36::-;42438:43;;42522:4;42500:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;42359:183:0;42562:8;;42558:91;;42591:42;42607:4;42621;42628;42591:15;:42::i;:::-;42665:14;42675:4;42665:14;;:::i;:::-;;;42082:609;42703:33;42719:4;42725:2;42729:6;42703:15;:33::i;:::-;39334:3410;;;;39221:3523;;;:::o;3719:191::-;3812:6;;;;3829:17;;;;;;;;;;;3862:40;;3812:6;;;3829:17;3812:6;;3862:40;;3793:16;;3862:40;3782:128;3719:191;:::o;38891:188::-;38974:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;39031:40;;38974:39;;:31;39031:40;;;38891:188;;:::o;15117:806::-;15214:18;;;15206:68;;;;;;;11355:2:1;15206:68:0;;;11337:21:1;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;11504:7;11484:18;;;11477:35;11529:19;;15206:68:0;11153:401:1;15206:68:0;15293:16;;;15285:64;;;;;;;11761:2:1;15285:64:0;;;11743:21:1;11800:2;11780:18;;;11773:30;11839:34;11819:18;;;11812:62;11910:5;11890:18;;;11883:33;11933:19;;15285:64:0;11559:399:1;15285:64:0;15435:15;;;15413:19;15435:15;;;;;;;;;;;15469:21;;;;15461:72;;;;;;;13901:2:1;15461:72:0;;;13883:21:1;13940:2;13920:18;;;13913:30;13979:34;13959:18;;;13952:62;14050:8;14030:18;;;14023:36;14076:19;;15461:72:0;13699:402:1;15461:72:0;15569:15;;;;:9;:15;;;;;;;;;;;15587:20;;;15569:38;;15787:13;;;;;;;;;;:23;;;;;;15839:26;;1953:25:1;;;15787:13:0;;15839:26;;1926:18:1;15839:26:0;;;;;;;15878:37;39221:3523;43870:904;43953:4;43909:23;11060:18;;;;;;;;;;;43976:20;;;:47;;-1:-1:-1;44000:18:0;;:23;43976:47;43972:86;;;44040:7;43870:904::o;43972:86::-;44092:18;;:23;;44113:2;44092:23;:::i;:::-;44074:15;:41;44070:115;;;44150:18;;:23;;44171:2;44150:23;:::i;:::-;44132:41;;44070:115;44246:23;44272:19;44290:1;44272:15;:19;:::i;:::-;44246:45;-1:-1:-1;44302:26:0;44331:36;:15;44246:45;44331:19;:36::i;:::-;44302:65;;44380:36;44397:18;44380:16;:36::i;:::-;44455:21;44493:19;;;;;:42;;;44534:1;44516:15;:19;44493:42;44489:278;;;44552:46;44565:15;44582;44552:12;:46::i;:::-;44722:18;;44618:137;;;14308:25:1;;;14364:2;14349:18;;14342:34;;;14392:18;;;14385:34;;;;44618:137:0;;;;;;14296:2:1;44618:137:0;;;43898:876;;;;43870:904::o;29375:98::-;29433:7;29460:5;29464:1;29460;:5;:::i;:::-;29453:12;29375:98;-1:-1:-1;;;29375:98:0:o;29774:::-;29832:7;29859:5;29863:1;29859;:5;:::i;29018:98::-;29076:7;29103:5;29107:1;29103;:5;:::i;42752:589::-;42902:16;;;42916:1;42902:16;;;;;;;;42878:21;;42902:16;;;;;;;;;;-1:-1:-1;42902:16:0;42878:40;;42947:4;42929;42934:1;42929:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;42973:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42963:4;42968:1;42963:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;43008:62;43025:4;43040:15;43058:11;43008:8;:62::i;:::-;43109:224;;;;;:66;:15;:66;;;;:224;;43190:11;;43216:1;;43260:4;;43287;;43307:15;;43109:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42807:534;42752:589;:::o;43349:513::-;43497:62;43514:4;43529:15;43547:11;43497:8;:62::i;:::-;43602:15;:31;;;43641:9;43674:4;43694:11;43720:1;43763;43806:7;2532:6;;;;;2459:87;43806:7;43602:252;;;;;;;;;;16408:42:1;16477:15;;;43602:252:0;;;16459:34:1;16509:18;;;16502:34;;;;16552:18;;;16545:34;;;;16595:18;;;16588:34;16659:15;;;16638:19;;;16631:44;43828:15:0;16691:19:1;;;16684:35;16370:19;;43602:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43349:513;;:::o;14:607: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;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;712:42;705:5;701:54;694:5;691:65;681:93;;770:1;767;760:12;785:315;853:6;861;914:2;902:9;893:7;889:23;885:32;882:52;;;930:1;927;920:12;882:52;969:9;956:23;988:31;1013:5;988:31;:::i;:::-;1038:5;1090:2;1075:18;;;;1062:32;;-1:-1:-1;;;785:315:1:o;1297:247::-;1356:6;1409:2;1397:9;1388:7;1384:23;1380:32;1377:52;;;1425:1;1422;1415:12;1377:52;1464:9;1451:23;1483:31;1508:5;1483:31;:::i;1989:180::-;2048:6;2101:2;2089:9;2080:7;2076:23;2072:32;2069:52;;;2117:1;2114;2107:12;2069:52;-1:-1:-1;2140:23:1;;1989:180;-1:-1:-1;1989:180:1:o;2174:456::-;2251:6;2259;2267;2320:2;2308:9;2299:7;2295:23;2291:32;2288:52;;;2336:1;2333;2326:12;2288:52;2375:9;2362:23;2394:31;2419:5;2394:31;:::i;:::-;2444:5;-1:-1:-1;2501:2:1;2486:18;;2473:32;2514:33;2473:32;2514:33;:::i;:::-;2174:456;;2566:7;;-1:-1:-1;;;2620:2:1;2605:18;;;;2592:32;;2174:456::o;3055:118::-;3141:5;3134:13;3127:21;3120:5;3117:32;3107:60;;3163:1;3160;3153:12;3178:382;3243:6;3251;3304:2;3292:9;3283:7;3279:23;3275:32;3272:52;;;3320:1;3317;3310:12;3272:52;3359:9;3346:23;3378:31;3403:5;3378:31;:::i;:::-;3428:5;-1:-1:-1;3485:2:1;3470:18;;3457:32;3498:30;3457:32;3498:30;:::i;:::-;3547:7;3537:17;;;3178:382;;;;;:::o;3565:241::-;3621:6;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3729:9;3716:23;3748:28;3770:5;3748:28;:::i;3811:388::-;3879:6;3887;3940:2;3928:9;3919:7;3915:23;3911:32;3908:52;;;3956:1;3953;3946:12;3908:52;3995:9;3982:23;4014:31;4039:5;4014:31;:::i;:::-;4064:5;-1:-1:-1;4121:2:1;4106:18;;4093:32;4134:33;4093:32;4134:33;:::i;4204:437::-;4283:1;4279:12;;;;4326;;;4347:61;;4401:4;4393:6;4389:17;4379:27;;4347:61;4454:2;4446:6;4443:14;4423:18;4420:38;4417:218;;4491:77;4488:1;4481:88;4592:4;4589:1;4582:15;4620:4;4617:1;4610:15;4417:218;;4204:437;;;:::o;4646:184::-;4698:77;4695:1;4688:88;4795:4;4792:1;4785:15;4819:4;4816:1;4809:15;4835:168;4908:9;;;4939;;4956:15;;;4950:22;;4936:37;4926:71;;4977:18;;:::i;5008:274::-;5048:1;5074;5064:189;;5109:77;5106:1;5099:88;5210:4;5207:1;5200:15;5238:4;5235:1;5228:15;5064:189;-1:-1:-1;5267:9:1;;5008:274::o;5703:125::-;5768:9;;;5789:10;;;5786:36;;;5802:18;;:::i;7230:184::-;7300:6;7353:2;7341:9;7332:7;7328:23;7324:32;7321:52;;;7369:1;7366;7359:12;7321:52;-1:-1:-1;7392:16:1;;7230:184;-1:-1:-1;7230:184:1:o;7721:245::-;7788:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:52;;;7857:1;7854;7847:12;7809:52;7889:9;7883:16;7908:28;7930:5;7908:28;:::i;13566:128::-;13633:9;;;13654:11;;;13651:37;;;13668:18;;:::i;14619:184::-;14671:77;14668:1;14661:88;14768:4;14765:1;14758:15;14792:4;14789:1;14782:15;14808:251;14878:6;14931:2;14919:9;14910:7;14906:23;14902:32;14899:52;;;14947:1;14944;14937:12;14899:52;14979:9;14973:16;14998:31;15023:5;14998:31;:::i;15064:1026::-;15326:4;15374:3;15363:9;15359:19;15405:6;15394:9;15387:25;15431:2;15469:6;15464:2;15453:9;15449:18;15442:34;15512:3;15507:2;15496:9;15492:18;15485:31;15536:6;15571;15565:13;15602:6;15594;15587:22;15640:3;15629:9;15625:19;15618:26;;15679:2;15671:6;15667:15;15653:29;;15700:1;15710:218;15724:6;15721:1;15718:13;15710:218;;;15789:13;;15804:42;15785:62;15773:75;;15903:15;;;;15868:12;;;;15746:1;15739:9;15710:218;;;-1:-1:-1;;15996:42:1;15984:55;;;;15979:2;15964:18;;15957:83;-1:-1:-1;;;16071:3:1;16056:19;16049:35;15945:3;15064:1026;-1:-1:-1;;;15064:1026:1:o;16730:306::-;16818:6;16826;16834;16887:2;16875:9;16866:7;16862:23;16858:32;16855:52;;;16903:1;16900;16893:12;16855:52;16932:9;16926:16;16916:26;;16982:2;16971:9;16967:18;16961:25;16951:35;;17026:2;17015:9;17011:18;17005:25;16995:35;;16730:306;;;;;:::o
Swarm Source
ipfs://f9ca9293283357cabc95330025a415f32dcb2c1ab2b7300344458434e7d0be18
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.