ERC-20
Overview
Max Total Supply
10,000,000 CFC
Holders
550
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,321.931869731730315393 CFCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoFightClubToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-15 */ /* Fusing Backyard Combat Culture with Crypto. Elevating the personal brand value of aspiring professional fighters. Website: https://cryptofightclub.vip/ Telegram: https://t.me/CFCeth Twitter: https://twitter.com/CFC_erc dApp: https://cfc-official.web.app/ Mobile App: https://play.google.com/store/apps/details?id=com.cfc.crypto.app&pli=1 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; pragma experimental ABIEncoderV2; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // pragma solidity ^0.8.0; // import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) // pragma solidity ^0.8.0; // import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) // pragma solidity ^0.8.0; // import "./IERC20.sol"; // import "./extensions/IERC20Metadata.sol"; // import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; // import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract CryptoFightClubToken is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 private buyLiquidityFee; uint256 public sellTotalFees; uint256 private sellMarketingFee; uint256 private sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private previousFee; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Crypto Fight Club", "CFC") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), type(uint256).max); uint256 totalSupply = 10_000_000 ether; maxTransactionAmount = (totalSupply * 2) / 100; maxWallet = totalSupply; swapTokensAtAmount = (totalSupply * 1) / 1000; buyMarketingFee = 20; buyLiquidityFee = 0; buyTotalFees = buyMarketingFee + buyLiquidityFee; sellMarketingFee = 20; sellLiquidityFee = 0; sellTotalFees = sellMarketingFee + sellLiquidityFee; previousFee = sellTotalFees; marketingWallet = 0x93b1e07ca231421336125C707D6C278fbd534750; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(marketingWallet, true); _mint(msg.sender, totalSupply); } receive() external payable {} function burn(uint256 amount) external { _burn(msg.sender, amount); } function enableTrading() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _approve(address(this), address(uniswapV2Pair), type(uint256).max); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); tradingActive = true; swapEnabled = true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "ERC20: Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "ERC20: Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAndTxnAmount( uint256 newTxnNum, uint256 newMaxWalletNum ) external onlyOwner { require( newTxnNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxTxn lower than 0.5%" ); require( newMaxWalletNum >= ((totalSupply() * 5) / 1000), "ERC20: Cannot set maxWallet lower than 0.5%" ); maxWallet = newMaxWalletNum; maxTransactionAmount = newTxnNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyMarketingFee + buyLiquidityFee; require(buyTotalFees <= 20, "ERC20: Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellMarketingFee + sellLiquidityFee; previousFee = sellTotalFees; require(sellTotalFees <= 20, "ERC20: Must keep fees at 20% or less"); } function updateMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "ERC20: Address 0"); address oldWallet = marketingWallet; marketingWallet = _marketingWallet; emit marketingWalletUpdated(marketingWallet, oldWallet); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function withdrawStuckETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } 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 (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != deadAddress && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "ERC20: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "ERC20: Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "ERC20: Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "ERC20: Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); sellTotalFees = previousFee; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600b805461ffff191690553480156200001b575f80fd5b506040518060400160405280601181526020017021b93cb83a37902334b3b43a1021b63ab160791b8152506040518060400160405280600381526020016243464360e81b815250816003908162000073919062000621565b50600462000082828262000621565b5050506200009f620000996200024260201b60201c565b62000246565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000c89030905f1962000297565b6a084595161401484a0000006064620000e3826002620006fd565b620000ef91906200071d565b600855600a8190556103e862000107826001620006fd565b6200011391906200071d565b6009556014600d8190555f600e8190556200012e916200073d565b600c55601460108190555f601181905562000149916200073d565b600f819055601455600780546001600160a01b0319167393b1e07ca231421336125c707d6c278fbd534750179055620001966200018e6005546001600160a01b031690565b6001620003c2565b620001a3306001620003c2565b620001b261dead6001620003c2565b600754620001cb906001600160a01b03166001620003c2565b620001ea620001e26005546001600160a01b031690565b60016200042a565b620001f73060016200042a565b6200020661dead60016200042a565b608051620002169060016200042a565b6007546200022f906001600160a01b031660016200042a565b6200023b33826200045e565b5062000753565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620002ff5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003625760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620002f6565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620003cc6200051f565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620004346200051f565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b6001600160a01b038216620004b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620002f6565b8060025f828254620004c991906200073d565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200057b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002f6565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620005ab57607f821691505b602082108103620005ca57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200057d575f81815260208120601f850160051c81016020861015620005f85750805b601f850160051c820191505b81811015620006195782815560010162000604565b505050505050565b81516001600160401b038111156200063d576200063d62000582565b62000655816200064e845462000596565b84620005d0565b602080601f8311600181146200068b575f8415620006735750858301515b5f19600386901b1c1916600185901b17855562000619565b5f85815260208120601f198616915b82811015620006bb578886015182559484019460019091019084016200069a565b5085821015620006d957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620007175762000717620006e9565b92915050565b5f826200073857634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620007175762000717620006e9565b6080516124b9620007ab5f395f81816102a00152818161084c015281816108db01528181610a0d01528181610ab801528181611e2b01528181611ee201528181611f1e01528181611f920152611fb901526124b95ff3fe60806040526004361061020a575f3560e01c806375f0a87411610113578063c02466681161009d578063dd62ed3e1161006d578063dd62ed3e146105f5578063e2f4560514610614578063f2fde38b14610629578063f5648a4f14610648578063f8b45b051461065c575f80fd5b8063c02466681461058d578063c8c8ebe4146105ac578063d257b34f146105c1578063d85ba063146105e0575f80fd5b806396188399116100e357806396188399146104f8578063a457c2d714610517578063a9059cbb14610536578063aacebbe314610555578063bbc0c74214610574575f80fd5b806375f0a874146104945780638a8c523c146104b35780638da5cb5b146104c757806395d89b41146104e4575f80fd5b806342966c68116101945780636a486a8e116101645780636a486a8e146103fa5780636ddd17131461040f57806370a082311461042d578063715018a6146104615780637571336a14610475575f80fd5b806342966c681461036657806349bd5a5e146103855780634fbee193146103a457806366ca9b83146103db575f80fd5b806318160ddd116101da57806318160ddd146102da57806323b872dd146102f857806327c8f83514610317578063313ce5671461032c5780633950935114610347575f80fd5b806302dbd8f81461021557806306fdde0314610236578063095ea7b3146102605780631694505e1461028f575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b5061023461022f366004612067565b610671565b005b348015610241575f80fd5b5061024a6106c2565b6040516102579190612087565b60405180910390f35b34801561026b575f80fd5b5061027f61027a3660046120e6565b610752565b6040519015158152602001610257565b34801561029a575f80fd5b506102c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b3480156102e5575f80fd5b506002545b604051908152602001610257565b348015610303575f80fd5b5061027f610312366004612110565b61076b565b348015610322575f80fd5b506102c261dead81565b348015610337575f80fd5b5060405160128152602001610257565b348015610352575f80fd5b5061027f6103613660046120e6565b61078e565b348015610371575f80fd5b5061023461038036600461214e565b6107af565b348015610390575f80fd5b506006546102c2906001600160a01b031681565b3480156103af575f80fd5b5061027f6103be366004612165565b6001600160a01b03165f9081526015602052604090205460ff1690565b3480156103e6575f80fd5b506102346103f5366004612067565b6107bc565b348015610405575f80fd5b506102ea600f5481565b34801561041a575f80fd5b50600b5461027f90610100900460ff1681565b348015610438575f80fd5b506102ea610447366004612165565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b506102346107fd565b348015610480575f80fd5b5061023461048f36600461218d565b610810565b34801561049f575f80fd5b506007546102c2906001600160a01b031681565b3480156104be575f80fd5b50610234610842565b3480156104d2575f80fd5b506005546001600160a01b03166102c2565b3480156104ef575f80fd5b5061024a610b90565b348015610503575f80fd5b50610234610512366004612067565b610b9f565b348015610522575f80fd5b5061027f6105313660046120e6565b610cb4565b348015610541575f80fd5b5061027f6105503660046120e6565b610d2e565b348015610560575f80fd5b5061023461056f366004612165565b610d3b565b34801561057f575f80fd5b50600b5461027f9060ff1681565b348015610598575f80fd5b506102346105a736600461218d565b610ddc565b3480156105b7575f80fd5b506102ea60085481565b3480156105cc575f80fd5b5061027f6105db36600461214e565b610e42565b3480156105eb575f80fd5b506102ea600c5481565b348015610600575f80fd5b506102ea61060f3660046121c4565b610f81565b34801561061f575f80fd5b506102ea60095481565b348015610634575f80fd5b50610234610643366004612165565b610fab565b348015610653575f80fd5b50610234611021565b348015610667575f80fd5b506102ea600a5481565b610679611073565b6010829055601181905561068d8183612204565b600f819055601481815510156106be5760405162461bcd60e51b81526004016106b590612217565b60405180910390fd5b5050565b6060600380546106d19061225b565b80601f01602080910402602001604051908101604052809291908181526020018280546106fd9061225b565b80156107485780601f1061071f57610100808354040283529160200191610748565b820191905f5260205f20905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b5f3361075f8185856110cd565b60019150505b92915050565b5f336107788582856111f0565b610783858585611262565b506001949350505050565b5f3361075f8185856107a08383610f81565b6107aa9190612204565b6110cd565b6107b93382611916565b50565b6107c4611073565b600d829055600e8190556107d88183612204565b600c819055601410156106be5760405162461bcd60e51b81526004016106b590612217565b610805611073565b61080e5f611a46565b565b610818611073565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b61084a611073565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ca9190612293565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610935573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109599190612293565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156109a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c79190612293565b600680546001600160a01b0319166001600160a01b039290921691821790556109f39030905f196110cd565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610a63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8791906122ae565b50600654610a9f906001600160a01b03166001611a97565b600654610ab6906001600160a01b03166001610810565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7194730610b05306001600160a01b03165f9081526020819052604090205490565b5f80610b196005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610b3b969594939291906122c9565b60606040518083038185885af1158015610b57573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b7c9190612304565b5050600b805461ffff191661010117905550565b6060600480546106d19061225b565b610ba7611073565b6103e8610bb360025490565b610bbe90600561232f565b610bc89190612346565b821015610c285760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016106b5565b6103e8610c3460025490565b610c3f90600561232f565b610c499190612346565b811015610cac5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016106b5565b600a55600855565b5f3381610cc18286610f81565b905083811015610d215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b5565b61078382868684036110cd565b5f3361075f818585611262565b610d43611073565b6001600160a01b038116610d8c5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016106b5565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610de4611073565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b5f610e4b611073565b620186a0610e5860025490565b610e6390600161232f565b610e6d9190612346565b821015610ee25760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016106b5565b6103e8610eee60025490565b610ef990600561232f565b610f039190612346565b821115610f785760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016106b5565b50600955600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610fb3611073565b6001600160a01b0381166110185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b6107b981611a46565b611029611073565b6040515f90339047908381818185875af1925050503d805f8114611068576040519150601f19603f3d011682016040523d82523d5f602084013e61106d565b606091505b50505050565b6005546001600160a01b0316331461080e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b5565b6001600160a01b03831661112f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b5565b6001600160a01b0382166111905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b5565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111fb8484610f81565b90505f19811461106d57818110156112555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b5565b61106d84848484036110cd565b6001600160a01b0383166112885760405162461bcd60e51b81526004016106b590612365565b6001600160a01b0382166112ae5760405162461bcd60e51b81526004016106b5906123aa565b805f036112c5576112c083835f611aea565b505050565b6005546001600160a01b038481169116148015906112f157506005546001600160a01b03838116911614155b801561130557506001600160a01b03821615155b801561131c57506001600160a01b03821661dead14155b80156113325750600654600160a01b900460ff16155b1561164c57600b5460ff166113ca576001600160a01b0383165f9081526015602052604090205460ff168061137e57506001600160a01b0382165f9081526015602052604090205460ff165b6113ca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016106b5565b6001600160a01b0383165f9081526017602052604090205460ff16801561140957506001600160a01b0382165f9081526016602052604090205460ff16155b156114fe576008548111156114865760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016106b5565b600a546001600160a01b0383165f908152602081905260409020546114ab9083612204565b11156114f95760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016106b5565b61164c565b6001600160a01b0382165f9081526017602052604090205460ff16801561153d57506001600160a01b0383165f9081526016602052604090205460ff16155b156115ba576008548111156114f95760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016106b5565b6001600160a01b0382165f9081526016602052604090205460ff1661164c57600a546001600160a01b0383165f908152602081905260409020546115fe9083612204565b111561164c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016106b5565b305f90815260208190526040902054600954811080159081906116765750600b54610100900460ff165b801561168c5750600654600160a01b900460ff16155b80156116b057506001600160a01b0385165f9081526017602052604090205460ff16155b80156116d457506001600160a01b0385165f9081526015602052604090205460ff16155b80156116f857506001600160a01b0384165f9081526015602052604090205460ff16155b15611726576006805460ff60a01b1916600160a01b179055611718611c12565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526015602052604090205460ff600160a01b90920482161591168061177257506001600160a01b0385165f9081526015602052604090205460ff165b1561177a57505f5b5f81156118fc576001600160a01b0386165f9081526017602052604090205460ff1680156117a957505f600f54115b15611835576117ce60646117c8600f5488611dae90919063ffffffff16565b90611dc0565b9050600f54601154826117e1919061232f565b6117eb9190612346565b60135f8282546117fb9190612204565b9091555050600f54601054611810908361232f565b61181a9190612346565b60125f82825461182a9190612204565b909155506118de9050565b6001600160a01b0387165f9081526017602052604090205460ff16801561185d57505f600c54115b156118de5761187c60646117c8600c5488611dae90919063ffffffff16565b9050600c54600e548261188f919061232f565b6118999190612346565b60135f8282546118a99190612204565b9091555050600c54600d546118be908361232f565b6118c89190612346565b60125f8282546118d89190612204565b90915550505b80156118ef576118ef873083611aea565b6118f981866123ed565b94505b611907878787611aea565b5050601454600f555050505050565b6001600160a01b0382166119765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b6001600160a01b0382165f90815260208190526040902054818110156119e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b5565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b105760405162461bcd60e51b81526004016106b590612365565b6001600160a01b038216611b365760405162461bcd60e51b81526004016106b5906123aa565b6001600160a01b0383165f9081526020819052604090205481811015611bad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b5565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361106d565b305f9081526020819052604081205490505f601254601354611c349190612204565b90505f821580611c42575081155b15611c4c57505050565b600954611c5a90601461232f565b831115611c7257600954611c6f90601461232f565b92505b5f60028360135486611c84919061232f565b611c8e9190612346565b611c989190612346565b90505f611ca58583611dcb565b905047611cb182611dd6565b5f611cbc4783611dcb565b90505f611cd8876117c860125485611dae90919063ffffffff16565b90505f611ce582846123ed565b5f601381905560125590508515801590611cfe57505f81115b15611d5157611d0d8682611f8c565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611d9b576040519150601f19603f3d011682016040523d82523d5f602084013e611da0565b606091505b505050505050505050505050565b5f611db9828461232f565b9392505050565b5f611db98284612346565b5f611db982846123ed565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e0957611e09612400565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea99190612293565b81600181518110611ebc57611ebc612400565b60200260200101906001600160a01b031690816001600160a01b031681525050611f07307f0000000000000000000000000000000000000000000000000000000000000000846110cd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f5b9085905f90869030904290600401612414565b5f604051808303815f87803b158015611f72575f80fd5b505af1158015611f84573d5f803e3d5ffd5b505050505050565b611fb7307f0000000000000000000000000000000000000000000000000000000000000000846110cd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611ffd6005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161201f969594939291906122c9565b60606040518083038185885af115801561203b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120609190612304565b5050505050565b5f8060408385031215612078575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156120b257858101830151858201604001528201612096565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107b9575f80fd5b5f80604083850312156120f7575f80fd5b8235612102816120d2565b946020939093013593505050565b5f805f60608486031215612122575f80fd5b833561212d816120d2565b9250602084013561213d816120d2565b929592945050506040919091013590565b5f6020828403121561215e575f80fd5b5035919050565b5f60208284031215612175575f80fd5b8135611db9816120d2565b80151581146107b9575f80fd5b5f806040838503121561219e575f80fd5b82356121a9816120d2565b915060208301356121b981612180565b809150509250929050565b5f80604083850312156121d5575f80fd5b82356121e0816120d2565b915060208301356121b9816120d2565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610765576107656121f0565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b600181811c9082168061226f57607f821691505b60208210810361228d57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156122a3575f80fd5b8151611db9816120d2565b5f602082840312156122be575f80fd5b8151611db981612180565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f60608486031215612316575f80fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610765576107656121f0565b5f8261236057634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610765576107656121f0565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124625784516001600160a01b03168352938301939183019160010161243d565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c2530e447b26d2b48a0b590fbbed1750284f053279ff579484d09b901920d0164736f6c63430008140033
Deployed Bytecode
0x60806040526004361061020a575f3560e01c806375f0a87411610113578063c02466681161009d578063dd62ed3e1161006d578063dd62ed3e146105f5578063e2f4560514610614578063f2fde38b14610629578063f5648a4f14610648578063f8b45b051461065c575f80fd5b8063c02466681461058d578063c8c8ebe4146105ac578063d257b34f146105c1578063d85ba063146105e0575f80fd5b806396188399116100e357806396188399146104f8578063a457c2d714610517578063a9059cbb14610536578063aacebbe314610555578063bbc0c74214610574575f80fd5b806375f0a874146104945780638a8c523c146104b35780638da5cb5b146104c757806395d89b41146104e4575f80fd5b806342966c68116101945780636a486a8e116101645780636a486a8e146103fa5780636ddd17131461040f57806370a082311461042d578063715018a6146104615780637571336a14610475575f80fd5b806342966c681461036657806349bd5a5e146103855780634fbee193146103a457806366ca9b83146103db575f80fd5b806318160ddd116101da57806318160ddd146102da57806323b872dd146102f857806327c8f83514610317578063313ce5671461032c5780633950935114610347575f80fd5b806302dbd8f81461021557806306fdde0314610236578063095ea7b3146102605780631694505e1461028f575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b5061023461022f366004612067565b610671565b005b348015610241575f80fd5b5061024a6106c2565b6040516102579190612087565b60405180910390f35b34801561026b575f80fd5b5061027f61027a3660046120e6565b610752565b6040519015158152602001610257565b34801561029a575f80fd5b506102c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b3480156102e5575f80fd5b506002545b604051908152602001610257565b348015610303575f80fd5b5061027f610312366004612110565b61076b565b348015610322575f80fd5b506102c261dead81565b348015610337575f80fd5b5060405160128152602001610257565b348015610352575f80fd5b5061027f6103613660046120e6565b61078e565b348015610371575f80fd5b5061023461038036600461214e565b6107af565b348015610390575f80fd5b506006546102c2906001600160a01b031681565b3480156103af575f80fd5b5061027f6103be366004612165565b6001600160a01b03165f9081526015602052604090205460ff1690565b3480156103e6575f80fd5b506102346103f5366004612067565b6107bc565b348015610405575f80fd5b506102ea600f5481565b34801561041a575f80fd5b50600b5461027f90610100900460ff1681565b348015610438575f80fd5b506102ea610447366004612165565b6001600160a01b03165f9081526020819052604090205490565b34801561046c575f80fd5b506102346107fd565b348015610480575f80fd5b5061023461048f36600461218d565b610810565b34801561049f575f80fd5b506007546102c2906001600160a01b031681565b3480156104be575f80fd5b50610234610842565b3480156104d2575f80fd5b506005546001600160a01b03166102c2565b3480156104ef575f80fd5b5061024a610b90565b348015610503575f80fd5b50610234610512366004612067565b610b9f565b348015610522575f80fd5b5061027f6105313660046120e6565b610cb4565b348015610541575f80fd5b5061027f6105503660046120e6565b610d2e565b348015610560575f80fd5b5061023461056f366004612165565b610d3b565b34801561057f575f80fd5b50600b5461027f9060ff1681565b348015610598575f80fd5b506102346105a736600461218d565b610ddc565b3480156105b7575f80fd5b506102ea60085481565b3480156105cc575f80fd5b5061027f6105db36600461214e565b610e42565b3480156105eb575f80fd5b506102ea600c5481565b348015610600575f80fd5b506102ea61060f3660046121c4565b610f81565b34801561061f575f80fd5b506102ea60095481565b348015610634575f80fd5b50610234610643366004612165565b610fab565b348015610653575f80fd5b50610234611021565b348015610667575f80fd5b506102ea600a5481565b610679611073565b6010829055601181905561068d8183612204565b600f819055601481815510156106be5760405162461bcd60e51b81526004016106b590612217565b60405180910390fd5b5050565b6060600380546106d19061225b565b80601f01602080910402602001604051908101604052809291908181526020018280546106fd9061225b565b80156107485780601f1061071f57610100808354040283529160200191610748565b820191905f5260205f20905b81548152906001019060200180831161072b57829003601f168201915b5050505050905090565b5f3361075f8185856110cd565b60019150505b92915050565b5f336107788582856111f0565b610783858585611262565b506001949350505050565b5f3361075f8185856107a08383610f81565b6107aa9190612204565b6110cd565b6107b93382611916565b50565b6107c4611073565b600d829055600e8190556107d88183612204565b600c819055601410156106be5760405162461bcd60e51b81526004016106b590612217565b610805611073565b61080e5f611a46565b565b610818611073565b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b61084a611073565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ca9190612293565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610935573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109599190612293565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156109a3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c79190612293565b600680546001600160a01b0319166001600160a01b039290921691821790556109f39030905f196110cd565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301525f1960248301529091169063095ea7b3906044016020604051808303815f875af1158015610a63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8791906122ae565b50600654610a9f906001600160a01b03166001611a97565b600654610ab6906001600160a01b03166001610810565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7194730610b05306001600160a01b03165f9081526020819052604090205490565b5f80610b196005546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610b3b969594939291906122c9565b60606040518083038185885af1158015610b57573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610b7c9190612304565b5050600b805461ffff191661010117905550565b6060600480546106d19061225b565b610ba7611073565b6103e8610bb360025490565b610bbe90600561232f565b610bc89190612346565b821015610c285760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b60648201526084016106b5565b6103e8610c3460025490565b610c3f90600561232f565b610c499190612346565b811015610cac5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b60648201526084016106b5565b600a55600855565b5f3381610cc18286610f81565b905083811015610d215760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b5565b61078382868684036110cd565b5f3361075f818585611262565b610d43611073565b6001600160a01b038116610d8c5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b60448201526064016106b5565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b05674905f90a35050565b610de4611073565b6001600160a01b0382165f81815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b5f610e4b611073565b620186a0610e5860025490565b610e6390600161232f565b610e6d9190612346565b821015610ee25760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e0000000060648201526084016106b5565b6103e8610eee60025490565b610ef990600561232f565b610f039190612346565b821115610f785760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e000000000060648201526084016106b5565b50600955600190565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610fb3611073565b6001600160a01b0381166110185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b5565b6107b981611a46565b611029611073565b6040515f90339047908381818185875af1925050503d805f8114611068576040519150601f19603f3d011682016040523d82523d5f602084013e61106d565b606091505b50505050565b6005546001600160a01b0316331461080e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b5565b6001600160a01b03831661112f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b5565b6001600160a01b0382166111905760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b5565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6111fb8484610f81565b90505f19811461106d57818110156112555760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b5565b61106d84848484036110cd565b6001600160a01b0383166112885760405162461bcd60e51b81526004016106b590612365565b6001600160a01b0382166112ae5760405162461bcd60e51b81526004016106b5906123aa565b805f036112c5576112c083835f611aea565b505050565b6005546001600160a01b038481169116148015906112f157506005546001600160a01b03838116911614155b801561130557506001600160a01b03821615155b801561131c57506001600160a01b03821661dead14155b80156113325750600654600160a01b900460ff16155b1561164c57600b5460ff166113ca576001600160a01b0383165f9081526015602052604090205460ff168061137e57506001600160a01b0382165f9081526015602052604090205460ff165b6113ca5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e00000060448201526064016106b5565b6001600160a01b0383165f9081526017602052604090205460ff16801561140957506001600160a01b0382165f9081526016602052604090205460ff16155b156114fe576008548111156114865760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e0000000060648201526084016106b5565b600a546001600160a01b0383165f908152602081905260409020546114ab9083612204565b11156114f95760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016106b5565b61164c565b6001600160a01b0382165f9081526017602052604090205460ff16801561153d57506001600160a01b0383165f9081526016602052604090205460ff16155b156115ba576008548111156114f95760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e00000060648201526084016106b5565b6001600160a01b0382165f9081526016602052604090205460ff1661164c57600a546001600160a01b0383165f908152602081905260409020546115fe9083612204565b111561164c5760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c657420657863656564656400000000000060448201526064016106b5565b305f90815260208190526040902054600954811080159081906116765750600b54610100900460ff165b801561168c5750600654600160a01b900460ff16155b80156116b057506001600160a01b0385165f9081526017602052604090205460ff16155b80156116d457506001600160a01b0385165f9081526015602052604090205460ff16155b80156116f857506001600160a01b0384165f9081526015602052604090205460ff16155b15611726576006805460ff60a01b1916600160a01b179055611718611c12565b6006805460ff60a01b191690555b6006546001600160a01b0386165f9081526015602052604090205460ff600160a01b90920482161591168061177257506001600160a01b0385165f9081526015602052604090205460ff165b1561177a57505f5b5f81156118fc576001600160a01b0386165f9081526017602052604090205460ff1680156117a957505f600f54115b15611835576117ce60646117c8600f5488611dae90919063ffffffff16565b90611dc0565b9050600f54601154826117e1919061232f565b6117eb9190612346565b60135f8282546117fb9190612204565b9091555050600f54601054611810908361232f565b61181a9190612346565b60125f82825461182a9190612204565b909155506118de9050565b6001600160a01b0387165f9081526017602052604090205460ff16801561185d57505f600c54115b156118de5761187c60646117c8600c5488611dae90919063ffffffff16565b9050600c54600e548261188f919061232f565b6118999190612346565b60135f8282546118a99190612204565b9091555050600c54600d546118be908361232f565b6118c89190612346565b60125f8282546118d89190612204565b90915550505b80156118ef576118ef873083611aea565b6118f981866123ed565b94505b611907878787611aea565b5050601454600f555050505050565b6001600160a01b0382166119765760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b5565b6001600160a01b0382165f90815260208190526040902054818110156119e95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b5565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b105760405162461bcd60e51b81526004016106b590612365565b6001600160a01b038216611b365760405162461bcd60e51b81526004016106b5906123aa565b6001600160a01b0383165f9081526020819052604090205481811015611bad5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b5565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361106d565b305f9081526020819052604081205490505f601254601354611c349190612204565b90505f821580611c42575081155b15611c4c57505050565b600954611c5a90601461232f565b831115611c7257600954611c6f90601461232f565b92505b5f60028360135486611c84919061232f565b611c8e9190612346565b611c989190612346565b90505f611ca58583611dcb565b905047611cb182611dd6565b5f611cbc4783611dcb565b90505f611cd8876117c860125485611dae90919063ffffffff16565b90505f611ce582846123ed565b5f601381905560125590508515801590611cfe57505f81115b15611d5157611d0d8682611f8c565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b039091169047905f81818185875af1925050503d805f8114611d9b576040519150601f19603f3d011682016040523d82523d5f602084013e611da0565b606091505b505050505050505050505050565b5f611db9828461232f565b9392505050565b5f611db98284612346565b5f611db982846123ed565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611e0957611e09612400565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e85573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea99190612293565b81600181518110611ebc57611ebc612400565b60200260200101906001600160a01b031690816001600160a01b031681525050611f07307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110cd565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f5b9085905f90869030904290600401612414565b5f604051808303815f87803b158015611f72575f80fd5b505af1158015611f84573d5f803e3d5ffd5b505050505050565b611fb7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110cd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611ffd6005546001600160a01b031690565b426040518863ffffffff1660e01b815260040161201f969594939291906122c9565b60606040518083038185885af115801561203b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120609190612304565b5050505050565b5f8060408385031215612078575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156120b257858101830151858201604001528201612096565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107b9575f80fd5b5f80604083850312156120f7575f80fd5b8235612102816120d2565b946020939093013593505050565b5f805f60608486031215612122575f80fd5b833561212d816120d2565b9250602084013561213d816120d2565b929592945050506040919091013590565b5f6020828403121561215e575f80fd5b5035919050565b5f60208284031215612175575f80fd5b8135611db9816120d2565b80151581146107b9575f80fd5b5f806040838503121561219e575f80fd5b82356121a9816120d2565b915060208301356121b981612180565b809150509250929050565b5f80604083850312156121d5575f80fd5b82356121e0816120d2565b915060208301356121b9816120d2565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610765576107656121f0565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420323025206f72206040820152636c65737360e01b606082015260800190565b600181811c9082168061226f57607f821691505b60208210810361228d57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156122a3575f80fd5b8151611db9816120d2565b5f602082840312156122be575f80fd5b8151611db981612180565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b5f805f60608486031215612316575f80fd5b8351925060208401519150604084015190509250925092565b8082028115828204841417610765576107656121f0565b5f8261236057634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610765576107656121f0565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156124625784516001600160a01b03168352938301939183019160010161243d565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205c2530e447b26d2b48a0b590fbbed1750284f053279ff579484d09b901920d0164736f6c63430008140033
Deployed Bytecode Sourcemap
35111:12624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:385;;;;;;;;;;-1:-1:-1;40442:385:0;;;;;:::i;:::-;;:::i;:::-;;9846:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12347:242;;;;;;;;;;-1:-1:-1;12347:242:0;;;;;:::i;:::-;;:::i;:::-;;;1441:14:1;;1434:22;1416:41;;1404:2;1389:18;12347:242:0;1276:187:1;35201:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1659:32:1;;;1641:51;;1629:2;1614:18;35201:51:0;1468:230:1;10975:108:0;;;;;;;;;;-1:-1:-1;11063:12:0;;10975:108;;;1849:25:1;;;1837:2;1822:18;10975:108:0;1703:177:1;13169:295:0;;;;;;;;;;-1:-1:-1;13169:295:0;;;;;:::i;:::-;;:::i;35294:53::-;;;;;;;;;;;;35340:6;35294:53;;10817:93;;;;;;;;;;-1:-1:-1;10817:93:0;;10900:2;2696:36:1;;2684:2;2669:18;10817:93:0;2554:184:1;13873:270:0;;;;;;;;;;-1:-1:-1;13873:270:0;;;;;:::i;:::-;;:::i;37944:83::-;;;;;;;;;;-1:-1:-1;37944:83:0;;;;;:::i;:::-;;:::i;35259:28::-;;;;;;;;;;-1:-1:-1;35259:28:0;;;;-1:-1:-1;;;;;35259:28:0;;;41754:126;;;;;;;;;;-1:-1:-1;41754:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41844:28:0;41820:4;41844:28;;;:19;:28;;;;;;;;;41754:126;40094:340;;;;;;;;;;-1:-1:-1;40094:340:0;;;;;:::i;:::-;;:::i;35732:28::-;;;;;;;;;;;;;;;;35580:31;;;;;;;;;;-1:-1:-1;35580:31:0;;;;;;;;;;;11146:177;;;;;;;;;;-1:-1:-1;11146:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;11297:18:0;11265:7;11297:18;;;;;;;;;;;;11146:177;3226:103;;;;;;;;;;;;;:::i;39919:167::-;;;;;;;;;;-1:-1:-1;39919:167:0;;;;;:::i;:::-;;:::i;35386:30::-;;;;;;;;;;-1:-1:-1;35386:30:0;;;;-1:-1:-1;;;;;35386:30:0;;;38035:842;;;;;;;;;;;;;:::i;2585:87::-;;;;;;;;;;-1:-1:-1;2658:6:0;;-1:-1:-1;;;;;2658:6:0;2585:87;;10065:104;;;;;;;;;;;;;:::i;39404:507::-;;;;;;;;;;-1:-1:-1;39404:507:0;;;;;:::i;:::-;;:::i;14646:505::-;;;;;;;;;;-1:-1:-1;14646:505:0;;;;;:::i;:::-;;:::i;11529:234::-;;;;;;;;;;-1:-1:-1;11529:234:0;;;;;:::i;:::-;;:::i;40835:334::-;;;;;;;;;;-1:-1:-1;40835:334:0;;;;;:::i;:::-;;:::i;35540:33::-;;;;;;;;;;-1:-1:-1;35540:33:0;;;;;;;;41177:182;;;;;;;;;;-1:-1:-1;41177:182:0;;;;;:::i;:::-;;:::i;35425:35::-;;;;;;;;;;;;;;;;38885:511;;;;;;;;;;-1:-1:-1;38885:511:0;;;;;:::i;:::-;;:::i;35620:27::-;;;;;;;;;;;;;;;;11826:201;;;;;;;;;;-1:-1:-1;11826:201:0;;;;;:::i;:::-;;:::i;35467:33::-;;;;;;;;;;;;;;;;3484:238;;;;;;;;;;-1:-1:-1;3484:238:0;;;;;:::i;:::-;;:::i;41367:183::-;;;;;;;;;;;;;:::i;35507:24::-;;;;;;;;;;;;;;;;40442:385;2471:13;:11;:13::i;:::-;40565:16:::1;:32:::0;;;40608:16:::1;:32:::0;;;40667:35:::1;40627:13:::0;40584;40667:35:::1;:::i;:::-;40651:13;:51:::0;;;40713:11:::1;:27:::0;;;-1:-1:-1;40759:19:0::1;40751:68;;;;-1:-1:-1::0;;;40751:68:0::1;;;;;;;:::i;:::-;;;;;;;;;40442:385:::0;;:::o;9846:100::-;9900:13;9933:5;9926:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9846:100;:::o;12347:242::-;12466:4;1210:10;12527:32;1210:10;12543:7;12552:6;12527:8;:32::i;:::-;12577:4;12570:11;;;12347:242;;;;;:::o;13169:295::-;13300:4;1210:10;13358:38;13374:4;1210:10;13389:6;13358:15;:38::i;:::-;13407:27;13417:4;13423:2;13427:6;13407:9;:27::i;:::-;-1:-1:-1;13452:4:0;;13169:295;-1:-1:-1;;;;13169:295:0:o;13873:270::-;13988:4;1210:10;14049:64;1210:10;14065:7;14102:10;14074:25;1210:10;14065:7;14074:9;:25::i;:::-;:38;;;;:::i;:::-;14049:8;:64::i;37944:83::-;37994:25;38000:10;38012:6;37994:5;:25::i;:::-;37944:83;:::o;40094:340::-;2471:13;:11;:13::i;:::-;40216:15:::1;:31:::0;;;40258:15:::1;:31:::0;;;40315:33:::1;40276:13:::0;40234;40315:33:::1;:::i;:::-;40300:12;:48:::0;;;40383:2:::1;-1:-1:-1::0;40367:18:0::1;40359:67;;;;-1:-1:-1::0;;;40359:67:0::1;;;;;;;:::i;3226:103::-:0;2471:13;:11;:13::i;:::-;3291:30:::1;3318:1;3291:18;:30::i;:::-;3226:103::o:0;39919:167::-;2471:13;:11;:13::i;:::-;-1:-1:-1;;;;;40032:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;40032:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39919:167::o;38035:842::-;2471:13;:11;:13::i;:::-;38124:15:::1;-1:-1:-1::0;;;;;38124:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38106:55:0::1;;38184:4;38204:15;-1:-1:-1::0;;;;;38204:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38106:131;::::0;-1:-1:-1;;;;;;38106:131:0::1;::::0;;;;;;-1:-1:-1;;;;;5621:15:1;;;38106:131:0::1;::::0;::::1;5603:34:1::0;5673:15;;5653:18;;;5646:43;5538:18;;38106:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38090:13;:147:::0;;-1:-1:-1;;;;;;38090:147:0::1;-1:-1:-1::0;;;;;38090:147:0;;;::::1;::::0;;::::1;::::0;;38248:66:::1;::::0;38265:4:::1;::::0;-1:-1:-1;;38248:8:0::1;:66::i;:::-;38332:13;::::0;38325:111:::1;::::0;-1:-1:-1;;;38325:111:0;;-1:-1:-1;;;;;38377:15:0::1;5892:32:1::0;;38325:111:0::1;::::0;::::1;5874:51:1::0;-1:-1:-1;;5941:18:1;;;5934:34;38332:13:0;;::::1;::::0;38325:29:::1;::::0;5847:18:1;;38325:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;38486:13:0::1;::::0;38449:58:::1;::::0;-1:-1:-1;;;;;38486:13:0::1;::::0;38449:28:::1;:58::i;:::-;38552:13;::::0;38518:55:::1;::::0;-1:-1:-1;;;;;38552:13:0::1;::::0;38518:25:::1;:55::i;:::-;38586:15;-1:-1:-1::0;;;;;38586:31:0::1;;38625:21;38670:4;38690:24;38708:4;-1:-1:-1::0;;;;;11297:18:0;11265:7;11297:18;;;;;;;;;;;;11146:177;38690:24:::1;38729:1;38745::::0;38761:7:::1;2658:6:::0;;-1:-1:-1;;;;;2658:6:0;;2585:87;38761:7:::1;38783:15;38586:223;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;38820:13:0::1;:20:::0;;-1:-1:-1;;38851:18:0;;;;;-1:-1:-1;38035:842:0:o;10065:104::-;10121:13;10154:7;10147:14;;;;;:::i;39404:507::-;2471:13;:11;:13::i;:::-;39598:4:::1;39577:13;11063:12:::0;;;10975:108;39577:13:::1;:17;::::0;39593:1:::1;39577:17;:::i;:::-;39576:26;;;;:::i;:::-;39562:9;:41;;39540:131;;;::::0;-1:-1:-1;;;39540:131:0;;7749:2:1;39540:131:0::1;::::0;::::1;7731:21:1::0;7788:2;7768:18;;;7761:30;7827:34;7807:18;;;7800:62;-1:-1:-1;;;7878:18:1;;;7871:38;7926:19;;39540:131:0::1;7547:404:1::0;39540:131:0::1;39746:4;39725:13;11063:12:::0;;;10975:108;39725:13:::1;:17;::::0;39741:1:::1;39725:17;:::i;:::-;39724:26;;;;:::i;:::-;39704:15;:47;;39682:140;;;::::0;-1:-1:-1;;;39682:140:0;;8158:2:1;39682:140:0::1;::::0;::::1;8140:21:1::0;8197:2;8177:18;;;8170:30;8236:34;8216:18;;;8209:62;-1:-1:-1;;;8287:18:1;;;8280:41;8338:19;;39682:140:0::1;7956:407:1::0;39682:140:0::1;39833:9;:27:::0;39871:20:::1;:32:::0;39404:507::o;14646:505::-;14766:4;1210:10;14766:4;14854:25;1210:10;14871:7;14854:9;:25::i;:::-;14827:52;;14932:15;14912:16;:35;;14890:122;;;;-1:-1:-1;;;14890:122:0;;8570:2:1;14890:122:0;;;8552:21:1;8609:2;8589:18;;;8582:30;8648:34;8628:18;;;8621:62;-1:-1:-1;;;8699:18:1;;;8692:35;8744:19;;14890:122:0;8368:401:1;14890:122:0;15048:60;15057:5;15064:7;15092:15;15073:16;:34;15048:8;:60::i;11529:234::-;11644:4;1210:10;11705:28;1210:10;11722:2;11726:6;11705:9;:28::i;40835:334::-;2471:13;:11;:13::i;:::-;-1:-1:-1;;;;;40953:30:0;::::1;40945:59;;;::::0;-1:-1:-1;;;40945:59:0;;8976:2:1;40945:59:0::1;::::0;::::1;8958:21:1::0;9015:2;8995:18;;;8988:30;-1:-1:-1;;;9034:18:1;;;9027:46;9090:18;;40945:59:0::1;8774:340:1::0;40945:59:0::1;41035:15;::::0;;-1:-1:-1;;;;;41061:34:0;;::::1;-1:-1:-1::0;;;;;;41061:34:0;::::1;::::0;::::1;::::0;;;41111:50:::1;::::0;41035:15;::::1;::::0;;;41111:50:::1;::::0;41015:17:::1;::::0;41111:50:::1;40934:235;40835:334:::0;:::o;41177:182::-;2471:13;:11;:13::i;:::-;-1:-1:-1;;;;;41262:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41262:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41317:34;;1416:41:1;;;41317:34:0::1;::::0;1389:18:1;41317:34:0::1;;;;;;;41177:182:::0;;:::o;38885:511::-;38993:4;2471:13;:11;:13::i;:::-;39072:6:::1;39051:13;11063:12:::0;;;10975:108;39051:13:::1;:17;::::0;39067:1:::1;39051:17;:::i;:::-;39050:28;;;;:::i;:::-;39037:9;:41;;39015:151;;;::::0;-1:-1:-1;;;39015:151:0;;9321:2:1;39015:151:0::1;::::0;::::1;9303:21:1::0;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;9470:30;9450:18;;;9443:58;9518:19;;39015:151:0::1;9119:424:1::0;39015:151:0::1;39234:4;39213:13;11063:12:::0;;;10975:108;39213:13:::1;:17;::::0;39229:1:::1;39213:17;:::i;:::-;39212:26;;;;:::i;:::-;39199:9;:39;;39177:148;;;::::0;-1:-1:-1;;;39177:148:0;;9750:2:1;39177:148:0::1;::::0;::::1;9732:21:1::0;9789:2;9769:18;;;9762:30;9828:34;9808:18;;;9801:62;9899:29;9879:18;;;9872:57;9946:19;;39177:148:0::1;9548:423:1::0;39177:148:0::1;-1:-1:-1::0;39336:18:0::1;:30:::0;39384:4:::1;::::0;38885:511::o;11826:201::-;-1:-1:-1;;;;;11992:18:0;;;11960:7;11992:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11826:201::o;3484:238::-;2471:13;:11;:13::i;:::-;-1:-1:-1;;;;;3587:22:0;::::1;3565:110;;;::::0;-1:-1:-1;;;3565:110:0;;10178:2:1;3565:110:0::1;::::0;::::1;10160:21:1::0;10217:2;10197:18;;;10190:30;10256:34;10236:18;;;10229:62;-1:-1:-1;;;10307:18:1;;;10300:36;10353:19;;3565:110:0::1;9976:402:1::0;3565:110:0::1;3686:28;3705:8;3686:18;:28::i;41367:183::-:0;2471:13;:11;:13::i;:::-;41460:82:::1;::::0;41423:12:::1;::::0;41468:10:::1;::::0;41492:21:::1;::::0;41423:12;41460:82;41423:12;41460:82;41492:21;41468:10;41460:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;41367:183:0:o;2750:132::-;2658:6;;-1:-1:-1;;;;;2658:6:0;1210:10;2814:23;2806:68;;;;-1:-1:-1;;;2806:68:0;;10795:2:1;2806:68:0;;;10777:21:1;;;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;10925:18;;2806:68:0;10593:356:1;18779:380:0;-1:-1:-1;;;;;18915:19:0;;18907:68;;;;-1:-1:-1;;;18907:68:0;;11156:2:1;18907:68:0;;;11138:21:1;11195:2;11175:18;;;11168:30;11234:34;11214:18;;;11207:62;-1:-1:-1;;;11285:18:1;;;11278:34;11329:19;;18907:68:0;10954:400:1;18907:68:0;-1:-1:-1;;;;;18994:21:0;;18986:68;;;;-1:-1:-1;;;18986:68:0;;11561:2:1;18986:68:0;;;11543:21:1;11600:2;11580:18;;;11573:30;11639:34;11619:18;;;11612:62;-1:-1:-1;;;11690:18:1;;;11683:32;11732:19;;18986:68:0;11359:398:1;18986:68:0;-1:-1:-1;;;;;19067:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19119:32;;1849:25:1;;;19119:32:0;;1822:18:1;19119:32:0;;;;;;;18779:380;;;:::o;19450:502::-;19585:24;19612:25;19622:5;19629:7;19612:9;:25::i;:::-;19585:52;;-1:-1:-1;;19652:16:0;:37;19648:297;;19752:6;19732:16;:26;;19706:117;;;;-1:-1:-1;;;19706:117:0;;11964:2:1;19706:117:0;;;11946:21:1;12003:2;11983:18;;;11976:30;12042:31;12022:18;;;12015:59;12091:18;;19706:117:0;11762:353:1;19706:117:0;19867:51;19876:5;19883:7;19911:6;19892:16;:25;19867:8;:51::i;41888:3484::-;-1:-1:-1;;;;;42020:18:0;;42012:68;;;;-1:-1:-1;;;42012:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42099:16:0;;42091:64;;;;-1:-1:-1;;;42091:64:0;;;;;;;:::i;:::-;42172:6;42182:1;42172:11;42168:93;;42200:28;42216:4;42222:2;42226:1;42200:15;:28::i;:::-;41888:3484;;;:::o;42168:93::-;2658:6;;-1:-1:-1;;;;;42291:15:0;;;2658:6;;42291:15;;;;:45;;-1:-1:-1;2658:6:0;;-1:-1:-1;;;;;42323:13:0;;;2658:6;;42323:13;;42291:45;:78;;;;-1:-1:-1;;;;;;42353:16:0;;;;42291:78;:112;;;;-1:-1:-1;;;;;;42386:17:0;;35340:6;42386:17;;42291:112;:138;;;;-1:-1:-1;42421:8:0;;-1:-1:-1;;;42421:8:0;;;;42420:9;42291:138;42273:1511;;;42461:13;;;;42456:210;;-1:-1:-1;;;;;42525:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42554:23:0;;;;;;:19;:23;;;;;;;;42525:52;42495:155;;;;-1:-1:-1;;;42495:155:0;;13132:2:1;42495:155:0;;;13114:21:1;13171:2;13151:18;;;13144:30;13210:31;13190:18;;;13183:59;13259:18;;42495:155:0;12930:353:1;42495:155:0;-1:-1:-1;;;;;42728:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;42781:35:0;;;;;;:31;:35;;;;;;;;42780:36;42728:88;42706:1067;;;42891:20;;42881:6;:30;;42851:164;;;;-1:-1:-1;;;42851:164:0;;13490:2:1;42851:164:0;;;13472:21:1;13529:2;13509:18;;;13502:30;13568:34;13548:18;;;13541:62;13639:30;13619:18;;;13612:58;13687:19;;42851:164:0;13288:424:1;42851:164:0;43090:9;;-1:-1:-1;;;;;11297:18:0;;11265:7;11297:18;;;;;;;;;;;43064:22;;:6;:22;:::i;:::-;:35;;43034:135;;;;-1:-1:-1;;;43034:135:0;;13919:2:1;43034:135:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:28;13977:18;;;13970:56;14043:18;;43034:135:0;13717:350:1;43034:135:0;42706:1067;;;-1:-1:-1;;;;;43251:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;43302:37:0;;;;;;:31;:37;;;;;;;;43301:38;43251:88;43229:544;;;43414:20;;43404:6;:30;;43374:165;;;;-1:-1:-1;;;43374:165:0;;14274:2:1;43374:165:0;;;14256:21:1;14313:2;14293:18;;;14286:30;14352:34;14332:18;;;14325:62;14423:31;14403:18;;;14396:59;14472:19;;43374:165:0;14072:425:1;43229:544:0;-1:-1:-1;;;;;43566:35:0;;;;;;:31;:35;;;;;;;;43561:212;;43678:9;;-1:-1:-1;;;;;11297:18:0;;11265:7;11297:18;;;;;;;;;;;43652:22;;:6;:22;:::i;:::-;:35;;43622:135;;;;-1:-1:-1;;;43622:135:0;;13919:2:1;43622:135:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:28;13977:18;;;13970:56;14043:18;;43622:135:0;13717:350:1;43622:135:0;43845:4;43796:28;11297:18;;;;;;;;;;;43903;;43879:42;;;;;;;43952:35;;-1:-1:-1;43976:11:0;;;;;;;43952:35;:61;;;;-1:-1:-1;44005:8:0;;-1:-1:-1;;;44005:8:0;;;;44004:9;43952:61;:110;;;;-1:-1:-1;;;;;;44031:31:0;;;;;;:25;:31;;;;;;;;44030:32;43952:110;:153;;;;-1:-1:-1;;;;;;44080:25:0;;;;;;:19;:25;;;;;;;;44079:26;43952:153;:194;;;;-1:-1:-1;;;;;;44123:23:0;;;;;;:19;:23;;;;;;;;44122:24;43952:194;43934:326;;;44173:8;:15;;-1:-1:-1;;;;44173:15:0;-1:-1:-1;;;44173:15:0;;;44205:10;:8;:10::i;:::-;44232:8;:16;;-1:-1:-1;;;;44232:16:0;;;43934:326;44288:8;;-1:-1:-1;;;;;44313:25:0;;44272:12;44313:25;;;:19;:25;;;;;;44288:8;-1:-1:-1;;;44288:8:0;;;;;44287:9;;44313:25;;:52;;-1:-1:-1;;;;;;44342:23:0;;;;;;:19;:23;;;;;;;;44313:52;44309:100;;;-1:-1:-1;44392:5:0;44309:100;44421:12;44454:7;44450:831;;;-1:-1:-1;;;;;44506:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44555:1;44539:13;;:17;44506:50;44502:630;;;44584:34;44614:3;44584:25;44595:13;;44584:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44577:41;;44687:13;;44667:16;;44660:4;:23;;;;:::i;:::-;44659:41;;;;:::i;:::-;44637:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44769:13:0;;44749:16;;44742:23;;:4;:23;:::i;:::-;44741:41;;;;:::i;:::-;44719:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44502:630:0;;-1:-1:-1;44502:630:0;;-1:-1:-1;;;;;44844:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44894:1;44879:12;;:16;44844:51;44840:292;;;44923:33;44952:3;44923:24;44934:12;;44923:6;:10;;:24;;;;:::i;:33::-;44916:40;;45024:12;;45005:15;;44998:4;:22;;;;:::i;:::-;44997:39;;;;:::i;:::-;44975:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45104:12:0;;45085:15;;45078:22;;:4;:22;:::i;:::-;45077:39;;;;:::i;:::-;45055:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44840:292:0;45152:8;;45148:91;;45181:42;45197:4;45211;45218;45181:15;:42::i;:::-;45255:14;45265:4;45255:14;;:::i;:::-;;;44450:831;45293:33;45309:4;45315:2;45319:6;45293:15;:33::i;:::-;-1:-1:-1;;45353:11:0;;45337:13;:27;-1:-1:-1;;;;;41888:3484:0:o;17666:675::-;-1:-1:-1;;;;;17750:21:0;;17742:67;;;;-1:-1:-1;;;17742:67:0;;14837:2:1;17742:67:0;;;14819:21:1;14876:2;14856:18;;;14849:30;14915:34;14895:18;;;14888:62;-1:-1:-1;;;14966:18:1;;;14959:31;15007:19;;17742:67:0;14635:397:1;17742:67:0;-1:-1:-1;;;;;17909:18:0;;17884:22;17909:18;;;;;;;;;;;17946:24;;;;17938:71;;;;-1:-1:-1;;;17938:71:0;;15239:2:1;17938:71:0;;;15221:21:1;15278:2;15258:18;;;15251:30;15317:34;15297:18;;;15290:62;-1:-1:-1;;;15368:18:1;;;15361:32;15410:19;;17938:71:0;15037:398:1;17938:71:0;-1:-1:-1;;;;;18045:18:0;;:9;:18;;;;;;;;;;;18066:23;;;18045:44;;18184:12;:22;;;;;;;18235:37;1849:25:1;;;18045:9:0;;:18;18235:37;;1822:18:1;18235:37:0;;;;;;;41888:3484;;;:::o;3882:191::-;3975:6;;;-1:-1:-1;;;;;3992:17:0;;;-1:-1:-1;;;;;;3992:17:0;;;;;;;4025:40;;3975:6;;;3992:17;3975:6;;4025:40;;3956:16;;4025:40;3945:128;3882:191;:::o;41558:188::-;-1:-1:-1;;;;;41641:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41641:39:0;;;;;;;;;;41698:40;;41641:39;;:31;41698:40;;;41558:188;;:::o;15621:877::-;-1:-1:-1;;;;;15752:18:0;;15744:68;;;;-1:-1:-1;;;15744:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15831:16:0;;15823:64;;;;-1:-1:-1;;;15823:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15973:15:0;;15951:19;15973:15;;;;;;;;;;;16021:21;;;;15999:109;;;;-1:-1:-1;;;15999:109:0;;15642:2:1;15999:109:0;;;15624:21:1;15681:2;15661:18;;;15654:30;15720:34;15700:18;;;15693:62;-1:-1:-1;;;15771:18:1;;;15764:36;15817:19;;15999:109:0;15440:402:1;15999:109:0;-1:-1:-1;;;;;16144:15:0;;;:9;:15;;;;;;;;;;;16162:20;;;16144:38;;16362:13;;;;;;;;;;:23;;;;;;16414:26;;1849:25:1;;;16362:13:0;;16414:26;;1822:18:1;16414:26:0;;;;;;;16453:37;41888:3484;46259:1473;46342:4;46298:23;11297:18;;;;;;;;;;;46298:50;;46359:25;46408:18;;46387;;:39;;;;:::i;:::-;46359:67;-1:-1:-1;46437:12:0;46466:20;;;:46;;-1:-1:-1;46490:22:0;;46466:46;46462:85;;;46529:7;;;46259:1473::o;46462:85::-;46581:18;;:23;;46602:2;46581:23;:::i;:::-;46563:15;:41;46559:115;;;46639:18;;:23;;46660:2;46639:23;:::i;:::-;46621:41;;46559:115;46686:23;46799:1;46766:17;46731:18;;46713:15;:36;;;;:::i;:::-;46712:71;;;;:::i;:::-;:88;;;;:::i;:::-;46686:114;-1:-1:-1;46811:26:0;46840:36;:15;46686:114;46840:19;:36::i;:::-;46811:65;-1:-1:-1;46917:21:0;46951:36;46811:65;46951:16;:36::i;:::-;47000:18;47021:44;:21;47047:17;47021:25;:44::i;:::-;47000:65;;47078:23;47104:81;47157:17;47104:34;47119:18;;47104:10;:14;;:34;;;;:::i;:81::-;47078:107;-1:-1:-1;47198:23:0;47224:28;47078:107;47224:10;:28;:::i;:::-;47286:1;47265:18;:22;;;47298:18;:22;47198:54;-1:-1:-1;47337:19:0;;;;;:42;;;47378:1;47360:15;:19;47337:42;47333:278;;;47396:46;47409:15;47426;47396:12;:46::i;:::-;47566:18;;47462:137;;;16049:25:1;;;16105:2;16090:18;;16083:34;;;16133:18;;;16126:34;;;;47462:137:0;;;;;;16037:2:1;47462:137:0;;;47333:278;47645:15;;47637:87;;-1:-1:-1;;;;;47645:15:0;;;;47688:21;;47637:87;;;;47688:21;47645:15;47637:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;46259:1473:0:o;25127:98::-;25185:7;25212:5;25216:1;25212;:5;:::i;:::-;25205:12;25127:98;-1:-1:-1;;;25127:98:0:o;25526:::-;25584:7;25611:5;25615:1;25611;:5;:::i;24770:98::-;24828:7;24855:5;24859:1;24855;:5;:::i;45380:501::-;45470:16;;;45484:1;45470:16;;;;;;;;45446:21;;45470:16;;;;;;;;;;-1:-1:-1;45470:16:0;45446:40;;45515:4;45497;45502:1;45497:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45497:23:0;;;-1:-1:-1;;;;;45497:23:0;;;;;45541:15;-1:-1:-1;;;;;45541:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45531:4;45536:1;45531:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45531:32:0;;;-1:-1:-1;;;;;45531:32:0;;;;;45576:62;45593:4;45608:15;45626:11;45576:8;:62::i;:::-;45677:196;;-1:-1:-1;;;45677:196:0;;-1:-1:-1;;;;;45677:15:0;:66;;;;:196;;45758:11;;45784:1;;45800:4;;45827;;45847:15;;45677:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45435:446;45380:501;:::o;45889:362::-;45970:62;45987:4;46002:15;46020:11;45970:8;:62::i;:::-;46045:15;-1:-1:-1;;;;;46045:31:0;;46084:9;46117:4;46137:11;46163:1;46179;46195:7;2658:6;;-1:-1:-1;;;;;2658:6:0;;2585:87;46195:7;46217:15;46045:198;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45889:362;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:131::-;-1:-1:-1;;;;;895:31:1;;885:42;;875:70;;941:1;938;931:12;956:315;1024:6;1032;1085:2;1073:9;1064:7;1060:23;1056:32;1053:52;;;1101:1;1098;1091:12;1053:52;1140:9;1127:23;1159:31;1184:5;1159:31;:::i;:::-;1209:5;1261:2;1246:18;;;;1233:32;;-1:-1:-1;;;956:315:1:o;1885:456::-;1962:6;1970;1978;2031:2;2019:9;2010:7;2006:23;2002:32;1999:52;;;2047:1;2044;2037:12;1999:52;2086:9;2073:23;2105:31;2130:5;2105:31;:::i;:::-;2155:5;-1:-1:-1;2212:2:1;2197:18;;2184:32;2225:33;2184:32;2225:33;:::i;:::-;1885:456;;2277:7;;-1:-1:-1;;;2331:2:1;2316:18;;;;2303:32;;1885:456::o;2743:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;-1:-1:-1;2894:23:1;;2743:180;-1:-1:-1;2743:180:1:o;2928:247::-;2987:6;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3095:9;3082:23;3114:31;3139:5;3114:31;:::i;3180:118::-;3266:5;3259:13;3252:21;3245:5;3242:32;3232:60;;3288:1;3285;3278:12;3303:382;3368:6;3376;3429:2;3417:9;3408:7;3404:23;3400:32;3397:52;;;3445:1;3442;3435:12;3397:52;3484:9;3471:23;3503:31;3528:5;3503:31;:::i;:::-;3553:5;-1:-1:-1;3610:2:1;3595:18;;3582:32;3623:30;3582:32;3623:30;:::i;:::-;3672:7;3662:17;;;3303:382;;;;;:::o;3690:388::-;3758:6;3766;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3874:9;3861:23;3893:31;3918:5;3893:31;:::i;:::-;3943:5;-1:-1:-1;4000:2:1;3985:18;;3972:32;4013:33;3972:32;4013:33;:::i;4083:127::-;4144:10;4139:3;4135:20;4132:1;4125:31;4175:4;4172:1;4165:15;4199:4;4196:1;4189:15;4215:125;4280:9;;;4301:10;;;4298:36;;;4314:18;;:::i;4345:400::-;4547:2;4529:21;;;4586:2;4566:18;;;4559:30;4625:34;4620:2;4605:18;;4598:62;-1:-1:-1;;;4691:2:1;4676:18;;4669:34;4735:3;4720:19;;4345:400::o;4750:380::-;4829:1;4825:12;;;;4872;;;4893:61;;4947:4;4939:6;4935:17;4925:27;;4893:61;5000:2;4992:6;4989:14;4969:18;4966:38;4963:161;;5046:10;5041:3;5037:20;5034:1;5027:31;5081:4;5078:1;5071:15;5109:4;5106:1;5099:15;4963:161;;4750:380;;;:::o;5135:251::-;5205:6;5258:2;5246:9;5237:7;5233:23;5229:32;5226:52;;;5274:1;5271;5264:12;5226:52;5306:9;5300:16;5325:31;5350:5;5325:31;:::i;5979:245::-;6046:6;6099:2;6087:9;6078:7;6074:23;6070:32;6067:52;;;6115:1;6112;6105:12;6067:52;6147:9;6141:16;6166:28;6188:5;6166:28;:::i;6229:607::-;-1:-1:-1;;;;;6588:15:1;;;6570:34;;6635:2;6620:18;;6613:34;;;;6678:2;6663:18;;6656:34;;;;6721:2;6706:18;;6699:34;;;;6770:15;;;6764:3;6749:19;;6742:44;6550:3;6802:19;;6795:35;;;;6519:3;6504:19;;6229:607::o;6841:306::-;6929:6;6937;6945;6998:2;6986:9;6977:7;6973:23;6969:32;6966:52;;;7014:1;7011;7004:12;6966:52;7043:9;7037:16;7027:26;;7093:2;7082:9;7078:18;7072:25;7062:35;;7137:2;7126:9;7122:18;7116:25;7106:35;;6841:306;;;;;:::o;7152:168::-;7225:9;;;7256;;7273:15;;;7267:22;;7253:37;7243:71;;7294:18;;:::i;7325:217::-;7365:1;7391;7381:132;;7435:10;7430:3;7426:20;7423:1;7416:31;7470:4;7467:1;7460:15;7498:4;7495:1;7488:15;7381:132;-1:-1:-1;7527:9:1;;7325:217::o;12120:401::-;12322:2;12304:21;;;12361:2;12341:18;;;12334:30;12400:34;12395:2;12380:18;;12373:62;-1:-1:-1;;;12466:2:1;12451:18;;12444:35;12511:3;12496:19;;12120:401::o;12526:399::-;12728:2;12710:21;;;12767:2;12747:18;;;12740:30;12806:34;12801:2;12786:18;;12779:62;-1:-1:-1;;;12872:2:1;12857:18;;12850:33;12915:3;12900:19;;12526:399::o;14502:128::-;14569:9;;;14590:11;;;14587:37;;;14604:18;;:::i;16303:127::-;16364:10;16359:3;16355:20;16352:1;16345:31;16395:4;16392:1;16385:15;16419:4;16416:1;16409:15;16435:980;16697:4;16745:3;16734:9;16730:19;16776:6;16765:9;16758:25;16802:2;16840:6;16835:2;16824:9;16820:18;16813:34;16883:3;16878:2;16867:9;16863:18;16856:31;16907:6;16942;16936:13;16973:6;16965;16958:22;17011:3;17000:9;16996:19;16989:26;;17050:2;17042:6;17038:15;17024:29;;17071:1;17081:195;17095:6;17092:1;17089:13;17081:195;;;17160:13;;-1:-1:-1;;;;;17156:39:1;17144:52;;17251:15;;;;17216:12;;;;17192:1;17110:9;17081:195;;;-1:-1:-1;;;;;;;17332:32:1;;;;17327:2;17312:18;;17305:60;-1:-1:-1;;;17396:3:1;17381:19;17374:35;17293:3;16435:980;-1:-1:-1;;;16435:980:1:o
Swarm Source
ipfs://5c2530e447b26d2b48a0b590fbbed1750284f053279ff579484d09b901920d01
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.