ERC-20
Overview
Max Total Supply
1,000,000,000 DREAM
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,331,122.881178935056217911 DREAMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Yumekujira
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-07 */ /* The Tale of YumeKujira 夢鯨 Telegram : https://t.me/yumekujiraerc Twitter : https://twitter.com/yumekujiraerc */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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); } 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); } 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 {} } 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; } } } 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; } 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; } 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; } contract Yumekujira is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; address public lpWallet; uint256 public swapTokensAtAmount; uint256 public maxTokensForSwapback; uint256 public maxTransactionAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("YUMEKUJIRA", "DREAM") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 1; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 25; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = (totalSupply * 3) / 100; // 3% of total supply maxWallet = (totalSupply * 3) / 100; // 3% of total supply swapTokensAtAmount = (totalSupply * 30) / 10000; // 0.05% swapback trigger maxTokensForSwapback = (totalSupply * 3) / 1000; // buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xfE4871d4DD8879d95df37d4cb55f5bcA649Feb03); devWallet = address(0xe1399838dA100B0Ee088ff4dA456e56df17fEcb6); lpWallet = msg.sender; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(marketingWallet, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(marketingWallet, 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 {} /// @notice Launches the token and enables trading. Irriversable. function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } /// @notice Removes the max wallet and max transaction limits function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } /// @notice Disables the Same wallet block transfer delay function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } /// @notice Changes the minimum balance of tokens the contract must have before swapping tokens for ETH /// @param newAmount Base 100000, so 0.5% = 500. function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= 1, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= 500, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= maxTokensForSwapback, "Swap amount cannot be higher than maxTokensForSwapback" ); swapTokensAtAmount = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH /// @param newAmount Base 10000, so 0.5% = 50. function updateMaxTokensForSwapback(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= swapTokensAtAmount, "Swap amount cannot be lower than swapTokensAtAmount" ); maxTokensForSwapback = newAmount * totalSupply()/ 100000; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= 5, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * totalSupply()/1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } /// @notice Sets the fees for buys /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 40); } /// @notice Sets the fees for sells /// @param _marketingFee The fee for the marketing wallet /// @param _liquidityFee The fee for the liquidity pool /// @param _devFee The fee for the dev wallet function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 40); } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (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." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && 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; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / 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 lpWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxTokensForSwapback) { contractBalance = maxTokensForSwapback; } // 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyMarketingFee","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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensForSwapback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellMarketingFee","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":"tokensForMarketing","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTokensForSwapback","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600d805462ffffff19166001908117909155600f805460ff191690911790553480156200003057600080fd5b506040518060400160405280600a81526020016959554d454b554a49524160b01b81525060405180604001604052806005815260200164445245414d60d81b8152508160039081620000839190620007ab565b506004620000928282620007ab565b505050620000af620000a96200044f60201b60201c565b62000453565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d1816001620004a5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000142919062000877565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000190573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b6919062000877565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000877565b6001600160a01b031660a081905262000245906001620004a5565b60a051620002559060016200051f565b6001600080601981806b033b2e3c9fd0803ce800000060646200027a826003620008bf565b620002869190620008df565b600b55606462000298826003620008bf565b620002a49190620008df565b600c55612710620002b782601e620008bf565b620002c39190620008df565b6009556103e8620002d6826003620008bf565b620002e29190620008df565b600a556011879055601286905560138590558462000301878962000902565b6200030d919062000902565b601055601584905560168390556017829055816200032c848662000902565b62000338919062000902565b601455600680546001600160a01b031990811673fe4871d4dd8879d95df37d4cb55f5bca649feb031790915560078054821673e1399838da100b0ee088ff4da456e56df17fecb61790556008805490911633179055620003ac620003a46005546001600160a01b031690565b600162000573565b620003b930600162000573565b620003c861dead600162000573565b600654620003e1906001600160a01b0316600162000573565b62000400620003f86005546001600160a01b031690565b6001620004a5565b6200040d306001620004a5565b6200041c61dead6001620004a5565b60065462000435906001600160a01b03166001620004a5565b6200044133826200061d565b505050505050505062000918565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004f45760405162461bcd60e51b81526020600482018190526024820152600080516020620032d983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005be5760405162461bcd60e51b81526020600482018190526024820152600080516020620032d98339815191526044820152606401620004eb565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004eb565b806002600082825462000689919062000902565b90915550506001600160a01b03821660009081526020819052604081208054839290620006b890849062000902565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200073257607f821691505b6020821081036200075357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200070257600081815260208120601f850160051c81016020861015620007825750805b601f850160051c820191505b81811015620007a3578281556001016200078e565b505050505050565b81516001600160401b03811115620007c757620007c762000707565b620007df81620007d884546200071d565b8462000759565b602080601f831160018114620008175760008415620007fe5750858301515b600019600386901b1c1916600185901b178555620007a3565b600085815260208120601f198616915b82811015620008485788860151825594840194600190910190840162000827565b5085821015620008675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200088a57600080fd5b81516001600160a01b0381168114620008a257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008d957620008d9620008a9565b92915050565b600082620008fd57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008d957620008d9620008a9565b60805160a051612963620009766000396000818161052801528181610f4f01526117b60152600081816103fd01528181611778015281816122d50152818161238e015281816123ca0152818161244401526124ac01526129636000f3fe6080604052600436106103545760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c876d0b9116100d1578063c876d0b9146108ee578063c8c8ebe414610908578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c02466681461088e578063c17b5b8c146108ae578063c18bc195146108ce57600080fd5b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d7146107ff578063a9059cbb1461081f578063b62496f51461083f578063bbc0c7421461086f57600080fd5b80639c3b4fdc146107bd5780639fccce32146107d3578063a0d82dc5146107e957600080fd5b806392136913116101a05780639213691314610752578063924de9b71461076857806395d89b41146107885780639a7a23d61461079d57600080fd5b80638a8c523c146106ff5780638da5cb5b146107145780638ea5220f1461073257600080fd5b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146106935780637af8ed9c146106a95780637bce5a04146106c95780638095d564146106df57600080fd5b8063751039fc1461063e5780637571336a1461065357806375f0a8741461067357600080fd5b80636a486a8e1161027a5780636a486a8e146105bd5780636ddd1713146105d357806370a08231146105f3578063715018a61461062957600080fd5b80634a62bb651461054a5780634fbee193146105645780636303516c1461059d57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612524565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612587565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046125b3565b601c6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860195481565b34801561047857600080fd5b5061044860185481565b34801561048e57600080fd5b506104a261049d3660046125d0565b610ad0565b005b3480156104b057600080fd5b506103ab6104bf3660046125e9565b610bb6565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab610511366004612587565b610c60565b34801561052257600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055657600080fd5b50600d546103ab9060ff1681565b34801561057057600080fd5b506103ab61057f3660046125b3565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105a957600080fd5b5060085461041f906001600160a01b031681565b3480156105c957600080fd5b5061044860145481565b3480156105df57600080fd5b50600d546103ab9062010000900460ff1681565b3480156105ff57600080fd5b5061044861060e3660046125b3565b6001600160a01b031660009081526020819052604090205490565b34801561063557600080fd5b506104a2610c9c565b34801561064a57600080fd5b506103ab610cd2565b34801561065f57600080fd5b506104a261066e36600461263a565b610d0f565b34801561067f57600080fd5b5060065461041f906001600160a01b031681565b34801561069f57600080fd5b50610448600a5481565b3480156106b557600080fd5b506103ab6106c43660046125d0565b610d64565b3480156106d557600080fd5b5061044860115481565b3480156106eb57600080fd5b506104a26106fa36600461266f565b610e2c565b34801561070b57600080fd5b506104a2610e91565b34801561072057600080fd5b506005546001600160a01b031661041f565b34801561073e57600080fd5b5060075461041f906001600160a01b031681565b34801561075e57600080fd5b5061044860155481565b34801561077457600080fd5b506104a261078336600461269b565b610ece565b34801561079457600080fd5b50610375610f14565b3480156107a957600080fd5b506104a26107b836600461263a565b610f23565b3480156107c957600080fd5b5061044860135481565b3480156107df57600080fd5b50610448601a5481565b3480156107f557600080fd5b5061044860175481565b34801561080b57600080fd5b506103ab61081a366004612587565b611002565b34801561082b57600080fd5b506103ab61083a366004612587565b61109b565b34801561084b57600080fd5b506103ab61085a3660046125b3565b601d6020526000908152604090205460ff1681565b34801561087b57600080fd5b50600d546103ab90610100900460ff1681565b34801561089a57600080fd5b506104a26108a936600461263a565b6110a8565b3480156108ba57600080fd5b506104a26108c936600461266f565b611131565b3480156108da57600080fd5b506104a26108e93660046125d0565b611191565b3480156108fa57600080fd5b50600f546103ab9060ff1681565b34801561091457600080fd5b50610448600b5481565b34801561092a57600080fd5b506103ab6109393660046125d0565b61123e565b34801561094a57600080fd5b5061044860105481565b34801561096057600080fd5b5061044861096f3660046126b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab6113e6565b3480156109d157600080fd5b5061044860125481565b3480156109e757600080fd5b506104a26109f63660046125b3565b611423565b348015610a0757600080fd5b5061044860165481565b348015610a1d57600080fd5b50610448600c5481565b606060038054610a36906126ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906126ef565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac63384846114be565b5060015b92915050565b6005546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612729565b60405180910390fd5b670de0b6b3a76400006103e8610b1860025490565b610b23906001612774565b610b2d919061278b565b610b37919061278b565b811015610b9e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610afa565b610bb081670de0b6b3a7640000612774565b600b5550565b6000610bc38484846115e2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c485760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610afa565b610c5585338584036114be565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c979086906127ad565b6114be565b6005546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610afa90612729565b610cd06000611e34565b565b6005546000906001600160a01b03163314610cff5760405162461bcd60e51b8152600401610afa90612729565b50600d805460ff19169055600190565b6005546001600160a01b03163314610d395760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d915760405162461bcd60e51b8152600401610afa90612729565b600954821015610dff5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081cddd85c151bdad95b9cd05d105b5bdd5b9d606a1b6064820152608401610afa565b620186a0610e0c60025490565b610e169084612774565b610e20919061278b565b600a555060015b919050565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610afa90612729565b60118390556012829055601381905580610e7083856127ad565b610e7a91906127ad565b601081905560281015610e8c57600080fd5b505050565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610afa90612729565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610afa90612729565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a36906126ef565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610afa90612729565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ff45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610afa565b610ffe8282611e86565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afa565b61109133858584036114be565b5060019392505050565b6000610ac63384846115e2565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610afa90612729565b6015839055601682905560178190558061117583856127ad565b61117f91906127ad565b601481905560281015610e8c57600080fd5b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610afa90612729565b60058110156112185760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610afa565b6103e861122460025490565b61122e9083612774565b611238919061278b565b600c5550565b6005546000906001600160a01b0316331461126b5760405162461bcd60e51b8152600401610afa90612729565b60018210156112da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610afa565b6101f48211156113495760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610afa565b600a548211156113ba5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152756e206d6178546f6b656e73466f72537761706261636b60501b6064820152608401610afa565b620186a06113c760025490565b6113d19084612774565b6113db919061278b565b600955506001919050565b6005546000906001600160a01b031633146114135760405162461bcd60e51b8152600401610afa90612729565b50600f805460ff19169055600190565b6005546001600160a01b0316331461144d5760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0381166114b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6114bb81611e34565b50565b6001600160a01b0383166115205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afa565b6001600160a01b0382166115815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116085760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b03821661162e5760405162461bcd60e51b8152600401610afa90612805565b8060000361164257610e8c83836000611eda565b600d5460ff1615611aff576005546001600160a01b0384811691161480159061167957506005546001600160a01b03838116911614155b801561168d57506001600160a01b03821615155b80156116a457506001600160a01b03821661dead14155b80156116ba5750600554600160a01b900460ff16155b15611aff57600d54610100900460ff16611752576001600160a01b0383166000908152601b602052604090205460ff168061170d57506001600160a01b0382166000908152601b602052604090205460ff165b6117525760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610afa565b600f5460ff1615611899576005546001600160a01b038381169116148015906117ad57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117eb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189957326000908152600e602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610afa565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff1680156118da57506001600160a01b0382166000908152601c602052604090205460ff16155b156119be57600b5481111561194f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610afa565b600c546001600160a01b03831660009081526020819052604090205461197590836127ad565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b611aff565b6001600160a01b0382166000908152601d602052604090205460ff1680156119ff57506001600160a01b0383166000908152601c602052604090205460ff16155b15611a7557600b548111156119b95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610afa565b6001600160a01b0382166000908152601c602052604090205460ff16611aff57600c546001600160a01b038316600090815260208190526040902054611abb90836127ad565b1115611aff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b3060009081526020819052604090205460095481108015908190611b2b5750600d5462010000900460ff165b8015611b415750600554600160a01b900460ff16155b8015611b6657506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b8b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611bb057506001600160a01b0384166000908152601b602052604090205460ff16155b15611bde576005805460ff60a01b1916600160a01b179055611bd061202f565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611c2c57506001600160a01b0385166000908152601b602052604090205460ff165b15611c35575060005b60008115611e20576001600160a01b0386166000908152601d602052604090205460ff168015611c6757506000601454115b15611d2557611c8c6064611c866014548861225390919063ffffffff16565b90612266565b905060145460165482611c9f9190612774565b611ca9919061278b565b60196000828254611cba91906127ad565b9091555050601454601754611ccf9083612774565b611cd9919061278b565b601a6000828254611cea91906127ad565b9091555050601454601554611cff9083612774565b611d09919061278b565b60186000828254611d1a91906127ad565b90915550611e029050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d4f57506000601054115b15611e0257611d6e6064611c866010548861225390919063ffffffff16565b905060105460125482611d819190612774565b611d8b919061278b565b60196000828254611d9c91906127ad565b9091555050601054601354611db19083612774565b611dbb919061278b565b601a6000828254611dcc91906127ad565b9091555050601054601154611de19083612774565b611deb919061278b565b60186000828254611dfc91906127ad565b90915550505b8015611e1357611e13873083611eda565b611e1d8186612848565b94505b611e2b878787611eda565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f005760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b038216611f265760405162461bcd60e51b8152600401610afa90612805565b6001600160a01b03831660009081526020819052604090205481811015611f9e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fd59084906127ad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a5460185460195461205691906127ad565b61206091906127ad565b9050600082158061206f575081155b1561207957505050565b600a5483111561208957600a5492505b60006002836019548661209c9190612774565b6120a6919061278b565b6120b0919061278b565b905060006120be8583612272565b9050476120ca8261227e565b60006120d64783612272565b905060006120f387611c866018548561225390919063ffffffff16565b9050600061211088611c86601a548661225390919063ffffffff16565b905060008161211f8486612848565b6121299190612848565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b5090985050861580159061219f5750600081115b156121f2576121ae878261243e565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461223f576040519150601f19603f3d011682016040523d82523d6000602084013e612244565b606091505b50505050505050505050505050565b600061225f8284612774565b9392505050565b600061225f828461278b565b600061225f8284612848565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122b3576122b361285b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190612871565b816001815181106123685761236861285b565b60200260200101906001600160a01b031690816001600160a01b0316815250506123b3307f0000000000000000000000000000000000000000000000000000000000000000846114be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061240890859060009086903090429060040161288e565b600060405180830381600087803b15801561242257600080fd5b505af1158015612436573d6000803e3d6000fd5b505050505050565b612469307f0000000000000000000000000000000000000000000000000000000000000000846114be565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156124f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061251d91906128ff565b5050505050565b600060208083528351808285015260005b8181101561255157858101830151858201604001528201612535565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bb57600080fd5b6000806040838503121561259a57600080fd5b82356125a581612572565b946020939093013593505050565b6000602082840312156125c557600080fd5b813561225f81612572565b6000602082840312156125e257600080fd5b5035919050565b6000806000606084860312156125fe57600080fd5b833561260981612572565b9250602084013561261981612572565b929592945050506040919091013590565b80358015158114610e2757600080fd5b6000806040838503121561264d57600080fd5b823561265881612572565b91506126666020840161262a565b90509250929050565b60008060006060848603121561268457600080fd5b505081359360208301359350604090920135919050565b6000602082840312156126ad57600080fd5b61225f8261262a565b600080604083850312156126c957600080fd5b82356126d481612572565b915060208301356126e481612572565b809150509250929050565b600181811c9082168061270357607f821691505b60208210810361272357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610aca57610aca61275e565b6000826127a857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610aca57610aca61275e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca61275e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561288357600080fd5b815161225f81612572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128de5784516001600160a01b0316835293830193918301916001016128b9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561291457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122032fe0c5b228fda2a844229b4c0b42cfb80236d3a02ba30f770bbcd35cc481b0e64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103545760003560e01c80638a8c523c116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c876d0b9116100d1578063c876d0b9146108ee578063c8c8ebe414610908578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c02466681461088e578063c17b5b8c146108ae578063c18bc195146108ce57600080fd5b80639c3b4fdc11610164578063a457c2d71161013e578063a457c2d7146107ff578063a9059cbb1461081f578063b62496f51461083f578063bbc0c7421461086f57600080fd5b80639c3b4fdc146107bd5780639fccce32146107d3578063a0d82dc5146107e957600080fd5b806392136913116101a05780639213691314610752578063924de9b71461076857806395d89b41146107885780639a7a23d61461079d57600080fd5b80638a8c523c146106ff5780638da5cb5b146107145780638ea5220f1461073257600080fd5b80634a62bb65116102a0578063751039fc1161023e57806377c183521161021857806377c18352146106935780637af8ed9c146106a95780637bce5a04146106c95780638095d564146106df57600080fd5b8063751039fc1461063e5780637571336a1461065357806375f0a8741461067357600080fd5b80636a486a8e1161027a5780636a486a8e146105bd5780636ddd1713146105d357806370a08231146105f3578063715018a61461062957600080fd5b80634a62bb651461054a5780634fbee193146105645780636303516c1461059d57600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612524565b60405180910390f35b34801561039757600080fd5b506103ab6103a6366004612587565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d63660046125b3565b601c6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860195481565b34801561047857600080fd5b5061044860185481565b34801561048e57600080fd5b506104a261049d3660046125d0565b610ad0565b005b3480156104b057600080fd5b506103ab6104bf3660046125e9565b610bb6565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab610511366004612587565b610c60565b34801561052257600080fd5b5061041f7f00000000000000000000000036e3b3e9bd4497240dc6b88b78d8e912a996e5b281565b34801561055657600080fd5b50600d546103ab9060ff1681565b34801561057057600080fd5b506103ab61057f3660046125b3565b6001600160a01b03166000908152601b602052604090205460ff1690565b3480156105a957600080fd5b5060085461041f906001600160a01b031681565b3480156105c957600080fd5b5061044860145481565b3480156105df57600080fd5b50600d546103ab9062010000900460ff1681565b3480156105ff57600080fd5b5061044861060e3660046125b3565b6001600160a01b031660009081526020819052604090205490565b34801561063557600080fd5b506104a2610c9c565b34801561064a57600080fd5b506103ab610cd2565b34801561065f57600080fd5b506104a261066e36600461263a565b610d0f565b34801561067f57600080fd5b5060065461041f906001600160a01b031681565b34801561069f57600080fd5b50610448600a5481565b3480156106b557600080fd5b506103ab6106c43660046125d0565b610d64565b3480156106d557600080fd5b5061044860115481565b3480156106eb57600080fd5b506104a26106fa36600461266f565b610e2c565b34801561070b57600080fd5b506104a2610e91565b34801561072057600080fd5b506005546001600160a01b031661041f565b34801561073e57600080fd5b5060075461041f906001600160a01b031681565b34801561075e57600080fd5b5061044860155481565b34801561077457600080fd5b506104a261078336600461269b565b610ece565b34801561079457600080fd5b50610375610f14565b3480156107a957600080fd5b506104a26107b836600461263a565b610f23565b3480156107c957600080fd5b5061044860135481565b3480156107df57600080fd5b50610448601a5481565b3480156107f557600080fd5b5061044860175481565b34801561080b57600080fd5b506103ab61081a366004612587565b611002565b34801561082b57600080fd5b506103ab61083a366004612587565b61109b565b34801561084b57600080fd5b506103ab61085a3660046125b3565b601d6020526000908152604090205460ff1681565b34801561087b57600080fd5b50600d546103ab90610100900460ff1681565b34801561089a57600080fd5b506104a26108a936600461263a565b6110a8565b3480156108ba57600080fd5b506104a26108c936600461266f565b611131565b3480156108da57600080fd5b506104a26108e93660046125d0565b611191565b3480156108fa57600080fd5b50600f546103ab9060ff1681565b34801561091457600080fd5b50610448600b5481565b34801561092a57600080fd5b506103ab6109393660046125d0565b61123e565b34801561094a57600080fd5b5061044860105481565b34801561096057600080fd5b5061044861096f3660046126b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab6113e6565b3480156109d157600080fd5b5061044860125481565b3480156109e757600080fd5b506104a26109f63660046125b3565b611423565b348015610a0757600080fd5b5061044860165481565b348015610a1d57600080fd5b50610448600c5481565b606060038054610a36906126ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a62906126ef565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac63384846114be565b5060015b92915050565b6005546001600160a01b03163314610b035760405162461bcd60e51b8152600401610afa90612729565b60405180910390fd5b670de0b6b3a76400006103e8610b1860025490565b610b23906001612774565b610b2d919061278b565b610b37919061278b565b811015610b9e5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610afa565b610bb081670de0b6b3a7640000612774565b600b5550565b6000610bc38484846115e2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c485760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610afa565b610c5585338584036114be565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c979086906127ad565b6114be565b6005546001600160a01b03163314610cc65760405162461bcd60e51b8152600401610afa90612729565b610cd06000611e34565b565b6005546000906001600160a01b03163314610cff5760405162461bcd60e51b8152600401610afa90612729565b50600d805460ff19169055600190565b6005546001600160a01b03163314610d395760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610d915760405162461bcd60e51b8152600401610afa90612729565b600954821015610dff5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272081cddd85c151bdad95b9cd05d105b5bdd5b9d606a1b6064820152608401610afa565b620186a0610e0c60025490565b610e169084612774565b610e20919061278b565b600a555060015b919050565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610afa90612729565b60118390556012829055601381905580610e7083856127ad565b610e7a91906127ad565b601081905560281015610e8c57600080fd5b505050565b6005546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610afa90612729565b600d805462ffff00191662010100179055565b6005546001600160a01b03163314610ef85760405162461bcd60e51b8152600401610afa90612729565b600d8054911515620100000262ff000019909216919091179055565b606060048054610a36906126ef565b6005546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610afa90612729565b7f00000000000000000000000036e3b3e9bd4497240dc6b88b78d8e912a996e5b26001600160a01b0316826001600160a01b031603610ff45760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610afa565b610ffe8282611e86565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610afa565b61109133858584036114be565b5060019392505050565b6000610ac63384846115e2565b6005546001600160a01b031633146110d25760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b0316331461115b5760405162461bcd60e51b8152600401610afa90612729565b6015839055601682905560178190558061117583856127ad565b61117f91906127ad565b601481905560281015610e8c57600080fd5b6005546001600160a01b031633146111bb5760405162461bcd60e51b8152600401610afa90612729565b60058110156112185760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610afa565b6103e861122460025490565b61122e9083612774565b611238919061278b565b600c5550565b6005546000906001600160a01b0316331461126b5760405162461bcd60e51b8152600401610afa90612729565b60018210156112da5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610afa565b6101f48211156113495760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610afa565b600a548211156113ba5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152756e206d6178546f6b656e73466f72537761706261636b60501b6064820152608401610afa565b620186a06113c760025490565b6113d19084612774565b6113db919061278b565b600955506001919050565b6005546000906001600160a01b031633146114135760405162461bcd60e51b8152600401610afa90612729565b50600f805460ff19169055600190565b6005546001600160a01b0316331461144d5760405162461bcd60e51b8152600401610afa90612729565b6001600160a01b0381166114b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610afa565b6114bb81611e34565b50565b6001600160a01b0383166115205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610afa565b6001600160a01b0382166115815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610afa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116085760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b03821661162e5760405162461bcd60e51b8152600401610afa90612805565b8060000361164257610e8c83836000611eda565b600d5460ff1615611aff576005546001600160a01b0384811691161480159061167957506005546001600160a01b03838116911614155b801561168d57506001600160a01b03821615155b80156116a457506001600160a01b03821661dead14155b80156116ba5750600554600160a01b900460ff16155b15611aff57600d54610100900460ff16611752576001600160a01b0383166000908152601b602052604090205460ff168061170d57506001600160a01b0382166000908152601b602052604090205460ff165b6117525760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610afa565b600f5460ff1615611899576005546001600160a01b038381169116148015906117ad57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117eb57507f00000000000000000000000036e3b3e9bd4497240dc6b88b78d8e912a996e5b26001600160a01b0316826001600160a01b031614155b1561189957326000908152600e602052604090205443116118865760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610afa565b326000908152600e602052604090204390555b6001600160a01b0383166000908152601d602052604090205460ff1680156118da57506001600160a01b0382166000908152601c602052604090205460ff16155b156119be57600b5481111561194f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610afa565b600c546001600160a01b03831660009081526020819052604090205461197590836127ad565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b611aff565b6001600160a01b0382166000908152601d602052604090205460ff1680156119ff57506001600160a01b0383166000908152601c602052604090205460ff16155b15611a7557600b548111156119b95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610afa565b6001600160a01b0382166000908152601c602052604090205460ff16611aff57600c546001600160a01b038316600090815260208190526040902054611abb90836127ad565b1115611aff5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610afa565b3060009081526020819052604090205460095481108015908190611b2b5750600d5462010000900460ff165b8015611b415750600554600160a01b900460ff16155b8015611b6657506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b8b57506001600160a01b0385166000908152601b602052604090205460ff16155b8015611bb057506001600160a01b0384166000908152601b602052604090205460ff16155b15611bde576005805460ff60a01b1916600160a01b179055611bd061202f565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611c2c57506001600160a01b0385166000908152601b602052604090205460ff165b15611c35575060005b60008115611e20576001600160a01b0386166000908152601d602052604090205460ff168015611c6757506000601454115b15611d2557611c8c6064611c866014548861225390919063ffffffff16565b90612266565b905060145460165482611c9f9190612774565b611ca9919061278b565b60196000828254611cba91906127ad565b9091555050601454601754611ccf9083612774565b611cd9919061278b565b601a6000828254611cea91906127ad565b9091555050601454601554611cff9083612774565b611d09919061278b565b60186000828254611d1a91906127ad565b90915550611e029050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d4f57506000601054115b15611e0257611d6e6064611c866010548861225390919063ffffffff16565b905060105460125482611d819190612774565b611d8b919061278b565b60196000828254611d9c91906127ad565b9091555050601054601354611db19083612774565b611dbb919061278b565b601a6000828254611dcc91906127ad565b9091555050601054601154611de19083612774565b611deb919061278b565b60186000828254611dfc91906127ad565b90915550505b8015611e1357611e13873083611eda565b611e1d8186612848565b94505b611e2b878787611eda565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f005760405162461bcd60e51b8152600401610afa906127c0565b6001600160a01b038216611f265760405162461bcd60e51b8152600401610afa90612805565b6001600160a01b03831660009081526020819052604090205481811015611f9e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610afa565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611fd59084906127ad565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161202191815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601a5460185460195461205691906127ad565b61206091906127ad565b9050600082158061206f575081155b1561207957505050565b600a5483111561208957600a5492505b60006002836019548661209c9190612774565b6120a6919061278b565b6120b0919061278b565b905060006120be8583612272565b9050476120ca8261227e565b60006120d64783612272565b905060006120f387611c866018548561225390919063ffffffff16565b9050600061211088611c86601a548661225390919063ffffffff16565b905060008161211f8486612848565b6121299190612848565b600060198190556018819055601a8190556007546040519293506001600160a01b031691849181818185875af1925050503d8060008114612186576040519150601f19603f3d011682016040523d82523d6000602084013e61218b565b606091505b5090985050861580159061219f5750600081115b156121f2576121ae878261243e565b601954604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461223f576040519150601f19603f3d011682016040523d82523d6000602084013e612244565b606091505b50505050505050505050505050565b600061225f8284612774565b9392505050565b600061225f828461278b565b600061225f8284612848565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122b3576122b361285b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123559190612871565b816001815181106123685761236861285b565b60200260200101906001600160a01b031690816001600160a01b0316815250506123b3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114be565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061240890859060009086903090429060040161288e565b600060405180830381600087803b15801561242257600080fd5b505af1158015612436573d6000803e3d6000fd5b505050505050565b612469307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114be565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156124f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061251d91906128ff565b5050505050565b600060208083528351808285015260005b8181101561255157858101830151858201604001528201612535565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114bb57600080fd5b6000806040838503121561259a57600080fd5b82356125a581612572565b946020939093013593505050565b6000602082840312156125c557600080fd5b813561225f81612572565b6000602082840312156125e257600080fd5b5035919050565b6000806000606084860312156125fe57600080fd5b833561260981612572565b9250602084013561261981612572565b929592945050506040919091013590565b80358015158114610e2757600080fd5b6000806040838503121561264d57600080fd5b823561265881612572565b91506126666020840161262a565b90509250929050565b60008060006060848603121561268457600080fd5b505081359360208301359350604090920135919050565b6000602082840312156126ad57600080fd5b61225f8261262a565b600080604083850312156126c957600080fd5b82356126d481612572565b915060208301356126e481612572565b809150509250929050565b600181811c9082168061270357607f821691505b60208210810361272357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610aca57610aca61275e565b6000826127a857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610aca57610aca61275e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610aca57610aca61275e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561288357600080fd5b815161225f81612572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128de5784516001600160a01b0316835293830193918301916001016128b9565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561291457600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122032fe0c5b228fda2a844229b4c0b42cfb80236d3a02ba30f770bbcd35cc481b0e64736f6c63430008130033
Deployed Bytecode Sourcemap
27929:17981:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8363:169;;;;;;;;;;-1:-1:-1;8363:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8363:169:0;1023:187:1;29351:63:0;;;;;;;;;;-1:-1:-1;29351:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28009:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;28009:51:0;1467:230:1;7316:108:0;;;;;;;;;;-1:-1:-1;7404:12:0;;7316:108;;;1848:25:1;;;1836:2;1821:18;7316:108:0;1702:177:1;29135:33:0;;;;;;;;;;;;;;;;29095;;;;;;;;;;;;;;;;34782:275;;;;;;;;;;-1:-1:-1;34782:275:0;;;;;:::i;:::-;;:::i;:::-;;9014:492;;;;;;;;;;-1:-1:-1;9014:492:0;;;;;:::i;:::-;;:::i;28112:53::-;;;;;;;;;;;;28158:6;28112:53;;7158:93;;;;;;;;;;-1:-1:-1;7158:93:0;;7241:2;2880:36:1;;2868:2;2853:18;7158:93:0;2738:184:1;9915:215:0;;;;;;;;;;-1:-1:-1;9915:215:0;;;;;:::i;:::-;;:::i;28067:38::-;;;;;;;;;;;;;;;28463:33;;;;;;;;;;-1:-1:-1;28463:33:0;;;;;;;;38179:126;;;;;;;;;;-1:-1:-1;38179:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38269:28:0;38245:4;38269:28;;;:19;:28;;;;;;;;;38179:126;28272:23;;;;;;;;;;-1:-1:-1;28272:23:0;;;;-1:-1:-1;;;;;28272:23:0;;;28950:28;;;;;;;;;;;;;;;;28543:31;;;;;;;;;;-1:-1:-1;28543:31:0;;;;;;;;;;;7487:127;;;;;;;;;;-1:-1:-1;7487:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7588:18:0;7561:7;7588:18;;;;;;;;;;;;7487:127;1502:103;;;;;;;;;;;;;:::i;33002:121::-;;;;;;;;;;;;;:::i;35602:167::-;;;;;;;;;;-1:-1:-1;35602:167:0;;;;;:::i;:::-;;:::i;28204:30::-;;;;;;;;;;-1:-1:-1;28204:30:0;;;;-1:-1:-1;;;;;28204:30:0;;;28344:35;;;;;;;;;;;;;;;;34263:361;;;;;;;;;;-1:-1:-1;34263:361:0;;;;;:::i;:::-;;:::i;28843:30::-;;;;;;;;;;;;;;;;36214:370;;;;;;;;;;-1:-1:-1;36214:370:0;;;;;:::i;:::-;;:::i;32815:112::-;;;;;;;;;;;;;:::i;851:87::-;;;;;;;;;;-1:-1:-1;924:6:0;;-1:-1:-1;;;;;924:6:0;851:87;;28241:24;;;;;;;;;;-1:-1:-1;28241:24:0;;;;-1:-1:-1;;;;;28241:24:0;;;28985:31;;;;;;;;;;;;;;;;35887:100;;;;;;;;;;-1:-1:-1;35887:100:0;;;;;:::i;:::-;;:::i;6415:104::-;;;;;;;;;;;;;:::i;37671:304::-;;;;;;;;;;-1:-1:-1;37671:304:0;;;;;:::i;:::-;;:::i;28917:24::-;;;;;;;;;;;;;;;;29175:27;;;;;;;;;;;;;;;;29061:25;;;;;;;;;;;;;;;;10633:413;;;;;;;;;;-1:-1:-1;10633:413:0;;;;;:::i;:::-;;:::i;7827:175::-;;;;;;;;;;-1:-1:-1;7827:175:0;;;;;:::i;:::-;;:::i;29572:57::-;;;;;;;;;;-1:-1:-1;29572:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28503:33;;;;;;;;;;-1:-1:-1;28503:33:0;;;;;;;;;;;37354:182;;;;;;;;;;-1:-1:-1;37354:182:0;;;;;:::i;:::-;;:::i;36808:379::-;;;;;;;;;;-1:-1:-1;36808:379:0;;;;;:::i;:::-;;:::i;35182:232::-;;;;;;;;;;-1:-1:-1;35182:232:0;;;;;:::i;:::-;;:::i;28761:39::-;;;;;;;;;;-1:-1:-1;28761:39:0;;;;;;;;28388:35;;;;;;;;;;;;;;;;33500:619;;;;;;;;;;-1:-1:-1;33500:619:0;;;;;:::i;:::-;;:::i;28809:27::-;;;;;;;;;;;;;;;;8065:151;;;;;;;;;;-1:-1:-1;8065:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8181:18:0;;;8154:7;8181:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8065:151;28304:33;;;;;;;;;;;;;;;;33194:135;;;;;;;;;;;;;:::i;28880:30::-;;;;;;;;;;;;;;;;1760:201;;;;;;;;;;-1:-1:-1;1760:201:0;;;;;:::i;:::-;;:::i;29023:31::-;;;;;;;;;;;;;;;;28430:24;;;;;;;;;;;;;;;;6196:100;6250:13;6283:5;6276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6196:100;:::o;8363:169::-;8446:4;8463:39;305:10;8486:7;8495:6;8463:8;:39::i;:::-;-1:-1:-1;8520:4:0;8363:169;;;;;:::o;34782:275::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;;;;;;;;;34919:4:::1;34911;34890:13;7404:12:::0;;;7316:108;34890:13:::1;:17;::::0;34906:1:::1;34890:17;:::i;:::-;34889:26;;;;:::i;:::-;34888:35;;;;:::i;:::-;34878:6;:45;;34856:142;;;::::0;-1:-1:-1;;;34856:142:0;;5786:2:1;34856:142:0::1;::::0;::::1;5768:21:1::0;5825:2;5805:18;;;5798:30;5864:34;5844:18;;;5837:62;-1:-1:-1;;;5915:18:1;;;5908:45;5970:19;;34856:142:0::1;5584:411:1::0;34856:142:0::1;35032:17;:6:::0;35042::::1;35032:17;:::i;:::-;35009:20;:40:::0;-1:-1:-1;34782:275:0:o;9014:492::-;9154:4;9171:36;9181:6;9189:9;9200:6;9171:9;:36::i;:::-;-1:-1:-1;;;;;9247:19:0;;9220:24;9247:19;;;:11;:19;;;;;;;;305:10;9247:33;;;;;;;;9299:26;;;;9291:79;;;;-1:-1:-1;;;9291:79:0;;6202:2:1;9291:79:0;;;6184:21:1;6241:2;6221:18;;;6214:30;6280:34;6260:18;;;6253:62;-1:-1:-1;;;6331:18:1;;;6324:38;6379:19;;9291:79:0;6000:404:1;9291:79:0;9406:57;9415:6;305:10;9456:6;9437:16;:25;9406:8;:57::i;:::-;-1:-1:-1;9494:4:0;;9014:492;-1:-1:-1;;;;9014:492:0:o;9915:215::-;305:10;10003:4;10052:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10052:34:0;;;;;;;;;;10003:4;;10020:80;;10043:7;;10052:47;;10089:10;;10052:47;:::i;:::-;10020:8;:80::i;1502:103::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;1567:30:::1;1594:1;1567:18;:30::i;:::-;1502:103::o:0;33002:121::-;924:6;;33054:4;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;-1:-1:-1;33071:14:0::1;:22:::0;;-1:-1:-1;;33071:22:0::1;::::0;;;33002:121;:::o;35602:167::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35715:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;35715:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35602:167::o;34263:361::-;924:6;;34373:4;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;34430:18:::1;;34417:9;:31;;34395:132;;;::::0;-1:-1:-1;;;34395:132:0;;6741:2:1;34395:132:0::1;::::0;::::1;6723:21:1::0;6780:2;6760:18;;;6753:30;6819:34;6799:18;;;6792:62;-1:-1:-1;;;6870:18:1;;;6863:49;6929:19;;34395:132:0::1;6539:415:1::0;34395:132:0::1;34588:6;34573:13;7404:12:::0;;;7316:108;34573:13:::1;34561:25;::::0;:9;:25:::1;:::i;:::-;:33;;;;:::i;:::-;34538:20;:56:::0;-1:-1:-1;34612:4:0::1;1142:1;34263:361:::0;;;:::o;36214:370::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;36364:15:::1;:31:::0;;;36406:15:::1;:31:::0;;;36448:9:::1;:19:::0;;;36460:7;36493:33:::1;36424:13:::0;36382;36493:33:::1;:::i;:::-;:45;;;;:::i;:::-;36478:12;:60:::0;;;36573:2:::1;-1:-1:-1::0;36557:18:0::1;36549:27;;;::::0;::::1;;36214:370:::0;;;:::o;32815:112::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;32870:13:::1;:20:::0;;-1:-1:-1;;32901:18:0;;;;;32815:112::o;35887:100::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;35958:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35958:21:0;;::::1;::::0;;;::::1;::::0;;35887:100::o;6415:104::-;6471:13;6504:7;6497:14;;;;;:::i;37671:304::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;37815:13:::1;-1:-1:-1::0;;;;;37807:21:0::1;:4;-1:-1:-1::0;;;;;37807:21:0::1;::::0;37785:128:::1;;;::::0;-1:-1:-1;;;37785:128:0;;7161:2:1;37785:128:0::1;::::0;::::1;7143:21:1::0;7200:2;7180:18;;;7173:30;7239:34;7219:18;;;7212:62;7310:27;7290:18;;;7283:55;7355:19;;37785:128:0::1;6959:421:1::0;37785:128:0::1;37926:41;37955:4;37961:5;37926:28;:41::i;:::-;37671:304:::0;;:::o;10633:413::-;305:10;10726:4;10770:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10770:34:0;;;;;;;;;;10823:35;;;;10815:85;;;;-1:-1:-1;;;10815:85:0;;7587:2:1;10815:85:0;;;7569:21:1;7626:2;7606:18;;;7599:30;7665:34;7645:18;;;7638:62;-1:-1:-1;;;7716:18:1;;;7709:35;7761:19;;10815:85:0;7385:401:1;10815:85:0;10936:67;305:10;10959:7;10987:15;10968:16;:34;10936:8;:67::i;:::-;-1:-1:-1;11034:4:0;;10633:413;-1:-1:-1;;;10633:413:0:o;7827:175::-;7913:4;7930:42;305:10;7954:9;7965:6;7930:9;:42::i;37354:182::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37439:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37439:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37494:34;;1163:41:1;;;37494:34:0::1;::::0;1136:18:1;37494:34:0::1;;;;;;;37354:182:::0;;:::o;36808:379::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;36959:16:::1;:32:::0;;;37002:16:::1;:32:::0;;;37045:10:::1;:20:::0;;;37058:7;37092:35:::1;37021:13:::0;36978;37092:35:::1;:::i;:::-;:48;;;;:::i;:::-;37076:13;:64:::0;;;37176:2:::1;-1:-1:-1::0;37159:19:0::1;37151:28;;;::::0;::::1;35182:232:::0;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;35291:1:::1;35281:6;:11;;35259:97;;;::::0;-1:-1:-1;;;35259:97:0;;7993:2:1;35259:97:0::1;::::0;::::1;7975:21:1::0;8032:2;8012:18;;;8005:30;8071:34;8051:18;;;8044:62;-1:-1:-1;;;8122:18:1;;;8115:34;8166:19;;35259:97:0::1;7791:400:1::0;35259:97:0::1;35402:4;35388:13;7404:12:::0;;;7316:108;35388:13:::1;35379:22;::::0;:6;:22:::1;:::i;:::-;:27;;;;:::i;:::-;35367:9;:39:::0;-1:-1:-1;35182:232:0:o;33500:619::-;924:6;;33608:4;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;33665:1:::1;33652:9;:14;;33630:117;;;::::0;-1:-1:-1;;;33630:117:0;;8398:2:1;33630:117:0::1;::::0;::::1;8380:21:1::0;8437:2;8417:18;;;8410:30;8476:34;8456:18;;;8449:62;-1:-1:-1;;;8527:18:1;;;8520:51;8588:19;;33630:117:0::1;8196:417:1::0;33630:117:0::1;33793:3;33780:9;:16;;33758:118;;;::::0;-1:-1:-1;;;33758:118:0;;8820:2:1;33758:118:0::1;::::0;::::1;8802:21:1::0;8859:2;8839:18;;;8832:30;8898:34;8878:18;;;8871:62;-1:-1:-1;;;8949:18:1;;;8942:50;9009:19;;33758:118:0::1;8618:416:1::0;33758:118:0::1;33922:20;;33909:9;:33;;33887:137;;;::::0;-1:-1:-1;;;33887:137:0;;9241:2:1;33887:137:0::1;::::0;::::1;9223:21:1::0;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:52;9432:19;;33887:137:0::1;9039:418:1::0;33887:137:0::1;34083:6;34068:13;7404:12:::0;;;7316:108;34068:13:::1;34056:25;::::0;:9;:25:::1;:::i;:::-;:33;;;;:::i;:::-;34035:18;:54:::0;-1:-1:-1;34107:4:0::1;33500:619:::0;;;:::o;33194:135::-;924:6;;33254:4;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;-1:-1:-1;33271:20:0::1;:28:::0;;-1:-1:-1;;33271:28:0::1;::::0;;;33194:135;:::o;1760:201::-;924:6;;-1:-1:-1;;;;;924:6:0;305:10;1071:23;1063:68;;;;-1:-1:-1;;;1063:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1849:22:0;::::1;1841:73;;;::::0;-1:-1:-1;;;1841:73:0;;9664:2:1;1841:73:0::1;::::0;::::1;9646:21:1::0;9703:2;9683:18;;;9676:30;9742:34;9722:18;;;9715:62;-1:-1:-1;;;9793:18:1;;;9786:36;9839:19;;1841:73:0::1;9462:402:1::0;1841:73:0::1;1925:28;1944:8;1925:18;:28::i;:::-;1760:201:::0;:::o;14317:380::-;-1:-1:-1;;;;;14453:19:0;;14445:68;;;;-1:-1:-1;;;14445:68:0;;10071:2:1;14445:68:0;;;10053:21:1;10110:2;10090:18;;;10083:30;10149:34;10129:18;;;10122:62;-1:-1:-1;;;10200:18:1;;;10193:34;10244:19;;14445:68:0;9869:400:1;14445:68:0;-1:-1:-1;;;;;14532:21:0;;14524:68;;;;-1:-1:-1;;;14524:68:0;;10476:2:1;14524:68:0;;;10458:21:1;10515:2;10495:18;;;10488:30;10554:34;10534:18;;;10527:62;-1:-1:-1;;;10605:18:1;;;10598:32;10647:19;;14524:68:0;10274:398:1;14524:68:0;-1:-1:-1;;;;;14605:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14657:32;;1848:25:1;;;14657:32:0;;1821:18:1;14657:32:0;;;;;;;14317:380;;;:::o;38313:4717::-;-1:-1:-1;;;;;38445:18:0;;38437:68;;;;-1:-1:-1;;;38437:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38524:16:0;;38516:64;;;;-1:-1:-1;;;38516:64:0;;;;;;;:::i;:::-;38597:6;38607:1;38597:11;38593:93;;38625:28;38641:4;38647:2;38651:1;38625:15;:28::i;38593:93::-;38702:14;;;;38698:2487;;;924:6;;-1:-1:-1;;;;;38755:15:0;;;924:6;;38755:15;;;;:49;;-1:-1:-1;924:6:0;;-1:-1:-1;;;;;38791:13:0;;;924:6;;38791:13;;38755:49;:86;;;;-1:-1:-1;;;;;;38825:16:0;;;;38755:86;:128;;;;-1:-1:-1;;;;;;38862:21:0;;38876:6;38862:21;;38755:128;:158;;;;-1:-1:-1;38905:8:0;;-1:-1:-1;;;38905:8:0;;;;38904:9;38755:158;38733:2441;;;38953:13;;;;;;;38948:223;;-1:-1:-1;;;;;39025:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39054:23:0;;;;;;:19;:23;;;;;;;;39025:52;38991:160;;;;-1:-1:-1;;;38991:160:0;;11689:2:1;38991:160:0;;;11671:21:1;11728:2;11708:18;;;11701:30;-1:-1:-1;;;11747:18:1;;;11740:52;11809:18;;38991:160:0;11487:346:1;38991:160:0;39327:20;;;;39323:641;;;924:6;;-1:-1:-1;;;;;39402:13:0;;;924:6;;39402:13;;;;:72;;;39458:15;-1:-1:-1;;;;;39444:30:0;:2;-1:-1:-1;;;;;39444:30:0;;;39402:72;:129;;;;;39517:13;-1:-1:-1;;;;;39503:28:0;:2;-1:-1:-1;;;;;39503:28:0;;;39402:129;39372:573;;;39649:9;39620:39;;;;:28;:39;;;;;;39695:12;-1:-1:-1;39582:258:0;;;;-1:-1:-1;;;39582:258:0;;12040:2:1;39582:258:0;;;12022:21:1;12079:2;12059:18;;;12052:30;12118:34;12098:18;;;12091:62;12189:34;12169:18;;;12162:62;-1:-1:-1;;;12240:19:1;;;12233:40;12290:19;;39582:258:0;11838:477:1;39582:258:0;39896:9;39867:39;;;;:28;:39;;;;;39909:12;39867:54;;39372:573;-1:-1:-1;;;;;40038:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40095:35:0;;;;;;:31;:35;;;;;;;;40094:36;40038:92;40012:1147;;;40217:20;;40207:6;:30;;40173:169;;;;-1:-1:-1;;;40173:169:0;;12522:2:1;40173:169:0;;;12504:21:1;12561:2;12541:18;;;12534:30;12600:34;12580:18;;;12573:62;-1:-1:-1;;;12651:18:1;;;12644:51;12712:19;;40173:169:0;12320:417:1;40173:169:0;40425:9;;-1:-1:-1;;;;;7588:18:0;;7561:7;7588:18;;;;;;;;;;;40399:22;;:6;:22;:::i;:::-;:35;;40365:140;;;;-1:-1:-1;;;40365:140:0;;12944:2:1;40365:140:0;;;12926:21:1;12983:2;12963:18;;;12956:30;-1:-1:-1;;;13002:18:1;;;12995:49;13061:18;;40365:140:0;12742:343:1;40365:140:0;40012:1147;;;-1:-1:-1;;;;;40603:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40658:37:0;;;;;;:31;:37;;;;;;;;40657:38;40603:92;40577:582;;;40782:20;;40772:6;:30;;40738:170;;;;-1:-1:-1;;;40738:170:0;;13292:2:1;40738:170:0;;;13274:21:1;13331:2;13311:18;;;13304:30;13370:34;13350:18;;;13343:62;-1:-1:-1;;;13421:18:1;;;13414:52;13483:19;;40738:170:0;13090:418:1;40577:582:0;-1:-1:-1;;;;;40939:35:0;;;;;;:31;:35;;;;;;;;40934:225;;41059:9;;-1:-1:-1;;;;;7588:18:0;;7561:7;7588:18;;;;;;;;;;;41033:22;;:6;:22;:::i;:::-;:35;;40999:140;;;;-1:-1:-1;;;40999:140:0;;12944:2:1;40999:140:0;;;12926:21:1;12983:2;12963:18;;;12956:30;-1:-1:-1;;;13002:18:1;;;12995:49;13061:18;;40999:140:0;12742:343:1;40999:140:0;41246:4;41197:28;7588:18;;;;;;;;;;;41304;;41280:42;;;;;;;41353:35;;-1:-1:-1;41377:11:0;;;;;;;41353:35;:61;;;;-1:-1:-1;41406:8:0;;-1:-1:-1;;;41406:8:0;;;;41405:9;41353:61;:110;;;;-1:-1:-1;;;;;;41432:31:0;;;;;;:25;:31;;;;;;;;41431:32;41353:110;:153;;;;-1:-1:-1;;;;;;41481:25:0;;;;;;:19;:25;;;;;;;;41480:26;41353:153;:194;;;;-1:-1:-1;;;;;;41524:23:0;;;;;;:19;:23;;;;;;;;41523:24;41353:194;41335:326;;;41574:8;:15;;-1:-1:-1;;;;41574:15:0;-1:-1:-1;;;41574:15:0;;;41606:10;:8;:10::i;:::-;41633:8;:16;;-1:-1:-1;;;;41633:16:0;;;41335:326;41689:8;;-1:-1:-1;;;;;41799:25:0;;41673:12;41799:25;;;:19;:25;;;;;;41689:8;-1:-1:-1;;;41689:8:0;;;;;41688:9;;41799:25;;:52;;-1:-1:-1;;;;;;41828:23:0;;;;;;:19;:23;;;;;;;;41799:52;41795:100;;;-1:-1:-1;41878:5:0;41795:100;41907:12;42012:7;42008:969;;;-1:-1:-1;;;;;42064:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42113:1;42097:13;;:17;42064:50;42060:768;;;42142:34;42172:3;42142:25;42153:13;;42142:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42135:41;;42245:13;;42225:16;;42218:4;:23;;;;:::i;:::-;42217:41;;;;:::i;:::-;42195:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42315:13:0;;42301:10;;42294:17;;:4;:17;:::i;:::-;42293:35;;;;:::i;:::-;42277:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42397:13:0;;42377:16;;42370:23;;:4;:23;:::i;:::-;42369:41;;;;:::i;:::-;42347:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42060:768:0;;-1:-1:-1;42060:768:0;;-1:-1:-1;;;;;42472:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42522:1;42507:12;;:16;42472:51;42468:360;;;42551:33;42580:3;42551:24;42562:12;;42551:6;:10;;:24;;;;:::i;:33::-;42544:40;;42652:12;;42633:15;;42626:4;:22;;;;:::i;:::-;42625:39;;;;:::i;:::-;42603:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42720:12:0;;42707:9;;42700:16;;:4;:16;:::i;:::-;42699:33;;;;:::i;:::-;42683:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;42800:12:0;;42781:15;;42774:22;;:4;:22;:::i;:::-;42773:39;;;;:::i;:::-;42751:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42468:360:0;42848:8;;42844:91;;42877:42;42893:4;42907;42914;42877:15;:42::i;:::-;42951:14;42961:4;42951:14;;:::i;:::-;;;42008:969;42989:33;43005:4;43011:2;43015:6;42989:15;:33::i;:::-;38426:4604;;;;38313:4717;;;:::o;2121:191::-;2214:6;;;-1:-1:-1;;;;;2231:17:0;;;-1:-1:-1;;;;;;2231:17:0;;;;;;;2264:40;;2214:6;;;2231:17;2214:6;;2264:40;;2195:16;;2264:40;2184:128;2121:191;:::o;37983:188::-;-1:-1:-1;;;;;38066:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38066:39:0;;;;;;;;;;38123:40;;38066:39;;:31;38123:40;;;37983:188;;:::o;11536:733::-;-1:-1:-1;;;;;11676:20:0;;11668:70;;;;-1:-1:-1;;;11668:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11757:23:0;;11749:71;;;;-1:-1:-1;;;11749:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11917:17:0;;11893:21;11917:17;;;;;;;;;;;11953:23;;;;11945:74;;;;-1:-1:-1;;;11945:74:0;;13848:2:1;11945:74:0;;;13830:21:1;13887:2;13867:18;;;13860:30;13926:34;13906:18;;;13899:62;-1:-1:-1;;;13977:18:1;;;13970:36;14023:19;;11945:74:0;13646:402:1;11945:74:0;-1:-1:-1;;;;;12055:17:0;;;:9;:17;;;;;;;;;;;12075:22;;;12055:42;;12119:20;;;;;;;;:30;;12091:6;;12055:9;12119:30;;12091:6;;12119:30;:::i;:::-;;;;;;;;12184:9;-1:-1:-1;;;;;12167:35:0;12176:6;-1:-1:-1;;;;;12167:35:0;;12195:6;12167:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;12167:35:0;;;;;;;;11657:612;11536:733;;;:::o;44157:1750::-;44240:4;44196:23;7588:18;;;;;;;;;;;44196:50;;44257:25;44353:12;;44319:18;;44285;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;44257:108;-1:-1:-1;44376:12:0;44405:20;;;:46;;-1:-1:-1;44429:22:0;;44405:46;44401:85;;;44468:7;;;44157:1750::o;44401:85::-;44520:20;;44502:15;:38;44498:109;;;44575:20;;44557:38;;44498:109;44668:23;44781:1;44748:17;44713:18;;44695:15;:36;;;;:::i;:::-;44694:71;;;;:::i;:::-;:88;;;;:::i;:::-;44668:114;-1:-1:-1;44793:26:0;44822:36;:15;44668:114;44822:19;:36::i;:::-;44793:65;-1:-1:-1;44899:21:0;44933:36;44793:65;44933:16;:36::i;:::-;44982:18;45003:44;:21;45029:17;45003:25;:44::i;:::-;44982:65;;45060:23;45086:81;45139:17;45086:34;45101:18;;45086:10;:14;;:34;;;;:::i;:81::-;45060:107;;45178:17;45198:51;45231:17;45198:28;45213:12;;45198:10;:14;;:28;;;;:::i;:51::-;45178:71;-1:-1:-1;45262:23:0;45178:71;45288:28;45301:15;45288:10;:28;:::i;:::-;:40;;;;:::i;:::-;45362:1;45341:18;:22;;;45374:18;:22;;;45407:12;:16;;;45458:9;;45450:45;;45262:66;;-1:-1:-1;;;;;;45458:9:0;;45481;;45450:45;45362:1;45450:45;45481:9;45458;45450:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45436:59:0;;-1:-1:-1;;45512:19:0;;;;;:42;;;45553:1;45535:15;:19;45512:42;45508:278;;;45571:46;45584:15;45601;45571:12;:46::i;:::-;45741:18;;45637:137;;;14465:25:1;;;14521:2;14506:18;;14499:34;;;14549:18;;;14542:34;;;;45637:137:0;;;;;;14453:2:1;45637:137:0;;;45508:278;45820:15;;45812:87;;-1:-1:-1;;;;;45820:15:0;;;;45863:21;;45812:87;;;;45863:21;45820:15;45812:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;44157:1750:0:o;19246:98::-;19304:7;19331:5;19335:1;19331;:5;:::i;:::-;19324:12;19246:98;-1:-1:-1;;;19246:98:0:o;19645:::-;19703:7;19730:5;19734:1;19730;:5;:::i;18889:98::-;18947:7;18974:5;18978:1;18974;:5;:::i;43038:589::-;43188:16;;;43202:1;43188:16;;;;;;;;43164:21;;43188:16;;;;;;;;;;-1:-1:-1;43188:16:0;43164:40;;43233:4;43215;43220:1;43215:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43215:23:0;;;-1:-1:-1;;;;;43215:23:0;;;;;43259:15;-1:-1:-1;;;;;43259:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43249:4;43254:1;43249:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43249:32:0;;;-1:-1:-1;;;;;43249:32:0;;;;;43294:62;43311:4;43326:15;43344:11;43294:8;:62::i;:::-;43395:224;;-1:-1:-1;;;43395:224:0;;-1:-1:-1;;;;;43395:15:0;:66;;;;:224;;43476:11;;43502:1;;43546:4;;43573;;43593:15;;43395:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43093:534;43038:589;:::o;43635:514::-;43783:62;43800:4;43815:15;43833:11;43783:8;:62::i;:::-;44092:8;;43888:253;;-1:-1:-1;;;43888:253:0;;43960:4;43888:253;;;16433:34:1;16483:18;;;16476:34;;;44006:1:0;16526:18:1;;;16519:34;;;16569:18;;;16562:34;-1:-1:-1;;;;;44092:8:0;;;16612:19:1;;;16605:44;44115:15:0;16665:19:1;;;16658:35;43888:15:0;:31;;;;;;43927:9;;16367:19:1;;43888:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43635:514;;:::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:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:315;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3092:315;;;;;:::o;3412:316::-;3489:6;3497;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:52;;;3574:1;3571;3564:12;3526:52;-1:-1:-1;;3597:23:1;;;3667:2;3652:18;;3639:32;;-1:-1:-1;3718:2:1;3703:18;;;3690:32;;3412:316;-1:-1:-1;3412:316:1:o;3733:180::-;3789:6;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:26;3897:9;3881:26;:::i;3918:388::-;3986:6;3994;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4102:9;4089:23;4121:31;4146:5;4121:31;:::i;:::-;4171:5;-1:-1:-1;4228:2:1;4213:18;;4200:32;4241:33;4200:32;4241:33;:::i;:::-;4293:7;4283:17;;;3918:388;;;;;:::o;4311:380::-;4390:1;4386:12;;;;4433;;;4454:61;;4508:4;4500:6;4496:17;4486:27;;4454:61;4561:2;4553:6;4550:14;4530:18;4527:38;4524:161;;4607:10;4602:3;4598:20;4595:1;4588:31;4642:4;4639:1;4632:15;4670:4;4667:1;4660:15;4524:161;;4311:380;;;:::o;4696:356::-;4898:2;4880:21;;;4917:18;;;4910:30;4976:34;4971:2;4956:18;;4949:62;5043:2;5028:18;;4696:356::o;5057:127::-;5118:10;5113:3;5109:20;5106:1;5099:31;5149:4;5146:1;5139:15;5173:4;5170:1;5163:15;5189:168;5262:9;;;5293;;5310:15;;;5304:22;;5290:37;5280:71;;5331:18;;:::i;5362:217::-;5402:1;5428;5418:132;;5472:10;5467:3;5463:20;5460:1;5453:31;5507:4;5504:1;5497:15;5535:4;5532:1;5525:15;5418:132;-1:-1:-1;5564:9:1;;5362:217::o;6409:125::-;6474:9;;;6495:10;;;6492:36;;;6508:18;;:::i;10677:401::-;10879:2;10861:21;;;10918:2;10898:18;;;10891:30;10957:34;10952:2;10937:18;;10930:62;-1:-1:-1;;;11023:2:1;11008:18;;11001:35;11068:3;11053:19;;10677:401::o;11083:399::-;11285:2;11267:21;;;11324:2;11304:18;;;11297:30;11363:34;11358:2;11343:18;;11336:62;-1:-1:-1;;;11429:2:1;11414:18;;11407:33;11472:3;11457:19;;11083:399::o;13513:128::-;13580:9;;;13601:11;;;13598:37;;;13615:18;;:::i;14719:127::-;14780:10;14775:3;14771:20;14768:1;14761:31;14811:4;14808:1;14801:15;14835:4;14832:1;14825:15;14851:251;14921:6;14974:2;14962:9;14953:7;14949:23;14945:32;14942:52;;;14990:1;14987;14980:12;14942:52;15022:9;15016:16;15041:31;15066:5;15041:31;:::i;15107:980::-;15369:4;15417:3;15406:9;15402:19;15448:6;15437:9;15430:25;15474:2;15512:6;15507:2;15496:9;15492:18;15485:34;15555:3;15550:2;15539:9;15535:18;15528:31;15579:6;15614;15608:13;15645:6;15637;15630:22;15683:3;15672:9;15668:19;15661:26;;15722:2;15714:6;15710:15;15696:29;;15743:1;15753:195;15767:6;15764:1;15761:13;15753:195;;;15832:13;;-1:-1:-1;;;;;15828:39:1;15816:52;;15923:15;;;;15888:12;;;;15864:1;15782:9;15753:195;;;-1:-1:-1;;;;;;;16004:32:1;;;;15999:2;15984:18;;15977:60;-1:-1:-1;;;16068:3:1;16053:19;16046:35;15965:3;15107:980;-1:-1:-1;;;15107:980:1:o;16704:306::-;16792:6;16800;16808;16861:2;16849:9;16840:7;16836:23;16832:32;16829:52;;;16877:1;16874;16867:12;16829:52;16906:9;16900:16;16890:26;;16956:2;16945:9;16941:18;16935:25;16925:35;;17000:2;16989:9;16985:18;16979:25;16969:35;;16704:306;;;;;:::o
Swarm Source
ipfs://32fe0c5b228fda2a844229b4c0b42cfb80236d3a02ba30f770bbcd35cc481b0e
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.