ERC-20
Overview
Max Total Supply
888,888 Kurage
Holders
103
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.145603552289728191 KurageValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cosmic
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ 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.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { 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 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; } interface GotchuVerification { function getApprovalCode( address _approver, address _contract ) external view returns (bytes32); } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract Cosmic is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); // Powered by GOTCHU GotchuVerification public immutable gotchu; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // Powered by GOTCHU mapping(address => bool) public addressValidated; bool public validationRequired = false; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Cosmic", "Kurage") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; GotchuVerification _gotchu = GotchuVerification(0x53f20EbE038aE1D1d27Ab167991f9D8ee0052D40); gotchu = _gotchu; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 3; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 3; uint256 totalSupply = 888888 * 1e18; maxTransactionAmount = 17778 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 17778 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyLiquidityFee + buyDevFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellLiquidityFee + sellDevFee; devWallet = address(0x396496943f6AcfC097106Fb4838Ec4ab6e2D4643); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { validationRequired = true; tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function approveForTrading(bytes32 code) public { require( tradingActive, "Trading is not active." ); if (code == gotchu.getApprovalCode(_msgSender(), address(this))) { addressValidated[_msgSender()] = true; } } function disableValidation() public onlyOwner { validationRequired = false; } 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 (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { if (validationRequired) { require( addressValidated[to] == true, "Approval for Trading required." ); } require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDev; tokensForLiquidity = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(devWallet).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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressValidated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"code","type":"bytes32"}],"name":"approveForTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableValidation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gotchu","outputs":[{"internalType":"contract GotchuVerification","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"validationRequired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e0604052600a805462ffffff191660011790556016805460ff191690553480156200002a57600080fd5b5060405180604001604052806006815260200165436f736d696360d01b815250604051806040016040528060068152602001654b757261676560d01b81525081600390816200007a9190620006ef565b506004620000898282620006ef565b505050620000a6620000a06200039360201b60201c565b62000397565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c8816001620003e9565b6001600160a01b03811660808190527353f20ebe038ae1d1d27ab167991f9d8ee0052d4060c08190526040805163c45a015560e01b8152905191929163c45a0155916004808201926020929091908290030181865afa15801562000130573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001569190620007bb565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ca9190620007bb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e9190620007bb565b6001600160a01b031660a081905262000259906001620003e9565b60a0516200026990600162000463565b6903c3bf4fc81e7e880000600781905560095560006003818169bc3ab70c8588dde000006127106200029d82600a62000803565b620002a9919062000825565b600855600c859055600d849055620002c2848662000848565b600b55600f8390556010829055620002db828462000848565b600e55600680546001600160a01b03191673396496943f6acfc097106fb4838ec4ab6e2d4643179055620003236200031b6005546001600160a01b031690565b6001620004b7565b62000330306001620004b7565b6200033f61dead6001620004b7565b6200035e620003566005546001600160a01b031690565b6001620003e9565b6200036b306001620003e9565b6200037a61dead6001620003e9565b62000386338262000561565b5050505050505062000864565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004385760405162461bcd60e51b8152602060048201819052602482015260008051602062002ca783398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005025760405162461bcd60e51b8152602060048201819052602482015260008051602062002ca783398151915260448201526064016200042f565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042f565b8060026000828254620005cd919062000848565b90915550506001600160a01b03821660009081526020819052604081208054839290620005fc90849062000848565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200067657607f821691505b6020821081036200069757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200064657600081815260208120601f850160051c81016020861015620006c65750805b601f850160051c820191505b81811015620006e757828155600101620006d2565b505050505050565b81516001600160401b038111156200070b576200070b6200064b565b62000723816200071c845462000661565b846200069d565b602080601f8311600181146200075b5760008415620007425750858301515b600019600386901b1c1916600185901b178555620006e7565b600085815260208120601f198616915b828110156200078c578886015182559484019460019091019084016200076b565b5085821015620007ab5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007ce57600080fd5b81516001600160a01b0381168114620007e657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008205762000820620007ed565b500290565b6000826200084357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200085e576200085e620007ed565b92915050565b60805160a05160c0516123e2620008c56000396000818161085d0152610f9d0152600081816104280152610bd401526000818161033501528181611d5f01528181611e1801528181611e5401528181611ece0152611f3601526123e26000f3fe60806040526004361061028c5760003560e01c806395d89b411161015a578063c8c8ebe4116100c1578063e2f456051161007a578063e2f45605146107ff578063f11a24d314610815578063f2fde38b1461082b578063f37311661461084b578063f63743421461087f578063f8b45b051461089557600080fd5b8063c8c8ebe414610738578063d257b34f1461074e578063d85ba0631461076e578063dc83d1a814610784578063dd62ed3e14610799578063e0b33272146107df57600080fd5b8063a9059cbb11610113578063a9059cbb1461065f578063aedabd7e1461067f578063b62496f5146106af578063bbc0c742146106df578063bff09d69146106fe578063c02466681461071857600080fd5b806395d89b41146105c85780639a7a23d6146105dd5780639c3b4fdc146105fd5780639fccce3214610613578063a0d82dc514610629578063a457c2d71461063f57600080fd5b80634a62bb65116101fe578063751039fc116101b7578063751039fc146105205780637571336a146105355780638a8c523c146105555780638da5cb5b1461056a5780638ea5220f14610588578063924de9b7146105a857600080fd5b80634a62bb651461044a5780634fbee193146104645780636a486a8e1461049d5780636ddd1713146104b357806370a08231146104d3578063715018a61461050957600080fd5b80631a8145bb116102505780631a8145bb1461038e57806323b872dd146103a457806327c8f835146103c4578063313ce567146103da57806339509351146103f657806349bd5a5e1461041657600080fd5b806306fdde0314610298578063095ea7b3146102c357806310d5de53146102f35780631694505e1461032357806318160ddd1461036f57600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad6108ab565b6040516102ba9190611fae565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612011565b61093d565b60405190151581526020016102ba565b3480156102ff57600080fd5b506102e361030e36600461203d565b60146020526000908152604090205460ff1681565b34801561032f57600080fd5b506103577f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102ba565b34801561037b57600080fd5b506002545b6040519081526020016102ba565b34801561039a57600080fd5b5061038060115481565b3480156103b057600080fd5b506102e36103bf36600461205a565b610954565b3480156103d057600080fd5b5061035761dead81565b3480156103e657600080fd5b50604051601281526020016102ba565b34801561040257600080fd5b506102e3610411366004612011565b610a03565b34801561042257600080fd5b506103577f000000000000000000000000000000000000000000000000000000000000000081565b34801561045657600080fd5b50600a546102e39060ff1681565b34801561047057600080fd5b506102e361047f36600461203d565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104a957600080fd5b50610380600e5481565b3480156104bf57600080fd5b50600a546102e39062010000900460ff1681565b3480156104df57600080fd5b506103806104ee36600461203d565b6001600160a01b031660009081526020819052604090205490565b34801561051557600080fd5b5061051e610a3f565b005b34801561052c57600080fd5b506102e3610a75565b34801561054157600080fd5b5061051e6105503660046120ab565b610ab2565b34801561056157600080fd5b5061051e610b07565b34801561057657600080fd5b506005546001600160a01b0316610357565b34801561059457600080fd5b50600654610357906001600160a01b031681565b3480156105b457600080fd5b5061051e6105c33660046120e0565b610b53565b3480156105d457600080fd5b506102ad610b99565b3480156105e957600080fd5b5061051e6105f83660046120ab565b610ba8565b34801561060957600080fd5b50610380600d5481565b34801561061f57600080fd5b5061038060125481565b34801561063557600080fd5b5061038060105481565b34801561064b57600080fd5b506102e361065a366004612011565b610c87565b34801561066b57600080fd5b506102e361067a366004612011565b610d20565b34801561068b57600080fd5b506102e361069a36600461203d565b60156020526000908152604090205460ff1681565b3480156106bb57600080fd5b506102e36106ca36600461203d565b60176020526000908152604090205460ff1681565b3480156106eb57600080fd5b50600a546102e390610100900460ff1681565b34801561070a57600080fd5b506016546102e39060ff1681565b34801561072457600080fd5b5061051e6107333660046120ab565b610d2d565b34801561074457600080fd5b5061038060075481565b34801561075a57600080fd5b506102e36107693660046120fb565b610db6565b34801561077a57600080fd5b50610380600b5481565b34801561079057600080fd5b5061051e610f0d565b3480156107a557600080fd5b506103806107b4366004612114565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061051e6107fa3660046120fb565b610f43565b34801561080b57600080fd5b5061038060085481565b34801561082157600080fd5b50610380600c5481565b34801561083757600080fd5b5061051e61084636600461203d565b611055565b34801561085757600080fd5b506103577f000000000000000000000000000000000000000000000000000000000000000081565b34801561088b57600080fd5b50610380600f5481565b3480156108a157600080fd5b5061038060095481565b6060600380546108ba9061214d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e69061214d565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a3384846110ed565b5060015b92915050565b6000610961848484611211565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109eb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109f885338584036110ed565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161094a918590610a3a90869061219d565b6110ed565b6005546001600160a01b03163314610a695760405162461bcd60e51b81526004016109e2906121b0565b610a736000611939565b565b6005546000906001600160a01b03163314610aa25760405162461bcd60e51b81526004016109e2906121b0565b50600a805460ff19169055600190565b6005546001600160a01b03163314610adc5760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b315760405162461bcd60e51b81526004016109e2906121b0565b6016805460ff19166001179055600a80546201010062ffff0019909116179055565b6005546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016109e2906121b0565b600a8054911515620100000262ff000019909216919091179055565b6060600480546108ba9061214d565b6005546001600160a01b03163314610bd25760405162461bcd60e51b81526004016109e2906121b0565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c795760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610c83828261198b565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b610d1633858584036110ed565b5060019392505050565b600061094a338484611211565b6005546001600160a01b03163314610d575760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610de35760405162461bcd60e51b81526004016109e2906121b0565b620186a0610df060025490565b610dfb9060016121e5565b610e059190612204565b821015610e725760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e8610e7e60025490565b610e899060056121e5565b610e939190612204565b821115610eff5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600881905560015b919050565b6005546001600160a01b03163314610f375760405162461bcd60e51b81526004016109e2906121b0565b6016805460ff19169055565b600a54610100900460ff16610f935760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016635166c42b336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110319190612226565b810361105257336000908152601560205260409020805460ff191660011790555b50565b6005546001600160a01b0316331461107f5760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b0381166110e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61105281611939565b6001600160a01b03831661114f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112375760405162461bcd60e51b81526004016109e29061223f565b6001600160a01b03821661125d5760405162461bcd60e51b81526004016109e290612284565b8060000361127657611271838360006119df565b505050565b600a5460ff1615611664576005546001600160a01b038481169116148015906112ad57506005546001600160a01b03838116911614155b80156112c157506001600160a01b03821615155b80156112d857506001600160a01b03821661dead14155b80156112ee5750600554600160a01b900460ff16155b1561166457600a54610100900460ff16611386576001600160a01b03831660009081526013602052604090205460ff168061134157506001600160a01b03821660009081526013602052604090205460ff165b6113865760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526017602052604090205460ff1680156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156115235760165460ff1615611444576001600160a01b03821660009081526015602052604090205460ff1615156001146114445760405162461bcd60e51b815260206004820152601e60248201527f417070726f76616c20666f722054726164696e672072657175697265642e000060448201526064016109e2565b6007548111156114b45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b6009546001600160a01b0383166000908152602081905260409020546114da908361219d565b111561151e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611664565b6001600160a01b03821660009081526017602052604090205460ff16801561156457506001600160a01b03831660009081526014602052604090205460ff16155b156115da5760075481111561151e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b03821660009081526014602052604090205460ff16611664576009546001600160a01b038316600090815260208190526040902054611620908361219d565b11156116645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600854811080159081906116905750600a5462010000900460ff165b80156116a65750600554600160a01b900460ff16155b80156116cb57506001600160a01b03851660009081526017602052604090205460ff16155b80156116f057506001600160a01b03851660009081526013602052604090205460ff16155b801561171557506001600160a01b03841660009081526013602052604090205460ff16155b15611743576005805460ff60a01b1916600160a01b179055611735611b34565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061179157506001600160a01b03851660009081526013602052604090205460ff165b1561179a575060005b60008115611925576001600160a01b03861660009081526017602052604090205460ff1680156117cc57506000600e54115b1561185a576117f160646117eb600e5488611cdd90919063ffffffff16565b90611cf0565b9050600e54600f548261180491906121e5565b61180e9190612204565b6011600082825461181f919061219d565b9091555050600e5460105461183490836121e5565b61183e9190612204565b6012600082825461184f919061219d565b909155506119079050565b6001600160a01b03871660009081526017602052604090205460ff16801561188457506000600b54115b15611907576118a360646117eb600b5488611cdd90919063ffffffff16565b9050600b54600c54826118b691906121e5565b6118c09190612204565b601160008282546118d1919061219d565b9091555050600b54600d546118e690836121e5565b6118f09190612204565b60126000828254611901919061219d565b90915550505b8015611918576119188730836119df565b61192281866122c7565b94505b6119308787876119df565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a055760405162461bcd60e51b81526004016109e29061223f565b6001600160a01b038216611a2b5760405162461bcd60e51b81526004016109e290612284565b6001600160a01b03831660009081526020819052604090205481811015611aa35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ada90849061219d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601254601154611b58919061219d565b90506000821580611b67575081155b15611b7157505050565b600854611b7f9060146121e5565b831115611b9757600854611b949060146121e5565b92505b600060028360115486611baa91906121e5565b611bb49190612204565b611bbe9190612204565b90506000611bcc8583611cfc565b905047611bd882611d08565b6000611be44783611cfc565b90506000611c01876117eb60125485611cdd90919063ffffffff16565b90506000611c0f82846122c7565b6000601181905560125590508515801590611c2a5750600081115b15611c7d57611c398682611ec8565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611cca576040519150601f19603f3d011682016040523d82523d6000602084013e611ccf565b606091505b505050505050505050505050565b6000611ce982846121e5565b9392505050565b6000611ce98284612204565b6000611ce982846122c7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3d57611d3d6122da565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddf91906122f0565b81600181518110611df257611df26122da565b60200260200101906001600160a01b031690816001600160a01b031681525050611e3d307f0000000000000000000000000000000000000000000000000000000000000000846110ed565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611e9290859060009086903090429060040161230d565b600060405180830381600087803b158015611eac57600080fd5b505af1158015611ec0573d6000803e3d6000fd5b505050505050565b611ef3307f0000000000000000000000000000000000000000000000000000000000000000846110ed565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611f82573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fa7919061237e565b5050505050565b600060208083528351808285015260005b81811015611fdb57858101830151858201604001528201611fbf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105257600080fd5b6000806040838503121561202457600080fd5b823561202f81611ffc565b946020939093013593505050565b60006020828403121561204f57600080fd5b8135611ce981611ffc565b60008060006060848603121561206f57600080fd5b833561207a81611ffc565b9250602084013561208a81611ffc565b929592945050506040919091013590565b80358015158114610f0857600080fd5b600080604083850312156120be57600080fd5b82356120c981611ffc565b91506120d76020840161209b565b90509250929050565b6000602082840312156120f257600080fd5b611ce98261209b565b60006020828403121561210d57600080fd5b5035919050565b6000806040838503121561212757600080fd5b823561213281611ffc565b9150602083013561214281611ffc565b809150509250929050565b600181811c9082168061216157607f821691505b60208210810361218157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561094e5761094e612187565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008160001904831182151516156121ff576121ff612187565b500290565b60008261222157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561223857600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094e5761094e612187565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561230257600080fd5b8151611ce981611ffc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561235d5784516001600160a01b031683529383019391830191600101612338565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561239357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220376a5793996d179eb0f249c8c14b6910579a50a4e58229091e2dfd5215f62b2164736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061028c5760003560e01c806395d89b411161015a578063c8c8ebe4116100c1578063e2f456051161007a578063e2f45605146107ff578063f11a24d314610815578063f2fde38b1461082b578063f37311661461084b578063f63743421461087f578063f8b45b051461089557600080fd5b8063c8c8ebe414610738578063d257b34f1461074e578063d85ba0631461076e578063dc83d1a814610784578063dd62ed3e14610799578063e0b33272146107df57600080fd5b8063a9059cbb11610113578063a9059cbb1461065f578063aedabd7e1461067f578063b62496f5146106af578063bbc0c742146106df578063bff09d69146106fe578063c02466681461071857600080fd5b806395d89b41146105c85780639a7a23d6146105dd5780639c3b4fdc146105fd5780639fccce3214610613578063a0d82dc514610629578063a457c2d71461063f57600080fd5b80634a62bb65116101fe578063751039fc116101b7578063751039fc146105205780637571336a146105355780638a8c523c146105555780638da5cb5b1461056a5780638ea5220f14610588578063924de9b7146105a857600080fd5b80634a62bb651461044a5780634fbee193146104645780636a486a8e1461049d5780636ddd1713146104b357806370a08231146104d3578063715018a61461050957600080fd5b80631a8145bb116102505780631a8145bb1461038e57806323b872dd146103a457806327c8f835146103c4578063313ce567146103da57806339509351146103f657806349bd5a5e1461041657600080fd5b806306fdde0314610298578063095ea7b3146102c357806310d5de53146102f35780631694505e1461032357806318160ddd1461036f57600080fd5b3661029357005b600080fd5b3480156102a457600080fd5b506102ad6108ab565b6040516102ba9190611fae565b60405180910390f35b3480156102cf57600080fd5b506102e36102de366004612011565b61093d565b60405190151581526020016102ba565b3480156102ff57600080fd5b506102e361030e36600461203d565b60146020526000908152604090205460ff1681565b34801561032f57600080fd5b506103577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102ba565b34801561037b57600080fd5b506002545b6040519081526020016102ba565b34801561039a57600080fd5b5061038060115481565b3480156103b057600080fd5b506102e36103bf36600461205a565b610954565b3480156103d057600080fd5b5061035761dead81565b3480156103e657600080fd5b50604051601281526020016102ba565b34801561040257600080fd5b506102e3610411366004612011565b610a03565b34801561042257600080fd5b506103577f000000000000000000000000f422be6c0e2e381dc2a06bd665e90875d22f149e81565b34801561045657600080fd5b50600a546102e39060ff1681565b34801561047057600080fd5b506102e361047f36600461203d565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104a957600080fd5b50610380600e5481565b3480156104bf57600080fd5b50600a546102e39062010000900460ff1681565b3480156104df57600080fd5b506103806104ee36600461203d565b6001600160a01b031660009081526020819052604090205490565b34801561051557600080fd5b5061051e610a3f565b005b34801561052c57600080fd5b506102e3610a75565b34801561054157600080fd5b5061051e6105503660046120ab565b610ab2565b34801561056157600080fd5b5061051e610b07565b34801561057657600080fd5b506005546001600160a01b0316610357565b34801561059457600080fd5b50600654610357906001600160a01b031681565b3480156105b457600080fd5b5061051e6105c33660046120e0565b610b53565b3480156105d457600080fd5b506102ad610b99565b3480156105e957600080fd5b5061051e6105f83660046120ab565b610ba8565b34801561060957600080fd5b50610380600d5481565b34801561061f57600080fd5b5061038060125481565b34801561063557600080fd5b5061038060105481565b34801561064b57600080fd5b506102e361065a366004612011565b610c87565b34801561066b57600080fd5b506102e361067a366004612011565b610d20565b34801561068b57600080fd5b506102e361069a36600461203d565b60156020526000908152604090205460ff1681565b3480156106bb57600080fd5b506102e36106ca36600461203d565b60176020526000908152604090205460ff1681565b3480156106eb57600080fd5b50600a546102e390610100900460ff1681565b34801561070a57600080fd5b506016546102e39060ff1681565b34801561072457600080fd5b5061051e6107333660046120ab565b610d2d565b34801561074457600080fd5b5061038060075481565b34801561075a57600080fd5b506102e36107693660046120fb565b610db6565b34801561077a57600080fd5b50610380600b5481565b34801561079057600080fd5b5061051e610f0d565b3480156107a557600080fd5b506103806107b4366004612114565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061051e6107fa3660046120fb565b610f43565b34801561080b57600080fd5b5061038060085481565b34801561082157600080fd5b50610380600c5481565b34801561083757600080fd5b5061051e61084636600461203d565b611055565b34801561085757600080fd5b506103577f00000000000000000000000053f20ebe038ae1d1d27ab167991f9d8ee0052d4081565b34801561088b57600080fd5b50610380600f5481565b3480156108a157600080fd5b5061038060095481565b6060600380546108ba9061214d565b80601f01602080910402602001604051908101604052809291908181526020018280546108e69061214d565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a3384846110ed565b5060015b92915050565b6000610961848484611211565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109eb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109f885338584036110ed565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161094a918590610a3a90869061219d565b6110ed565b6005546001600160a01b03163314610a695760405162461bcd60e51b81526004016109e2906121b0565b610a736000611939565b565b6005546000906001600160a01b03163314610aa25760405162461bcd60e51b81526004016109e2906121b0565b50600a805460ff19169055600190565b6005546001600160a01b03163314610adc5760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b315760405162461bcd60e51b81526004016109e2906121b0565b6016805460ff19166001179055600a80546201010062ffff0019909116179055565b6005546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016109e2906121b0565b600a8054911515620100000262ff000019909216919091179055565b6060600480546108ba9061214d565b6005546001600160a01b03163314610bd25760405162461bcd60e51b81526004016109e2906121b0565b7f000000000000000000000000f422be6c0e2e381dc2a06bd665e90875d22f149e6001600160a01b0316826001600160a01b031603610c795760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109e2565b610c83828261198b565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109e2565b610d1633858584036110ed565b5060019392505050565b600061094a338484611211565b6005546001600160a01b03163314610d575760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610de35760405162461bcd60e51b81526004016109e2906121b0565b620186a0610df060025490565b610dfb9060016121e5565b610e059190612204565b821015610e725760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016109e2565b6103e8610e7e60025490565b610e899060056121e5565b610e939190612204565b821115610eff5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016109e2565b50600881905560015b919050565b6005546001600160a01b03163314610f375760405162461bcd60e51b81526004016109e2906121b0565b6016805460ff19169055565b600a54610100900460ff16610f935760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b037f00000000000000000000000053f20ebe038ae1d1d27ab167991f9d8ee0052d4016635166c42b336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa15801561100d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110319190612226565b810361105257336000908152601560205260409020805460ff191660011790555b50565b6005546001600160a01b0316331461107f5760405162461bcd60e51b81526004016109e2906121b0565b6001600160a01b0381166110e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e2565b61105281611939565b6001600160a01b03831661114f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109e2565b6001600160a01b0382166111b05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109e2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112375760405162461bcd60e51b81526004016109e29061223f565b6001600160a01b03821661125d5760405162461bcd60e51b81526004016109e290612284565b8060000361127657611271838360006119df565b505050565b600a5460ff1615611664576005546001600160a01b038481169116148015906112ad57506005546001600160a01b03838116911614155b80156112c157506001600160a01b03821615155b80156112d857506001600160a01b03821661dead14155b80156112ee5750600554600160a01b900460ff16155b1561166457600a54610100900460ff16611386576001600160a01b03831660009081526013602052604090205460ff168061134157506001600160a01b03821660009081526013602052604090205460ff165b6113865760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109e2565b6001600160a01b03831660009081526017602052604090205460ff1680156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156115235760165460ff1615611444576001600160a01b03821660009081526015602052604090205460ff1615156001146114445760405162461bcd60e51b815260206004820152601e60248201527f417070726f76616c20666f722054726164696e672072657175697265642e000060448201526064016109e2565b6007548111156114b45760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109e2565b6009546001600160a01b0383166000908152602081905260409020546114da908361219d565b111561151e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b611664565b6001600160a01b03821660009081526017602052604090205460ff16801561156457506001600160a01b03831660009081526014602052604090205460ff16155b156115da5760075481111561151e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109e2565b6001600160a01b03821660009081526014602052604090205460ff16611664576009546001600160a01b038316600090815260208190526040902054611620908361219d565b11156116645760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109e2565b30600090815260208190526040902054600854811080159081906116905750600a5462010000900460ff165b80156116a65750600554600160a01b900460ff16155b80156116cb57506001600160a01b03851660009081526017602052604090205460ff16155b80156116f057506001600160a01b03851660009081526013602052604090205460ff16155b801561171557506001600160a01b03841660009081526013602052604090205460ff16155b15611743576005805460ff60a01b1916600160a01b179055611735611b34565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061179157506001600160a01b03851660009081526013602052604090205460ff165b1561179a575060005b60008115611925576001600160a01b03861660009081526017602052604090205460ff1680156117cc57506000600e54115b1561185a576117f160646117eb600e5488611cdd90919063ffffffff16565b90611cf0565b9050600e54600f548261180491906121e5565b61180e9190612204565b6011600082825461181f919061219d565b9091555050600e5460105461183490836121e5565b61183e9190612204565b6012600082825461184f919061219d565b909155506119079050565b6001600160a01b03871660009081526017602052604090205460ff16801561188457506000600b54115b15611907576118a360646117eb600b5488611cdd90919063ffffffff16565b9050600b54600c54826118b691906121e5565b6118c09190612204565b601160008282546118d1919061219d565b9091555050600b54600d546118e690836121e5565b6118f09190612204565b60126000828254611901919061219d565b90915550505b8015611918576119188730836119df565b61192281866122c7565b94505b6119308787876119df565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a055760405162461bcd60e51b81526004016109e29061223f565b6001600160a01b038216611a2b5760405162461bcd60e51b81526004016109e290612284565b6001600160a01b03831660009081526020819052604090205481811015611aa35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109e2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ada90849061219d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2691815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601254601154611b58919061219d565b90506000821580611b67575081155b15611b7157505050565b600854611b7f9060146121e5565b831115611b9757600854611b949060146121e5565b92505b600060028360115486611baa91906121e5565b611bb49190612204565b611bbe9190612204565b90506000611bcc8583611cfc565b905047611bd882611d08565b6000611be44783611cfc565b90506000611c01876117eb60125485611cdd90919063ffffffff16565b90506000611c0f82846122c7565b6000601181905560125590508515801590611c2a5750600081115b15611c7d57611c398682611ec8565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611cca576040519150601f19603f3d011682016040523d82523d6000602084013e611ccf565b606091505b505050505050505050505050565b6000611ce982846121e5565b9392505050565b6000611ce98284612204565b6000611ce982846122c7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d3d57611d3d6122da565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ddf91906122f0565b81600181518110611df257611df26122da565b60200260200101906001600160a01b031690816001600160a01b031681525050611e3d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ed565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611e9290859060009086903090429060040161230d565b600060405180830381600087803b158015611eac57600080fd5b505af1158015611ec0573d6000803e3d6000fd5b505050505050565b611ef3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110ed565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611f82573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611fa7919061237e565b5050505050565b600060208083528351808285015260005b81811015611fdb57858101830151858201604001528201611fbf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461105257600080fd5b6000806040838503121561202457600080fd5b823561202f81611ffc565b946020939093013593505050565b60006020828403121561204f57600080fd5b8135611ce981611ffc565b60008060006060848603121561206f57600080fd5b833561207a81611ffc565b9250602084013561208a81611ffc565b929592945050506040919091013590565b80358015158114610f0857600080fd5b600080604083850312156120be57600080fd5b82356120c981611ffc565b91506120d76020840161209b565b90509250929050565b6000602082840312156120f257600080fd5b611ce98261209b565b60006020828403121561210d57600080fd5b5035919050565b6000806040838503121561212757600080fd5b823561213281611ffc565b9150602083013561214281611ffc565b809150509250929050565b600181811c9082168061216157607f821691505b60208210810361218157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561094e5761094e612187565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008160001904831182151516156121ff576121ff612187565b500290565b60008261222157634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561223857600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561094e5761094e612187565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561230257600080fd5b8151611ce981611ffc565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561235d5784516001600160a01b031683529383019391830191600101612338565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561239357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220376a5793996d179eb0f249c8c14b6910579a50a4e58229091e2dfd5215f62b2164736f6c63430008100033
Deployed Bytecode Sourcemap
32766:13122:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11698:169:0;1023:187:1;33806:63:0;;;;;;;;;;-1:-1:-1;33806:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32842:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;32842:51:0;1467:230:1;10651:108:0;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;1848:25:1;;;1836:2;1821:18;10651:108:0;1702:177:1;33590:33:0;;;;;;;;;;;;;;;;12349:492;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;32945:53::-;;;;;;;;;;;;32991:6;32945:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;2695:36:1;;2683:2;2668:18;10493:93:0;2553:184:1;13250:215:0;;;;;;;;;;-1:-1:-1;13250:215:0;;;;;:::i;:::-;;:::i;32900:38::-;;;;;;;;;;;;;;;33262:33;;;;;;;;;;-1:-1:-1;33262:33:0;;;;;;;;38776:126;;;;;;;;;;-1:-1:-1;38776:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38866:28:0;38842:4;38866:28;;;:19;:28;;;;;;;;;38776:126;33486:28;;;;;;;;;;;;;;;;33342:31;;;;;;;;;;-1:-1:-1;33342:31:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;:::-;;37010:121;;;;;;;;;;;;;:::i;37707:167::-;;;;;;;;;;-1:-1:-1;37707:167:0;;;;;:::i;:::-;;:::i;36810:148::-;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;33114:24;;;;;;;;;;-1:-1:-1;33114:24:0;;;;-1:-1:-1;;;;;33114:24:0;;;37970:100;;;;;;;;;;-1:-1:-1;37970:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;38268:304::-;;;;;;;;;;-1:-1:-1;38268:304:0;;;;;:::i;:::-;;:::i;33453:24::-;;;;;;;;;;;;;;;;33630:27;;;;;;;;;;;;;;;;33559:25;;;;;;;;;;;;;;;;13968:413;;;;;;;;;;-1:-1:-1;13968:413:0;;;;;:::i;:::-;;:::i;11162:175::-;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;33904:48::-;;;;;;;;;;-1:-1:-1;33904:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34155:57;;;;;;;;;;-1:-1:-1;34155:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33302:33;;;;;;;;;;-1:-1:-1;33302:33:0;;;;;;;;;;;33959:38;;;;;;;;;;-1:-1:-1;33959:38:0;;;;;;;;38078:182;;;;;;;;;;-1:-1:-1;38078:182:0;;;;;:::i;:::-;;:::i;33147:35::-;;;;;;;;;;;;;;;;37201:497;;;;;;;;;;-1:-1:-1;37201:497:0;;;;;:::i;:::-;;:::i;33382:27::-;;;;;;;;;;;;;;;;39209:91;;;;;;;;;;;;;:::i;11400:151::-;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;38910:291;;;;;;;;;;-1:-1:-1;38910:291:0;;;;;:::i;:::-;;:::i;33189:33::-;;;;;;;;;;;;;;;;33416:30;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;33033:42::-;;;;;;;;;;;;;;;33521:31;;;;;;;;;;;;;;;;33229:24;;;;;;;;;;;;;;;;9531:100;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;4997:2:1;12626:79:0;;;4979:21:1;5036:2;5016:18;;;5009:30;5075:34;5055:18;;;5048:62;-1:-1:-1;;;5126:18:1;;;5119:38;5174:19;;12626:79:0;;;;;;;;;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;13250:215::-;868:10;13338:4;13387:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13387:34:0;;;;;;;;;;13338:4;;13355:80;;13378:7;;13387:47;;13424:10;;13387:47;:::i;:::-;13355:8;:80::i;2766:103::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;37010:121::-;2188:6;;37062:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;37079:14:0::1;:22:::0;;-1:-1:-1;;37079:22:0::1;::::0;;;37010:121;:::o;37707:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37820:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37820:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37707:167::o;36810:148::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;36865:18:::1;:25:::0;;-1:-1:-1;;36865:25:0::1;36886:4;36865:25;::::0;;36901:13:::1;:20:::0;;36932:18;-1:-1:-1;;36932:18:0;;;;;;36810:148::o;37970:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;38041:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;38041:21:0;;::::1;::::0;;;::::1;::::0;;37970:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;38268:304::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;38412:13:::1;-1:-1:-1::0;;;;;38404:21:0::1;:4;-1:-1:-1::0;;;;;38404:21:0::1;::::0;38382:128:::1;;;::::0;-1:-1:-1;;;38382:128:0;;6029:2:1;38382:128:0::1;::::0;::::1;6011:21:1::0;6068:2;6048:18;;;6041:30;6107:34;6087:18;;;6080:62;6178:27;6158:18;;;6151:55;6223:19;;38382:128:0::1;5827:421:1::0;38382:128:0::1;38523:41;38552:4;38558:5;38523:28;:41::i;:::-;38268:304:::0;;:::o;13968:413::-;868:10;14061:4;14105:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14105:34:0;;;;;;;;;;14158:35;;;;14150:85;;;;-1:-1:-1;;;14150:85:0;;6455:2:1;14150:85:0;;;6437:21:1;6494:2;6474:18;;;6467:30;6533:34;6513:18;;;6506:62;-1:-1:-1;;;6584:18:1;;;6577:35;6629:19;;14150:85:0;6253:401:1;14150:85:0;14271:67;868:10;14294:7;14322:15;14303:16;:34;14271:8;:67::i;:::-;-1:-1:-1;14369:4:0;;13968:413;-1:-1:-1;;;13968:413:0:o;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;38078:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38163:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38163:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38218:34;;1163:41:1;;;38218:34:0::1;::::0;1136:18:1;38218:34:0::1;;;;;;;38078:182:::0;;:::o;37201:497::-;2188:6;;37309:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;37388:6:::1;37367:13;10739:12:::0;;;10651:108;37367:13:::1;:17;::::0;37383:1:::1;37367:17;:::i;:::-;37366:28;;;;:::i;:::-;37353:9;:41;;37331:144;;;::::0;-1:-1:-1;;;37331:144:0;;7256:2:1;37331:144:0::1;::::0;::::1;7238:21:1::0;7295:2;7275:18;;;7268:30;7334:34;7314:18;;;7307:62;-1:-1:-1;;;7385:18:1;;;7378:51;7446:19;;37331:144:0::1;7054:417:1::0;37331:144:0::1;37543:4;37522:13;10739:12:::0;;;10651:108;37522:13:::1;:17;::::0;37538:1:::1;37522:17;:::i;:::-;37521:26;;;;:::i;:::-;37508:9;:39;;37486:141;;;::::0;-1:-1:-1;;;37486:141:0;;7678:2:1;37486:141:0::1;::::0;::::1;7660:21:1::0;7717:2;7697:18;;;7690:30;7756:34;7736:18;;;7729:62;-1:-1:-1;;;7807:18:1;;;7800:50;7867:19;;37486:141:0::1;7476:416:1::0;37486:141:0::1;-1:-1:-1::0;37638:18:0::1;:30:::0;;;37686:4:::1;2406:1;37201:497:::0;;;:::o;39209:91::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;39266:18:::1;:26:::0;;-1:-1:-1;;39266:26:0::1;::::0;;39209:91::o;38910:291::-;38991:13;;;;;;;38969:85;;;;-1:-1:-1;;;38969:85:0;;8099:2:1;38969:85:0;;;8081:21:1;8138:2;8118:18;;;8111:30;-1:-1:-1;;;8157:18:1;;;8150:52;8219:18;;38969:85:0;7897:346:1;38969:85:0;-1:-1:-1;;;;;39077:6:0;:22;;868:10;39077:51;;-1:-1:-1;;;;;;39077:51:0;;;;;;;-1:-1:-1;;;;;8478:15:1;;;39077:51:0;;;8460:34:1;39122:4:0;8510:18:1;;;8503:43;8395:18;;39077:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39069:4;:59;39065:129;;868:10;39145:30;;;;:16;:30;;;;;:37;;-1:-1:-1;;39145:37:0;39178:4;39145:37;;;39065:129;38910:291;:::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;8948:2:1;3105:73:0::1;::::0;::::1;8930:21:1::0;8987:2;8967:18;;;8960:30;9026:34;9006:18;;;8999:62;-1:-1:-1;;;9077:18:1;;;9070:36;9123:19;;3105:73:0::1;8746:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;17652:380::-:0;-1:-1:-1;;;;;17788:19:0;;17780:68;;;;-1:-1:-1;;;17780:68:0;;9355:2:1;17780:68:0;;;9337:21:1;9394:2;9374:18;;;9367:30;9433:34;9413:18;;;9406:62;-1:-1:-1;;;9484:18:1;;;9477:34;9528:19;;17780:68:0;9153:400:1;17780:68:0;-1:-1:-1;;;;;17867:21:0;;17859:68;;;;-1:-1:-1;;;17859:68:0;;9760:2:1;17859:68:0;;;9742:21:1;9799:2;9779:18;;;9772:30;9838:34;9818:18;;;9811:62;-1:-1:-1;;;9889:18:1;;;9882:32;9931:19;;17859:68:0;9558:398:1;17859:68:0;-1:-1:-1;;;;;17940:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17992:32;;1848:25:1;;;17992:32:0;;1821:18:1;17992:32:0;;;;;;;17652:380;;;:::o;39312:4030::-;-1:-1:-1;;;;;39444:18:0;;39436:68;;;;-1:-1:-1;;;39436:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39523:16:0;;39515:64;;;;-1:-1:-1;;;39515:64:0;;;;;;;:::i;:::-;39596:6;39606:1;39596:11;39592:93;;39624:28;39640:4;39646:2;39650:1;39624:15;:28::i;:::-;39312:4030;;;:::o;39592:93::-;39701:14;;;;39697:1946;;;2188:6;;-1:-1:-1;;;;;39754:15:0;;;2188:6;;39754:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;39790:13:0;;;2188:6;;39790:13;;39754:49;:86;;;;-1:-1:-1;;;;;;39824:16:0;;;;39754:86;:128;;;;-1:-1:-1;;;;;;39861:21:0;;39875:6;39861:21;;39754:128;:158;;;;-1:-1:-1;39904:8:0;;-1:-1:-1;;;39904:8:0;;;;39903:9;39754:158;39732:1900;;;39952:13;;;;;;;39947:223;;-1:-1:-1;;;;;40024:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40053:23:0;;;;;;:19;:23;;;;;;;;40024:52;39990:160;;;;-1:-1:-1;;;39990:160:0;;8099:2:1;39990:160:0;;;8081:21:1;8138:2;8118:18;;;8111:30;-1:-1:-1;;;8157:18:1;;;8150:52;8219:18;;39990:160:0;7897:346:1;39990:160:0;-1:-1:-1;;;;;40244:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40301:35:0;;;;;;:31;:35;;;;;;;;40300:36;40244:92;40218:1399;;;40383:18;;;;40379:231;;;-1:-1:-1;;;;;40468:20:0;;;;;;:16;:20;;;;;;;;:28;;:20;:28;40430:156;;;;-1:-1:-1;;;40430:156:0;;10973:2:1;40430:156:0;;;10955:21:1;11012:2;10992:18;;;10985:30;11051:32;11031:18;;;11024:60;11101:18;;40430:156:0;10771:354:1;40430:156:0;40675:20;;40665:6;:30;;40631:169;;;;-1:-1:-1;;;40631:169:0;;11332:2:1;40631:169:0;;;11314:21:1;11371:2;11351:18;;;11344:30;11410:34;11390:18;;;11383:62;-1:-1:-1;;;11461:18:1;;;11454:51;11522:19;;40631:169:0;11130:417:1;40631:169:0;40883:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;40857:22;;:6;:22;:::i;:::-;:35;;40823:140;;;;-1:-1:-1;;;40823:140:0;;11754:2:1;40823:140:0;;;11736:21:1;11793:2;11773:18;;;11766:30;-1:-1:-1;;;11812:18:1;;;11805:49;11871:18;;40823:140:0;11552:343:1;40823:140:0;40218:1399;;;-1:-1:-1;;;;;41061:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41116:37:0;;;;;;:31;:37;;;;;;;;41115:38;41061:92;41035:582;;;41240:20;;41230:6;:30;;41196:170;;;;-1:-1:-1;;;41196:170:0;;12102:2:1;41196:170:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:34;12160:18;;;12153:62;-1:-1:-1;;;12231:18:1;;;12224:52;12293:19;;41196:170:0;11900:418:1;41035:582:0;-1:-1:-1;;;;;41397:35:0;;;;;;:31;:35;;;;;;;;41392:225;;41517:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;41491:22;;:6;:22;:::i;:::-;:35;;41457:140;;;;-1:-1:-1;;;41457:140:0;;11754:2:1;41457:140:0;;;11736:21:1;11793:2;11773:18;;;11766:30;-1:-1:-1;;;11812:18:1;;;11805:49;11871:18;;41457:140:0;11552:343:1;41457:140:0;41704:4;41655:28;10923:18;;;;;;;;;;;41762;;41738:42;;;;;;;41811:35;;-1:-1:-1;41835:11:0;;;;;;;41811:35;:61;;;;-1:-1:-1;41864:8:0;;-1:-1:-1;;;41864:8:0;;;;41863:9;41811:61;:110;;;;-1:-1:-1;;;;;;41890:31:0;;;;;;:25;:31;;;;;;;;41889:32;41811:110;:153;;;;-1:-1:-1;;;;;;41939:25:0;;;;;;:19;:25;;;;;;;;41938:26;41811:153;:194;;;;-1:-1:-1;;;;;;41982:23:0;;;;;;:19;:23;;;;;;;;41981:24;41811:194;41793:326;;;42032:8;:15;;-1:-1:-1;;;;42032:15:0;-1:-1:-1;;;42032:15:0;;;42064:10;:8;:10::i;:::-;42091:8;:16;;-1:-1:-1;;;;42091:16:0;;;41793:326;42147:8;;-1:-1:-1;;;;;42257:25:0;;42131:12;42257:25;;;:19;:25;;;;;;42147:8;-1:-1:-1;;;42147:8:0;;;;;42146:9;;42257:25;;:52;;-1:-1:-1;;;;;;42286:23:0;;;;;;:19;:23;;;;;;;;42257:52;42253:100;;;-1:-1:-1;42336:5:0;42253:100;42365:12;42470:7;42466:823;;;-1:-1:-1;;;;;42522:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42571:1;42555:13;;:17;42522:50;42518:622;;;42600:34;42630:3;42600:25;42611:13;;42600:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42593:41;;42703:13;;42683:16;;42676:4;:23;;;;:::i;:::-;42675:41;;;;:::i;:::-;42653:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42773:13:0;;42759:10;;42752:17;;:4;:17;:::i;:::-;42751:35;;;;:::i;:::-;42735:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;42518:622:0;;-1:-1:-1;42518:622:0;;-1:-1:-1;;;;;42864:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42914:1;42899:12;;:16;42864:51;42860:280;;;42943:33;42972:3;42943:24;42954:12;;42943:6;:10;;:24;;;;:::i;:33::-;42936:40;;43044:12;;43025:15;;43018:4;:22;;;;:::i;:::-;43017:39;;;;:::i;:::-;42995:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43112:12:0;;43099:9;;43092:16;;:4;:16;:::i;:::-;43091:33;;;;:::i;:::-;43075:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;42860:280:0;43160:8;;43156:91;;43189:42;43205:4;43219;43226;43189:15;:42::i;:::-;43263:14;43273:4;43263:14;;:::i;:::-;;;42466:823;43301:33;43317:4;43323:2;43327:6;43301:15;:33::i;:::-;39425:3917;;;;39312:4030;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;38580:188::-;-1:-1:-1;;;;;38663:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38663:39:0;;;;;;;;;;38720:40;;38663:39;;:31;38720:40;;;38580:188;;:::o;14871:733::-;-1:-1:-1;;;;;15011:20:0;;15003:70;;;;-1:-1:-1;;;15003:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15092:23:0;;15084:71;;;;-1:-1:-1;;;15084:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15252:17:0;;15228:21;15252:17;;;;;;;;;;;15288:23;;;;15280:74;;;;-1:-1:-1;;;15280:74:0;;12658:2:1;15280:74:0;;;12640:21:1;12697:2;12677:18;;;12670:30;12736:34;12716:18;;;12709:62;-1:-1:-1;;;12787:18:1;;;12780:36;12833:19;;15280:74:0;12456:402:1;15280:74:0;-1:-1:-1;;;;;15390:17:0;;;:9;:17;;;;;;;;;;;15410:22;;;15390:42;;15454:20;;;;;;;;:30;;15426:6;;15390:9;15454:30;;15426:6;;15454:30;:::i;:::-;;;;;;;;15519:9;-1:-1:-1;;;;;15502:35:0;15511:6;-1:-1:-1;;;;;15502:35:0;;15530:6;15502:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15502:35:0;;;;;;;;14992:612;14871:733;;;:::o;44470:1413::-;44553:4;44509:23;10923:18;;;;;;;;;;;44509:50;;44570:25;44619:12;;44598:18;;:33;;;;:::i;:::-;44570:61;-1:-1:-1;44642:12:0;44671:20;;;:46;;-1:-1:-1;44695:22:0;;44671:46;44667:85;;;44734:7;;;44470:1413::o;44667:85::-;44786:18;;:23;;44807:2;44786:23;:::i;:::-;44768:15;:41;44764:115;;;44844:18;;:23;;44865:2;44844:23;:::i;:::-;44826:41;;44764:115;44940:23;45027:1;45007:17;44985:18;;44967:15;:36;;;;:::i;:::-;44966:58;;;;:::i;:::-;:62;;;;:::i;:::-;44940:88;-1:-1:-1;45039:26:0;45068:36;:15;44940:88;45068:19;:36::i;:::-;45039:65;-1:-1:-1;45145:21:0;45179:36;45039:65;45179:16;:36::i;:::-;45228:18;45249:44;:21;45275:17;45249:25;:44::i;:::-;45228:65;;45307:17;45327:51;45360:17;45327:28;45342:12;;45327:10;:14;;:28;;;;:::i;:51::-;45307:71;-1:-1:-1;45391:23:0;45417:22;45307:71;45417:10;:22;:::i;:::-;45473:1;45452:18;:22;;;45485:12;:16;45391:48;-1:-1:-1;45518:19:0;;;;;:42;;;45559:1;45541:15;:19;45518:42;45514:278;;;45577:46;45590:15;45607;45577:12;:46::i;:::-;45747:18;;45643:137;;;13065:25:1;;;13121:2;13106:18;;13099:34;;;13149:18;;;13142:34;;;;45643:137:0;;;;;;13053:2:1;45643:137:0;;;45514:278;45826:9;;45818:57;;-1:-1:-1;;;;;45826:9:0;;;;45849:21;;45818:57;;;;45849:21;45826:9;45818:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;44470:1413:0:o;23105:98::-;23163:7;23190:5;23194:1;23190;:5;:::i;:::-;23183:12;23105:98;-1:-1:-1;;;23105:98:0:o;23504:::-;23562:7;23589:5;23593:1;23589;:5;:::i;22748:98::-;22806:7;22833:5;22837:1;22833;:5;:::i;43350:589::-;43500:16;;;43514:1;43500:16;;;;;;;;43476:21;;43500:16;;;;;;;;;;-1:-1:-1;43500:16:0;43476:40;;43545:4;43527;43532:1;43527:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43527:23:0;;;-1:-1:-1;;;;;43527:23:0;;;;;43571:15;-1:-1:-1;;;;;43571:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43561:4;43566:1;43561:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43561:32:0;;;-1:-1:-1;;;;;43561:32:0;;;;;43606:62;43623:4;43638:15;43656:11;43606:8;:62::i;:::-;43707:224;;-1:-1:-1;;;43707:224:0;;-1:-1:-1;;;;;43707:15:0;:66;;;;:224;;43788:11;;43814:1;;43858:4;;43885;;43905:15;;43707:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43405:534;43350:589;:::o;43947:515::-;44095:62;44112:4;44127:15;44145:11;44095:8;:62::i;:::-;44404:9;;44200:254;;-1:-1:-1;;;44200:254:0;;44272:4;44200:254;;;15243:34:1;15293:18;;;15286:34;;;44318:1:0;15336:18:1;;;15329:34;;;15379:18;;;15372:34;-1:-1:-1;;;;;44404:9:0;;;15422:19:1;;;15415:44;44428:15:0;15475:19:1;;;15468:35;44200:15:0;:31;;;;;;44239:9;;15177:19:1;;44200:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43947:515;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:160::-;2807:20;;2863:13;;2856:21;2846:32;;2836:60;;2892:1;2889;2882:12;2907:315;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:31;3132:5;3107:31;:::i;:::-;3157:5;-1:-1:-1;3181:35:1;3212:2;3197:18;;3181:35;:::i;:::-;3171:45;;2907:315;;;;;:::o;3227:180::-;3283:6;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;3375:26;3391:9;3375:26;:::i;3412:180::-;3471:6;3524:2;3512:9;3503:7;3499:23;3495:32;3492:52;;;3540:1;3537;3530:12;3492:52;-1:-1:-1;3563:23:1;;3412:180;-1:-1:-1;3412:180:1:o;3597:388::-;3665:6;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3781:9;3768:23;3800:31;3825:5;3800:31;:::i;:::-;3850:5;-1:-1:-1;3907:2:1;3892:18;;3879:32;3920:33;3879:32;3920:33;:::i;:::-;3972:7;3962:17;;;3597:388;;;;;:::o;4410:380::-;4489:1;4485:12;;;;4532;;;4553:61;;4607:4;4599:6;4595:17;4585:27;;4553:61;4660:2;4652:6;4649:14;4629:18;4626:38;4623:161;;4706:10;4701:3;4697:20;4694:1;4687:31;4741:4;4738:1;4731:15;4769:4;4766:1;4759:15;4623:161;;4410:380;;;:::o;5204:127::-;5265:10;5260:3;5256:20;5253:1;5246:31;5296:4;5293:1;5286:15;5320:4;5317:1;5310:15;5336:125;5401:9;;;5422:10;;;5419:36;;;5435:18;;:::i;5466:356::-;5668:2;5650:21;;;5687:18;;;5680:30;5746:34;5741:2;5726:18;;5719:62;5813:2;5798:18;;5466:356::o;6659:168::-;6699:7;6765:1;6761;6757:6;6753:14;6750:1;6747:21;6742:1;6735:9;6728:17;6724:45;6721:71;;;6772:18;;:::i;:::-;-1:-1:-1;6812:9:1;;6659:168::o;6832:217::-;6872:1;6898;6888:132;;6942:10;6937:3;6933:20;6930:1;6923:31;6977:4;6974:1;6967:15;7005:4;7002:1;6995:15;6888:132;-1:-1:-1;7034:9:1;;6832:217::o;8557:184::-;8627:6;8680:2;8668:9;8659:7;8655:23;8651:32;8648:52;;;8696:1;8693;8686:12;8648:52;-1:-1:-1;8719:16:1;;8557:184;-1:-1:-1;8557:184:1:o;9961:401::-;10163:2;10145:21;;;10202:2;10182:18;;;10175:30;10241:34;10236:2;10221:18;;10214:62;-1:-1:-1;;;10307:2:1;10292:18;;10285:35;10352:3;10337:19;;9961:401::o;10367:399::-;10569:2;10551:21;;;10608:2;10588:18;;;10581:30;10647:34;10642:2;10627:18;;10620:62;-1:-1:-1;;;10713:2:1;10698:18;;10691:33;10756:3;10741:19;;10367:399::o;12323:128::-;12390:9;;;12411:11;;;12408:37;;;12425:18;;:::i;13529:127::-;13590:10;13585:3;13581:20;13578:1;13571:31;13621:4;13618:1;13611:15;13645:4;13642:1;13635:15;13661:251;13731:6;13784:2;13772:9;13763:7;13759:23;13755:32;13752:52;;;13800:1;13797;13790:12;13752:52;13832:9;13826:16;13851:31;13876:5;13851:31;:::i;13917:980::-;14179:4;14227:3;14216:9;14212:19;14258:6;14247:9;14240:25;14284:2;14322:6;14317:2;14306:9;14302:18;14295:34;14365:3;14360:2;14349:9;14345:18;14338:31;14389:6;14424;14418:13;14455:6;14447;14440:22;14493:3;14482:9;14478:19;14471:26;;14532:2;14524:6;14520:15;14506:29;;14553:1;14563:195;14577:6;14574:1;14571:13;14563:195;;;14642:13;;-1:-1:-1;;;;;14638:39:1;14626:52;;14733:15;;;;14698:12;;;;14674:1;14592:9;14563:195;;;-1:-1:-1;;;;;;;14814:32:1;;;;14809:2;14794:18;;14787:60;-1:-1:-1;;;14878:3:1;14863:19;14856:35;14775:3;13917:980;-1:-1:-1;;;13917:980:1:o;15514:306::-;15602:6;15610;15618;15671:2;15659:9;15650:7;15646:23;15642:32;15639:52;;;15687:1;15684;15677:12;15639:52;15716:9;15710:16;15700:26;;15766:2;15755:9;15751:18;15745:25;15735:35;;15810:2;15799:9;15795:18;15789:25;15779:35;;15514:306;;;;;:::o
Swarm Source
ipfs://376a5793996d179eb0f249c8c14b6910579a50a4e58229091e2dfd5215f62b21
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.