ERC-20
Overview
Max Total Supply
100,000,000 DCBURN
Holders
27
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
59,142.620741193577056646 DCBURNValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DogeChainBurn
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-29 */ //https://t.me/dogechainburn //By DC Whales For DC Whales. Join the burn. // SPDX-License-Identifier: MIT pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns(address) { return msg.sender; } function _msgData() internal view virtual returns(bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint 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(uint); function balanceOf(address owner) external view returns(uint); function allowance(address owner, address spender) external view returns(uint); function approve(address spender, uint value) external returns(bool); function transfer(address to, uint value) external returns(bool); function transferFrom(address from, address to, uint 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(uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; function MINIMUM_LIQUIDITY() external pure returns(uint); 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(uint); function price1CumulativeLast() external view returns(uint); function kLast() external view returns(uint); function mint(address to) external returns(uint liquidity); function burn(address to) external returns(uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns(address); function feeToSetter() external view returns(address); function getPair(address tokenA, address tokenB) external view returns(address pair); function allPairs(uint) external view returns(address pair); function allPairsLength() external view returns(uint); function createPair(address tokenA, address tokenB) external returns(address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } 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 { using SafeMath for uint256; 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 to 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 { } } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns(uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns(uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns(uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns(address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns(int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns(int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns(int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns(int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns(int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns(uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns(int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns(address); function WETH() external pure returns(address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns(uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns(uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns(uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns(uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns(uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns(uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns(uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns(uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns(uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns(uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns(uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns(uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns(uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns(uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns(uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns(uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns(uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract DogeChainBurn is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; // addresses address private burnWallet; // limits uint256 private maxTransactionBuyAmount; uint256 private maxTransactionSellAmount; uint256 private maxWallet; uint256 private swapTokensAtAmount; // status flags bool private tradingActive = false; bool public swapEnabled = false; bool public swapping; // Blacklist Map mapping(address => bool) private _blacklist; struct Fees { uint256 buyTotalFees; uint256 buyBurnFee; uint256 buyLiquidityFee; uint256 sellTotalFees; uint256 sellBurnFee; uint256 sellLiquidityFee; } Fees public _fees = Fees({ buyTotalFees: 0, buyBurnFee: 0, buyLiquidityFee: 0, sellTotalFees: 0, sellBurnFee: 0, sellLiquidityFee: 0 }); uint256 public tokensForBurn; uint256 public tokensForLiquidity; // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public _isExcludedMaxWalletAmount; // 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 SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("DogeChain Burn", "DCBURN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); automatedMarketMakerPairs[address(uniswapV2Pair)] = true; approve(address(_uniswapV2Router), type(uint256).max); uint256 totalSupply = 1 * 1e8 * 1e18; maxTransactionBuyAmount = (totalSupply * 2) / 100; // 2% Max TX maxTransactionSellAmount = (totalSupply * 2) / 100; // 2% Max TX maxWallet = totalSupply * 2 / 100; // 2% maxWallet swapTokensAtAmount = totalSupply * 1 / 10000; // 0.01% swap wallet _fees.buyBurnFee = 3; _fees.buyLiquidityFee = 1; _fees.buyTotalFees = _fees.buyBurnFee + _fees.buyLiquidityFee; _fees.sellBurnFee = 3; _fees.sellLiquidityFee = 1; _fees.sellTotalFees = _fees.sellBurnFee + _fees.sellLiquidityFee; burnWallet = address(0x34F8e879bae0cAD8fFC639736c5c3223473c100e); // // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromWalletLimit(owner(), true); excludeFromWalletLimit(address(this), true); excludeFromWalletLimit(address(uniswapV2Pair), 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 { } function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns(bool){ swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newMaxBuyAmount, uint256 newMaxSellAmount) external onlyOwner { require(((totalSupply() * newMaxBuyAmount) / 1000) >= (totalSupply() / 5000), "Cannot set maxTransactionAmounts lower than 0.5%"); require(((totalSupply() * newMaxSellAmount) / 1000) >= (totalSupply() / 5000), "Cannot set maxTransactionAmounts lower than 0.5%"); maxTransactionBuyAmount = (totalSupply() * newMaxBuyAmount) / 1000; maxTransactionSellAmount = (totalSupply() * newMaxSellAmount) / 1000; } function updateMaxWalletAmount(uint256 newPercentage) external onlyOwner { require(((totalSupply() * newPercentage) / 1000) >= (totalSupply() / 5000), "Cannot set maxWallet lower than 0.5%"); maxWallet = (totalSupply() * newPercentage) / 1000; } function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _burnFee, uint256 _liquidityFee) external onlyOwner { _fees.buyBurnFee = _burnFee; _fees.buyLiquidityFee = _liquidityFee; _fees.buyTotalFees = _fees.buyBurnFee + _fees.buyLiquidityFee; require(_fees.buyTotalFees <= 5, "Immutable"); } function updateSellFees(uint256 _burnFee, uint256 _liquidityFee) external onlyOwner { _fees.sellBurnFee = _burnFee; _fees.sellLiquidityFee = _liquidityFee; _fees.sellTotalFees = _fees.sellBurnFee + _fees.sellLiquidityFee; require(_fees.sellTotalFees <= 5, "Immutable"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function excludeFromWalletLimit(address account, bool excluded) public onlyOwner { _isExcludedMaxWalletAmount[account] = excluded; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); automatedMarketMakerPairs[pair] = value; } function updateWallets(address newBurnWallet) external onlyOwner{ burnWallet = newBurnWallet; } 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"); require(from != address(0xdEaD), "ERC20: transfer from the dEaD address"); require(to != address(0xdEaD), "ERC20: transfer to the dEaD address"); require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens"); if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && !swapping ) { if (!tradingActive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionBuyAmount, "Buy transfer amount exceeds the maxTransactionAmount."); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionSellAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } if (!_isExcludedMaxWalletAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && automatedMarketMakerPairs[to] && !_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] && _fees.sellTotalFees > 0) { fees = amount.mul(_fees.sellTotalFees).div(100); tokensForLiquidity += fees * _fees.sellLiquidityFee / _fees.sellTotalFees; tokensForBurn += fees * _fees.sellBurnFee / _fees.sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && _fees.buyTotalFees > 0) { fees = amount.mul(_fees.buyTotalFees).div(100); tokensForLiquidity += fees * _fees.buyLiquidityFee / _fees.buyTotalFees; tokensForBurn += fees * _fees.buyBurnFee / _fees.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 address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForBurn ; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForBurn = ethBalance.mul(tokensForBurn).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForBurn; tokensForLiquidity = 0; tokensForBurn = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(burnWallet).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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"_fees","outputs":[{"internalType":"uint256","name":"buyTotalFees","type":"uint256"},{"internalType":"uint256","name":"buyBurnFee","type":"uint256"},{"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellTotalFees","type":"uint256"},{"internalType":"uint256","name":"sellBurnFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxWalletAmount","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromWalletLimit","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"swapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuyAmount","type":"uint256"},{"internalType":"uint256","name":"newMaxSellAmount","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","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"},{"inputs":[{"internalType":"address","name":"newBurnWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600b805461ffff19169055610180604052600060c081905260e0819052610100819052610120819052610140819052610160819052600d819055600e819055600f819055601081905560118190556012553480156200005d57600080fd5b50604080518082018252600e81526d2237b3b2a1b430b4b710213ab93760911b6020808301918252835180850190945260068452652221a12aa92760d11b908401528151919291620000b291600391620008c0565b508051620000c8906004906020840190620008c0565b5050506000620000dd620004b060201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d6200014d816001620004b4565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b1580156200019357600080fd5b505afa158015620001a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ce919062000966565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021757600080fd5b505afa1580156200022c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000252919062000966565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200029b57600080fd5b505af1158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d6919062000966565b6001600160a01b031660a0819052620002f1906001620004b4565b60a0516001600160a01b03166000908152601860205260409020805460ff1916600117905562000324816000196200052e565b506a52b7d2dcc80cd2e4000000606462000340826002620009a7565b6200034c9190620009c9565b60075560646200035e826002620009a7565b6200036a9190620009c9565b60085560646200037c826002620009a7565b620003889190620009c9565b6009556127106200039b826001620009a7565b620003a79190620009c9565b600a556003600e8190556001600f819055620003c391620009ec565b600d556003601181905560016012819055620003df91620009ec565b601055600680546001600160a01b0319167334f8e879bae0cad8ffc639736c5c3223473c100e179055620004276200041f6005546001600160a01b031690565b600162000546565b6200043430600162000546565b620004536200044b6005546001600160a01b031690565b6001620004b4565b62000460306001620004b4565b6200047f620004776005546001600160a01b031690565b6001620005bc565b6200048c306001620005bc565b60a0516200049c906001620005bc565b620004a8338262000632565b505062000a44565b3390565b6005546001600160a01b03163314620005035760405162461bcd60e51b815260206004820181905260248201526000805160206200304483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b60006200053d3384846200072e565b50600192915050565b6005546001600160a01b03163314620005915760405162461bcd60e51b81526020600482018190526024820152600080516020620030448339815191526044820152606401620004fa565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620006075760405162461bcd60e51b81526020600482018190526024820152600080516020620030448339815191526044820152606401620004fa565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b0382166200068a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004fa565b620006a6816002546200085660201b620010c81790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620006d9918390620010c862000856821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620007925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620004fa565b6001600160a01b038216620007f55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620004fa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600080620008658385620009ec565b905083811015620008b95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004fa565b9392505050565b828054620008ce9062000a07565b90600052602060002090601f016020900481019282620008f257600085556200093d565b82601f106200090d57805160ff19168380011785556200093d565b828001600101855582156200093d579182015b828111156200093d57825182559160200191906001019062000920565b506200094b9291506200094f565b5090565b5b808211156200094b576000815560010162000950565b6000602082840312156200097957600080fd5b81516001600160a01b0381168114620008b957600080fd5b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620009c457620009c462000991565b500290565b600082620009e757634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000a025762000a0262000991565b500190565b600181811c9082168062000a1c57607f821691505b6020821081141562000a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516125b062000a946000396000818161043c0152610ce901526000818161030901528181611e0701528181611ecf01528181611f0b01528181611f850152611fe101526125b06000f3fe60806040526004361061021e5760003560e01c806370a0823111610123578063a457c2d7116100ab578063d212a69a1161006f578063d212a69a146106a9578063d257b34f14610701578063dd62ed3e14610721578063e16830a814610767578063f2fde38b1461078757600080fd5b8063a457c2d7146105f9578063a9059cbb14610619578063b62496f514610639578063c024666814610669578063c18bc1951461068957600080fd5b80638da5cb5b116100f25780638da5cb5b14610556578063924de9b71461057457806395d89b411461059457806396880b17146105a95780639a7a23d6146105d957600080fd5b806370a08231146104d6578063715018a61461050c5780637571336a146105215780638a8c523c1461054157600080fd5b80631d777856116101a65780633950935111610175578063395093511461040a57806349bd5a5e1461042a5780634fbee1931461045e57806366ca9b83146104975780636ddd1713146104b757600080fd5b80631d7778561461039857806323b872dd146103ae5780632851a5cf146103ce578063313ce567146103ee57600080fd5b806311a582c3116101ed57806311a582c3146102d75780631694505e146102f75780631732cded1461034357806318160ddd146103635780631a8145bb1461038257600080fd5b806302dbd8f81461022a57806306fdde031461024c578063095ea7b31461027757806310d5de53146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a61024536600461209c565b6107a7565b005b34801561025857600080fd5b50610261610833565b60405161026e91906120be565b60405180910390f35b34801561028357600080fd5b5061029761029236600461212b565b6108c5565b604051901515815260200161026e565b3480156102b357600080fd5b506102976102c2366004612157565b60166020526000908152604090205460ff1681565b3480156102e357600080fd5b5061024a6102f236600461209c565b6108dc565b34801561030357600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026e565b34801561034f57600080fd5b50600b546102979062010000900460ff1681565b34801561036f57600080fd5b506002545b60405190815260200161026e565b34801561038e57600080fd5b5061037460145481565b3480156103a457600080fd5b5061037460135481565b3480156103ba57600080fd5b506102976103c9366004612174565b6109fc565b3480156103da57600080fd5b5061024a6103e9366004612157565b610a65565b3480156103fa57600080fd5b506040516012815260200161026e565b34801561041657600080fd5b5061029761042536600461212b565b610ab1565b34801561043657600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046a57600080fd5b50610297610479366004612157565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104a357600080fd5b5061024a6104b236600461209c565b610ae7565b3480156104c357600080fd5b50600b5461029790610100900460ff1681565b3480156104e257600080fd5b506103746104f1366004612157565b6001600160a01b031660009081526020819052604090205490565b34801561051857600080fd5b5061024a610b66565b34801561052d57600080fd5b5061024a61053c3660046121c5565b610bda565b34801561054d57600080fd5b5061024a610c2f565b34801561056257600080fd5b506005546001600160a01b031661032b565b34801561058057600080fd5b5061024a61058f3660046121fa565b610c6a565b3480156105a057600080fd5b50610261610cae565b3480156105b557600080fd5b506102976105c4366004612157565b60176020526000908152604090205460ff1681565b3480156105e557600080fd5b5061024a6105f43660046121c5565b610cbd565b34801561060557600080fd5b5061029761061436600461212b565b610dba565b34801561062557600080fd5b5061029761063436600461212b565b610e09565b34801561064557600080fd5b50610297610654366004612157565b60186020526000908152604090205460ff1681565b34801561067557600080fd5b5061024a6106843660046121c5565b610e16565b34801561069557600080fd5b5061024a6106a4366004612215565b610e6b565b3480156106b557600080fd5b50600d54600e54600f546010546011546012546106d495949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026e565b34801561070d57600080fd5b5061029761071c366004612215565b610f4d565b34801561072d57600080fd5b5061037461073c36600461222e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077357600080fd5b5061024a6107823660046121c5565b610f88565b34801561079357600080fd5b5061024a6107a2366004612157565b610fdd565b6005546001600160a01b031633146107da5760405162461bcd60e51b81526004016107d190612267565b60405180910390fd5b601182905560128190556107ee81836122b2565b60108190556005101561082f5760405162461bcd60e51b8152602060048201526009602482015268496d6d757461626c6560b81b60448201526064016107d1565b5050565b606060038054610842906122ca565b80601f016020809104026020016040519081016040528092919081815260200182805461086e906122ca565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d233848461112e565b5060015b92915050565b6005546001600160a01b031633146109065760405162461bcd60e51b81526004016107d190612267565b61138861091260025490565b61091c9190612305565b6103e88361092960025490565b6109339190612327565b61093d9190612305565b101561095b5760405162461bcd60e51b81526004016107d190612346565b61138861096760025490565b6109719190612305565b6103e88261097e60025490565b6109889190612327565b6109929190612305565b10156109b05760405162461bcd60e51b81526004016107d190612346565b6103e8826109bd60025490565b6109c79190612327565b6109d19190612305565b6007556103e8816109e160025490565b6109eb9190612327565b6109f59190612305565b6008555050565b6000610a09848484611253565b610a5b8433610a568560405180606001604052806028815260200161252e602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906119c1565b61112e565b5060019392505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016107d190612267565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108d2918590610a5690866110c8565b6005546001600160a01b03163314610b115760405162461bcd60e51b81526004016107d190612267565b600e829055600f819055610b2581836122b2565b600d8190556005101561082f5760405162461bcd60e51b8152602060048201526009602482015268496d6d757461626c6560b81b60448201526064016107d1565b6005546001600160a01b03163314610b905760405162461bcd60e51b81526004016107d190612267565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610c045760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c595760405162461bcd60e51b81526004016107d190612267565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c945760405162461bcd60e51b81526004016107d190612267565b600b80549115156101000261ff0019909216919091179055565b606060048054610842906122ca565b6005546001600160a01b03163314610ce75760405162461bcd60e51b81526004016107d190612267565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610d8f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d1565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b60006108d23384610a5685604051806060016040528060258152602001612556602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906119c1565b60006108d2338484611253565b6005546001600160a01b03163314610e405760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e955760405162461bcd60e51b81526004016107d190612267565b611388610ea160025490565b610eab9190612305565b6103e882610eb860025490565b610ec29190612327565b610ecc9190612305565b1015610f265760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d1565b6103e881610f3360025490565b610f3d9190612327565b610f479190612305565b60095550565b6005546000906001600160a01b03163314610f7a5760405162461bcd60e51b81526004016107d190612267565b50600a81905560015b919050565b6005546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110075760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03811661106c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d1565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110d583856122b2565b9050838110156111275760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107d1565b9392505050565b6001600160a01b0383166111905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d1565b6001600160a01b0382166111f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112795760405162461bcd60e51b81526004016107d190612396565b6001600160a01b03821661129f5760405162461bcd60e51b81526004016107d1906123db565b6001600160a01b03831661dead14156113085760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064456144206164604482015264647265737360d81b60648201526084016107d1565b6001600160a01b03821661dead141561136f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064456144206164647260448201526265737360e81b60648201526084016107d1565b6001600160a01b0382166000908152600c602052604090205460ff161580156113b157506001600160a01b0383166000908152600c602052604090205460ff16155b6114175760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b60648201526084016107d1565b8061142d57611428838360006119fb565b505050565b6005546001600160a01b0384811691161480159061145957506005546001600160a01b03838116911614155b801561146e5750600b5462010000900460ff16155b156116fd57600b5460ff16611501576001600160a01b03831660009081526015602052604090205460ff16806114bc57506001600160a01b03821660009081526015602052604090205460ff165b6115015760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107d1565b6001600160a01b03831660009081526018602052604090205460ff16801561154257506001600160a01b03821660009081526016602052604090205460ff16155b156115bc576007548111156115b75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107d1565b611673565b6001600160a01b03821660009081526018602052604090205460ff1680156115fd57506001600160a01b03831660009081526016602052604090205460ff16155b15611673576008548111156116735760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107d1565b6001600160a01b03821660009081526017602052604090205460ff166116fd576009546001600160a01b0383166000908152602081905260409020546116b990836122b2565b11156116fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d1565b30600090815260208190526040902054600a54811080159081906117285750600b54610100900460ff165b801561173d5750600b5462010000900460ff16155b801561176157506001600160a01b03841660009081526018602052604090205460ff165b801561178657506001600160a01b03851660009081526015602052604090205460ff16155b80156117ab57506001600160a01b03841660009081526015602052604090205460ff16155b156117d657600b805462ff00001916620100001790556117c9611b04565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061182357506001600160a01b03851660009081526015602052604090205460ff165b1561182c575060005b600081156119ad576001600160a01b03861660009081526018602052604090205460ff16801561185d575060105415155b156118e75760105461187d90606490611877908890611cad565b90611d2c565b601054601254919250906118919083612327565b61189b9190612305565b601460008282546118ac91906122b2565b90915550506010546011546118c19083612327565b6118cb9190612305565b601360008282546118dc91906122b2565b9091555061198f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156119105750600d5415155b1561198f57600d5461192a90606490611877908890611cad565b600d54600f549192509061193e9083612327565b6119489190612305565b6014600082825461195991906122b2565b9091555050600d54600e5461196e9083612327565b6119789190612305565b6013600082825461198991906122b2565b90915550505b80156119a0576119a08730836119fb565b6119aa818661241e565b94505b6119b88787876119fb565b50505050505050565b600081848411156119e55760405162461bcd60e51b81526004016107d191906120be565b5060006119f2848661241e565b95945050505050565b6001600160a01b038316611a215760405162461bcd60e51b81526004016107d190612396565b6001600160a01b038216611a475760405162461bcd60e51b81526004016107d1906123db565b611a8481604051806060016040528060268152602001612508602691396001600160a01b03861660009081526020819052604090205491906119c1565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ab390826110c8565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611246565b3060009081526020819052604081205490506000601354601454611b2891906122b2565b90506000821580611b37575081155b15611b4157505050565b600a54611b4f906014612327565b831115611b6757600a54611b64906014612327565b92505b600060028360145486611b7a9190612327565b611b849190612305565b611b8e9190612305565b90506000611b9c8583611d6e565b905047611ba882611db0565b6000611bb44783611d6e565b90506000611bd18761187760135485611cad90919063ffffffff16565b90506000611bdf828461241e565b6000601481905560135590508515801590611bfa5750600081115b15611c4d57611c098682611f7f565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c9a576040519150601f19603f3d011682016040523d82523d6000602084013e611c9f565b606091505b505050505050505050505050565b600082611cbc575060006108d6565b6000611cc88385612327565b905082611cd58583612305565b146111275760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107d1565b600061112783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061206e565b600061112783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119c1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de557611de5612435565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5e57600080fd5b505afa158015611e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e96919061244b565b81600181518110611ea957611ea9612435565b60200260200101906001600160a01b031690816001600160a01b031681525050611ef4307f00000000000000000000000000000000000000000000000000000000000000008461112e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f49908590600090869030904290600401612468565b600060405180830381600087803b158015611f6357600080fd5b505af1158015611f77573d6000803e3d6000fd5b505050505050565b611faa307f00000000000000000000000000000000000000000000000000000000000000008461112e565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561202e57600080fd5b505af1158015612042573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206791906124d9565b5050505050565b6000818361208f5760405162461bcd60e51b81526004016107d191906120be565b5060006119f28486612305565b600080604083850312156120af57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b818111156120fd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461212857600080fd5b50565b6000806040838503121561213e57600080fd5b823561214981612113565b946020939093013593505050565b60006020828403121561216957600080fd5b813561112781612113565b60008060006060848603121561218957600080fd5b833561219481612113565b925060208401356121a481612113565b929592945050506040919091013590565b80358015158114610f8357600080fd5b600080604083850312156121d857600080fd5b82356121e381612113565b91506121f1602084016121b5565b90509250929050565b60006020828403121561220c57600080fd5b611127826121b5565b60006020828403121561222757600080fd5b5035919050565b6000806040838503121561224157600080fd5b823561224c81612113565b9150602083013561225c81612113565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c5576122c561229c565b500190565b600181811c908216806122de57607f821691505b602082108114156122ff57634e487b7160e01b600052602260045260246000fd5b50919050565b60008261232257634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123415761234161229c565b500290565b60208082526030908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526f206c6f776572207468616e20302e352560801b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156124305761243061229c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561245d57600080fd5b815161112781612113565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124b85784516001600160a01b031683529383019391830191600101612493565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156124ee57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d03efa69edbc0f7f6650df2bae73a296783c8bddd9bffa2e6a6257db6289ed2764736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061021e5760003560e01c806370a0823111610123578063a457c2d7116100ab578063d212a69a1161006f578063d212a69a146106a9578063d257b34f14610701578063dd62ed3e14610721578063e16830a814610767578063f2fde38b1461078757600080fd5b8063a457c2d7146105f9578063a9059cbb14610619578063b62496f514610639578063c024666814610669578063c18bc1951461068957600080fd5b80638da5cb5b116100f25780638da5cb5b14610556578063924de9b71461057457806395d89b411461059457806396880b17146105a95780639a7a23d6146105d957600080fd5b806370a08231146104d6578063715018a61461050c5780637571336a146105215780638a8c523c1461054157600080fd5b80631d777856116101a65780633950935111610175578063395093511461040a57806349bd5a5e1461042a5780634fbee1931461045e57806366ca9b83146104975780636ddd1713146104b757600080fd5b80631d7778561461039857806323b872dd146103ae5780632851a5cf146103ce578063313ce567146103ee57600080fd5b806311a582c3116101ed57806311a582c3146102d75780631694505e146102f75780631732cded1461034357806318160ddd146103635780631a8145bb1461038257600080fd5b806302dbd8f81461022a57806306fdde031461024c578063095ea7b31461027757806310d5de53146102a757600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061024a61024536600461209c565b6107a7565b005b34801561025857600080fd5b50610261610833565b60405161026e91906120be565b60405180910390f35b34801561028357600080fd5b5061029761029236600461212b565b6108c5565b604051901515815260200161026e565b3480156102b357600080fd5b506102976102c2366004612157565b60166020526000908152604090205460ff1681565b3480156102e357600080fd5b5061024a6102f236600461209c565b6108dc565b34801561030357600080fd5b5061032b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026e565b34801561034f57600080fd5b50600b546102979062010000900460ff1681565b34801561036f57600080fd5b506002545b60405190815260200161026e565b34801561038e57600080fd5b5061037460145481565b3480156103a457600080fd5b5061037460135481565b3480156103ba57600080fd5b506102976103c9366004612174565b6109fc565b3480156103da57600080fd5b5061024a6103e9366004612157565b610a65565b3480156103fa57600080fd5b506040516012815260200161026e565b34801561041657600080fd5b5061029761042536600461212b565b610ab1565b34801561043657600080fd5b5061032b7f0000000000000000000000008743c3ce3b0f0165d33a84a4b306c0507537599f81565b34801561046a57600080fd5b50610297610479366004612157565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104a357600080fd5b5061024a6104b236600461209c565b610ae7565b3480156104c357600080fd5b50600b5461029790610100900460ff1681565b3480156104e257600080fd5b506103746104f1366004612157565b6001600160a01b031660009081526020819052604090205490565b34801561051857600080fd5b5061024a610b66565b34801561052d57600080fd5b5061024a61053c3660046121c5565b610bda565b34801561054d57600080fd5b5061024a610c2f565b34801561056257600080fd5b506005546001600160a01b031661032b565b34801561058057600080fd5b5061024a61058f3660046121fa565b610c6a565b3480156105a057600080fd5b50610261610cae565b3480156105b557600080fd5b506102976105c4366004612157565b60176020526000908152604090205460ff1681565b3480156105e557600080fd5b5061024a6105f43660046121c5565b610cbd565b34801561060557600080fd5b5061029761061436600461212b565b610dba565b34801561062557600080fd5b5061029761063436600461212b565b610e09565b34801561064557600080fd5b50610297610654366004612157565b60186020526000908152604090205460ff1681565b34801561067557600080fd5b5061024a6106843660046121c5565b610e16565b34801561069557600080fd5b5061024a6106a4366004612215565b610e6b565b3480156106b557600080fd5b50600d54600e54600f546010546011546012546106d495949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026e565b34801561070d57600080fd5b5061029761071c366004612215565b610f4d565b34801561072d57600080fd5b5061037461073c36600461222e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077357600080fd5b5061024a6107823660046121c5565b610f88565b34801561079357600080fd5b5061024a6107a2366004612157565b610fdd565b6005546001600160a01b031633146107da5760405162461bcd60e51b81526004016107d190612267565b60405180910390fd5b601182905560128190556107ee81836122b2565b60108190556005101561082f5760405162461bcd60e51b8152602060048201526009602482015268496d6d757461626c6560b81b60448201526064016107d1565b5050565b606060038054610842906122ca565b80601f016020809104026020016040519081016040528092919081815260200182805461086e906122ca565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d233848461112e565b5060015b92915050565b6005546001600160a01b031633146109065760405162461bcd60e51b81526004016107d190612267565b61138861091260025490565b61091c9190612305565b6103e88361092960025490565b6109339190612327565b61093d9190612305565b101561095b5760405162461bcd60e51b81526004016107d190612346565b61138861096760025490565b6109719190612305565b6103e88261097e60025490565b6109889190612327565b6109929190612305565b10156109b05760405162461bcd60e51b81526004016107d190612346565b6103e8826109bd60025490565b6109c79190612327565b6109d19190612305565b6007556103e8816109e160025490565b6109eb9190612327565b6109f59190612305565b6008555050565b6000610a09848484611253565b610a5b8433610a568560405180606001604052806028815260200161252e602891396001600160a01b038a16600090815260016020908152604080832033845290915290205491906119c1565b61112e565b5060019392505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016107d190612267565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108d2918590610a5690866110c8565b6005546001600160a01b03163314610b115760405162461bcd60e51b81526004016107d190612267565b600e829055600f819055610b2581836122b2565b600d8190556005101561082f5760405162461bcd60e51b8152602060048201526009602482015268496d6d757461626c6560b81b60448201526064016107d1565b6005546001600160a01b03163314610b905760405162461bcd60e51b81526004016107d190612267565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610c045760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c595760405162461bcd60e51b81526004016107d190612267565b600b805461ffff1916610101179055565b6005546001600160a01b03163314610c945760405162461bcd60e51b81526004016107d190612267565b600b80549115156101000261ff0019909216919091179055565b606060048054610842906122ca565b6005546001600160a01b03163314610ce75760405162461bcd60e51b81526004016107d190612267565b7f0000000000000000000000008743c3ce3b0f0165d33a84a4b306c0507537599f6001600160a01b0316826001600160a01b03161415610d8f5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107d1565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b60006108d23384610a5685604051806060016040528060258152602001612556602591393360009081526001602090815260408083206001600160a01b038d16845290915290205491906119c1565b60006108d2338484611253565b6005546001600160a01b03163314610e405760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e955760405162461bcd60e51b81526004016107d190612267565b611388610ea160025490565b610eab9190612305565b6103e882610eb860025490565b610ec29190612327565b610ecc9190612305565b1015610f265760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107d1565b6103e881610f3360025490565b610f3d9190612327565b610f479190612305565b60095550565b6005546000906001600160a01b03163314610f7a5760405162461bcd60e51b81526004016107d190612267565b50600a81905560015b919050565b6005546001600160a01b03163314610fb25760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110075760405162461bcd60e51b81526004016107d190612267565b6001600160a01b03811661106c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d1565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806110d583856122b2565b9050838110156111275760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107d1565b9392505050565b6001600160a01b0383166111905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d1565b6001600160a01b0382166111f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166112795760405162461bcd60e51b81526004016107d190612396565b6001600160a01b03821661129f5760405162461bcd60e51b81526004016107d1906123db565b6001600160a01b03831661dead14156113085760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d207468652064456144206164604482015264647265737360d81b60648201526084016107d1565b6001600160a01b03821661dead141561136f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f207468652064456144206164647260448201526265737360e81b60648201526084016107d1565b6001600160a01b0382166000908152600c602052604090205460ff161580156113b157506001600160a01b0383166000908152600c602052604090205460ff16155b6114175760405162461bcd60e51b815260206004820152603160248201527f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460448201527072616e73666572696e6720746f6b656e7360781b60648201526084016107d1565b8061142d57611428838360006119fb565b505050565b6005546001600160a01b0384811691161480159061145957506005546001600160a01b03838116911614155b801561146e5750600b5462010000900460ff16155b156116fd57600b5460ff16611501576001600160a01b03831660009081526015602052604090205460ff16806114bc57506001600160a01b03821660009081526015602052604090205460ff165b6115015760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107d1565b6001600160a01b03831660009081526018602052604090205460ff16801561154257506001600160a01b03821660009081526016602052604090205460ff16155b156115bc576007548111156115b75760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107d1565b611673565b6001600160a01b03821660009081526018602052604090205460ff1680156115fd57506001600160a01b03831660009081526016602052604090205460ff16155b15611673576008548111156116735760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016107d1565b6001600160a01b03821660009081526017602052604090205460ff166116fd576009546001600160a01b0383166000908152602081905260409020546116b990836122b2565b11156116fd5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107d1565b30600090815260208190526040902054600a54811080159081906117285750600b54610100900460ff165b801561173d5750600b5462010000900460ff16155b801561176157506001600160a01b03841660009081526018602052604090205460ff165b801561178657506001600160a01b03851660009081526015602052604090205460ff16155b80156117ab57506001600160a01b03841660009081526015602052604090205460ff16155b156117d657600b805462ff00001916620100001790556117c9611b04565b600b805462ff0000191690555b600b546001600160a01b03861660009081526015602052604090205460ff6201000090920482161591168061182357506001600160a01b03851660009081526015602052604090205460ff165b1561182c575060005b600081156119ad576001600160a01b03861660009081526018602052604090205460ff16801561185d575060105415155b156118e75760105461187d90606490611877908890611cad565b90611d2c565b601054601254919250906118919083612327565b61189b9190612305565b601460008282546118ac91906122b2565b90915550506010546011546118c19083612327565b6118cb9190612305565b601360008282546118dc91906122b2565b9091555061198f9050565b6001600160a01b03871660009081526018602052604090205460ff1680156119105750600d5415155b1561198f57600d5461192a90606490611877908890611cad565b600d54600f549192509061193e9083612327565b6119489190612305565b6014600082825461195991906122b2565b9091555050600d54600e5461196e9083612327565b6119789190612305565b6013600082825461198991906122b2565b90915550505b80156119a0576119a08730836119fb565b6119aa818661241e565b94505b6119b88787876119fb565b50505050505050565b600081848411156119e55760405162461bcd60e51b81526004016107d191906120be565b5060006119f2848661241e565b95945050505050565b6001600160a01b038316611a215760405162461bcd60e51b81526004016107d190612396565b6001600160a01b038216611a475760405162461bcd60e51b81526004016107d1906123db565b611a8481604051806060016040528060268152602001612508602691396001600160a01b03861660009081526020819052604090205491906119c1565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ab390826110c8565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611246565b3060009081526020819052604081205490506000601354601454611b2891906122b2565b90506000821580611b37575081155b15611b4157505050565b600a54611b4f906014612327565b831115611b6757600a54611b64906014612327565b92505b600060028360145486611b7a9190612327565b611b849190612305565b611b8e9190612305565b90506000611b9c8583611d6e565b905047611ba882611db0565b6000611bb44783611d6e565b90506000611bd18761187760135485611cad90919063ffffffff16565b90506000611bdf828461241e565b6000601481905560135590508515801590611bfa5750600081115b15611c4d57611c098682611f7f565b601454604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c9a576040519150601f19603f3d011682016040523d82523d6000602084013e611c9f565b606091505b505050505050505050505050565b600082611cbc575060006108d6565b6000611cc88385612327565b905082611cd58583612305565b146111275760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107d1565b600061112783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061206e565b600061112783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506119c1565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611de557611de5612435565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e5e57600080fd5b505afa158015611e72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e96919061244b565b81600181518110611ea957611ea9612435565b60200260200101906001600160a01b031690816001600160a01b031681525050611ef4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461112e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f49908590600090869030904290600401612468565b600060405180830381600087803b158015611f6357600080fd5b505af1158015611f77573d6000803e3d6000fd5b505050505050565b611faa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461112e565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561202e57600080fd5b505af1158015612042573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061206791906124d9565b5050505050565b6000818361208f5760405162461bcd60e51b81526004016107d191906120be565b5060006119f28486612305565b600080604083850312156120af57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b818111156120fd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461212857600080fd5b50565b6000806040838503121561213e57600080fd5b823561214981612113565b946020939093013593505050565b60006020828403121561216957600080fd5b813561112781612113565b60008060006060848603121561218957600080fd5b833561219481612113565b925060208401356121a481612113565b929592945050506040919091013590565b80358015158114610f8357600080fd5b600080604083850312156121d857600080fd5b82356121e381612113565b91506121f1602084016121b5565b90509250929050565b60006020828403121561220c57600080fd5b611127826121b5565b60006020828403121561222757600080fd5b5035919050565b6000806040838503121561224157600080fd5b823561224c81612113565b9150602083013561225c81612113565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156122c5576122c561229c565b500190565b600181811c908216806122de57607f821691505b602082108114156122ff57634e487b7160e01b600052602260045260246000fd5b50919050565b60008261232257634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156123415761234161229c565b500290565b60208082526030908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e747360408201526f206c6f776572207468616e20302e352560801b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156124305761243061229c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561245d57600080fd5b815161112781612113565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124b85784516001600160a01b031683529383019391830191600101612493565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156124ee57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d03efa69edbc0f7f6650df2bae73a296783c8bddd9bffa2e6a6257db6289ed2764736f6c63430008090033
Deployed Bytecode Sourcemap
25564:12435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30869:312;;;;;;;;;;-1:-1:-1;30869:312:0;;;;;:::i;:::-;;:::i;:::-;;6771:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8931:168;;;;;;;;;;-1:-1:-1;8931:168:0;;;;;:::i;:::-;;:::i;:::-;;;1490:14:1;;1483:22;1465:41;;1453:2;1438:18;8931:168:0;1325:187:1;26835:63:0;;;;;;;;;;-1:-1:-1;26835:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29615:543;;;;;;;;;;-1:-1:-1;29615:543:0;;;;;:::i;:::-;;:::i;25647:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1960:32:1;;;1942:51;;1930:2;1915:18;25647:51:0;1769:230:1;26097:20:0;;;;;;;;;;-1:-1:-1;26097:20:0;;;;;;;;;;;7888:107;;;;;;;;;;-1:-1:-1;7975:12:0;;7888:107;;;2150:25:1;;;2138:2;2123:18;7888:107:0;2004:177:1;26679:33:0;;;;;;;;;;;;;;;;26644:28;;;;;;;;;;;;;;;;9581:354;;;;;;;;;;-1:-1:-1;9581:354:0;;;;;:::i;:::-;;:::i;31889:109::-;;;;;;;;;;-1:-1:-1;31889:109:0;;;;;:::i;:::-;;:::i;7731:92::-;;;;;;;;;;-1:-1:-1;7731:92:0;;7813:2;2789:36:1;;2777:2;2762:18;7731:92:0;2647:184:1;10344:217:0;;;;;;;;;;-1:-1:-1;10344:217:0;;;;;:::i;:::-;;:::i;25705:38::-;;;;;;;;;;;;;;;32006:125;;;;;;;;;;-1:-1:-1;32006:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;32095:28:0;32071:4;32095:28;;;:19;:28;;;;;;;;;32006:125;30556:305;;;;;;;;;;-1:-1:-1;30556:305:0;;;;;:::i;:::-;;:::i;26059:31::-;;;;;;;;;;-1:-1:-1;26059:31:0;;;;;;;;;;;8058:126;;;;;;;;;;-1:-1:-1;8058:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;8158:18:0;8131:7;8158:18;;;;;;;;;;;;8058:126;18735:148;;;;;;;;;;;;;:::i;31485:144::-;;;;;;;;;;-1:-1:-1;31485:144:0;;;;;:::i;:::-;;:::i;29329:112::-;;;;;;;;;;;;;:::i;18522:78::-;;;;;;;;;;-1:-1:-1;18586:6:0;;-1:-1:-1;;;;;18586:6:0;18522:78;;30447:101;;;;;;;;;;-1:-1:-1;30447:101:0;;;;;:::i;:::-;;:::i;6989:103::-;;;;;;;;;;;;;:::i;26905:58::-;;;;;;;;;;-1:-1:-1;26905:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31639:240;;;;;;;;;;-1:-1:-1;31639:240:0;;;;;:::i;:::-;;:::i;11064:268::-;;;;;;;;;;-1:-1:-1;11064:268:0;;;;;:::i;:::-;;:::i;8397:174::-;;;;;;;;;;-1:-1:-1;8397:174:0;;;;;:::i;:::-;;:::i;27121:57::-;;;;;;;;;;-1:-1:-1;27121:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31195:132;;;;;;;;;;-1:-1:-1;31195:132:0;;;;;:::i;:::-;;:::i;30168:268::-;;;;;;;;;;-1:-1:-1;30168:268:0;;;;;:::i;:::-;;:::i;26427:196::-;;;;;;;;;;-1:-1:-1;26427:196:0;;;;;;;;;;;;;;;;;;;;;;;;;4186:25:1;;;4242:2;4227:18;;4220:34;;;;4270:18;;;4263:34;;;;4328:2;4313:18;;4306:34;4371:3;4356:19;;4349:35;4415:3;4400:19;;4393:35;4173:3;4158:19;26427:196:0;3899:535:1;29449:156:0;;;;;;;;;;-1:-1:-1;29449:156:0;;;;;:::i;:::-;;:::i;8634:150::-;;;;;;;;;;-1:-1:-1;8634:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;8749:18:0;;;8722:7;8749:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8634:150;31333:146;;;;;;;;;;-1:-1:-1;31333:146:0;;;;;:::i;:::-;;:::i;18891:244::-;;;;;;;;;;-1:-1:-1;18891:244:0;;;;;:::i;:::-;;:::i;30869:312::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;;;;;;;;;30964:17;:28;;;31003:22;:38;;;31074:42:::1;31028:13:::0;30984:8;31074:42:::1;:::i;:::-;31052:19:::0;:64;;;31158:1:::1;-1:-1:-1::0;31135:24:0::1;31127:46;;;::::0;-1:-1:-1;;;31127:46:0;;5660:2:1;31127:46:0::1;::::0;::::1;5642:21:1::0;5699:1;5679:18;;;5672:29;-1:-1:-1;;;5717:18:1;;;5710:39;5766:18;;31127:46:0::1;5458:332:1::0;31127:46:0::1;30869:312:::0;;:::o;6771:99::-;6824:13;6857:5;6850:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6771:99;:::o;8931:168::-;9013:4;9030:39;252:10;9053:7;9062:6;9030:8;:39::i;:::-;-1:-1:-1;9087:4:0;8931:168;;;;;:::o;29615:543::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;29795:4:::1;29779:13;7975:12:::0;;;7888:107;29779:13:::1;:20;;;;:::i;:::-;29769:4;29750:15;29734:13;7975:12:::0;;;7888:107;29734:13:::1;:31;;;;:::i;:::-;29733:40;;;;:::i;:::-;29732:68;;29724:129;;;;-1:-1:-1::0;;;29724:129:0::1;;;;;;;:::i;:::-;29936:4;29920:13;7975:12:::0;;;7888:107;29920:13:::1;:20;;;;:::i;:::-;29910:4;29890:16;29874:13;7975:12:::0;;;7888:107;29874:13:::1;:32;;;;:::i;:::-;29873:41;;;;:::i;:::-;29872:69;;29864:130;;;;-1:-1:-1::0;;;29864:130:0::1;;;;;;;:::i;:::-;30067:4;30048:15;30032:13;7975:12:::0;;;7888:107;30032:13:::1;:31;;;;:::i;:::-;30031:40;;;;:::i;:::-;30005:23;:66:::0;30146:4:::1;30126:16:::0;30110:13:::1;7975:12:::0;;;7888:107;30110:13:::1;:32;;;;:::i;:::-;30109:41;;;;:::i;:::-;30082:24;:68:::0;-1:-1:-1;;29615:543:0:o;9581:354::-;9720:4;9737:36;9747:6;9755:9;9766:6;9737:9;:36::i;:::-;9784:121;9793:6;252:10;9815:89;9853:6;9815:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9815:19:0;;;;;;:11;:19;;;;;;;;252:10;9815:33;;;;;;;;;;:37;:89::i;:::-;9784:8;:121::i;:::-;-1:-1:-1;9923:4:0;9581:354;;;;;:::o;31889:109::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;31964:10:::1;:26:::0;;-1:-1:-1;;;;;;31964:26:0::1;-1:-1:-1::0;;;;;31964:26:0;;;::::1;::::0;;;::::1;::::0;;31889:109::o;10344:217::-;252:10;10431:4;10480:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10480:34:0;;;;;;;;;;10431:4;;10448:83;;10471:7;;10480:50;;10519:10;10480:38;:50::i;30556:305::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;30650:16;:27;;;30688:21;:37;;;30757:40:::1;30712:13:::0;30669:8;30757:40:::1;:::i;:::-;30736:5;:61:::0;;;30838:1:::1;-1:-1:-1::0;30816:23:0::1;30808:45;;;::::0;-1:-1:-1;;;30808:45:0;;5660:2:1;30808:45:0::1;::::0;::::1;5642:21:1::0;5699:1;5679:18;;;5672:29;-1:-1:-1;;;5717:18:1;;;5710:39;5766:18;;30808:45:0::1;5458:332:1::0;18735:148:0;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;18826:6:::1;::::0;18805:40:::1;::::0;18842:1:::1;::::0;-1:-1:-1;;;;;18826:6:0::1;::::0;18805:40:::1;::::0;18842:1;;18805:40:::1;18856:6;:19:::0;;-1:-1:-1;;;;;;18856:19:0::1;::::0;;18735:148::o;31485:144::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31575:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;31575:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31485:144::o;29329:112::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;29384:13:::1;:20:::0;;-1:-1:-1;;29415:18:0;;;;;29329:112::o;30447:101::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;30519:11:::1;:21:::0;;;::::1;;;;-1:-1:-1::0;;30519:21:0;;::::1;::::0;;;::::1;::::0;;30447:101::o;6989:103::-;7044:13;7077:7;7070:14;;;;;:::i;31639:240::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;31746:13:::1;-1:-1:-1::0;;;;;31738:21:0::1;:4;-1:-1:-1::0;;;;;31738:21:0::1;;;31730:91;;;::::0;-1:-1:-1;;;31730:91:0;;7194:2:1;31730:91:0::1;::::0;::::1;7176:21:1::0;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;7343:27;7323:18;;;7316:55;7388:19;;31730:91:0::1;6992:421:1::0;31730:91:0::1;-1:-1:-1::0;;;;;31832:31:0;;;::::1;;::::0;;;:25:::1;:31;::::0;;;;:39;;-1:-1:-1;;31832:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31639:240::o;11064:268::-;11156:4;11173:129;252:10;11196:7;11205:96;11244:15;11205:96;;;;;;;;;;;;;;;;;252:10;11205:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11205:34:0;;;;;;;;;;;;:38;:96::i;8397:174::-;8482:4;8499:42;252:10;8523:9;8534:6;8499:9;:42::i;31195:132::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31280:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;31280:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31195:132::o;30168:268::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;30321:4:::1;30305:13;7975:12:::0;;;7888:107;30305:13:::1;:20;;;;:::i;:::-;30295:4;30278:13;30262;7975:12:::0;;;7888:107;30262:13:::1;:29;;;;:::i;:::-;30261:38;;;;:::i;:::-;30260:66;;30252:115;;;::::0;-1:-1:-1;;;30252:115:0;;7620:2:1;30252:115:0::1;::::0;::::1;7602:21:1::0;7659:2;7639:18;;;7632:30;7698:34;7678:18;;;7671:62;-1:-1:-1;;;7749:18:1;;;7742:34;7793:19;;30252:115:0::1;7418:400:1::0;30252:115:0::1;30424:4;30407:13;30391;7975:12:::0;;;7888:107;30391:13:::1;:29;;;;:::i;:::-;30390:38;;;;:::i;:::-;30378:9;:50:::0;-1:-1:-1;30168:268:0:o;29449:156::-;18648:6;;29529:4;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;-1:-1:-1;29545:18:0::1;:30:::0;;;29593:4:::1;18718:1;29449:156:::0;;;:::o;31333:146::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31425:35:0;;;::::1;;::::0;;;:26:::1;:35;::::0;;;;:46;;-1:-1:-1;;31425:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31333:146::o;18891:244::-;18648:6;;-1:-1:-1;;;;;18648:6:0;252:10;18648:22;18640:67;;;;-1:-1:-1;;;18640:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18980:22:0;::::1;18972:73;;;::::0;-1:-1:-1;;;18972:73:0;;8025:2:1;18972:73:0::1;::::0;::::1;8007:21:1::0;8064:2;8044:18;;;8037:30;8103:34;8083:18;;;8076:62;-1:-1:-1;;;8154:18:1;;;8147:36;8200:19;;18972:73:0::1;7823:402:1::0;18972:73:0::1;19082:6;::::0;19061:38:::1;::::0;-1:-1:-1;;;;;19061:38:0;;::::1;::::0;19082:6:::1;::::0;19061:38:::1;::::0;19082:6:::1;::::0;19061:38:::1;19110:6;:17:::0;;-1:-1:-1;;;;;;19110:17:0::1;-1:-1:-1::0;;;;;19110:17:0;;;::::1;::::0;;;::::1;::::0;;18891:244::o;15629:180::-;15686:7;;15718:5;15722:1;15718;:5;:::i;:::-;15706:17;;15747:1;15742;:6;;15734:46;;;;-1:-1:-1;;;15734:46:0;;8432:2:1;15734:46:0;;;8414:21:1;8471:2;8451:18;;;8444:30;8510:29;8490:18;;;8483:57;8557:18;;15734:46:0;8230:351:1;15734:46:0;15800:1;15629:180;-1:-1:-1;;;15629:180:0:o;14249:380::-;-1:-1:-1;;;;;14385:19:0;;14377:68;;;;-1:-1:-1;;;14377:68:0;;8788:2:1;14377:68:0;;;8770:21:1;8827:2;8807:18;;;8800:30;8866:34;8846:18;;;8839:62;-1:-1:-1;;;8917:18:1;;;8910:34;8961:19;;14377:68:0;8586:400:1;14377:68:0;-1:-1:-1;;;;;14464:21:0;;14456:68;;;;-1:-1:-1;;;14456:68:0;;9193:2:1;14456:68:0;;;9175:21:1;9232:2;9212:18;;;9205:30;9271:34;9251:18;;;9244:62;-1:-1:-1;;;9322:18:1;;;9315:32;9364:19;;14456:68:0;8991:398:1;14456:68:0;-1:-1:-1;;;;;14537:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14589:32;;2150:25:1;;;14589:32:0;;2123:18:1;14589:32:0;;;;;;;;14249:380;;;:::o;32139:3379::-;-1:-1:-1;;;;;32271:18:0;;32263:68;;;;-1:-1:-1;;;32263:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32350:16:0;;32342:64;;;;-1:-1:-1;;;32342:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32425:23:0;;32441:6;32425:23;;32417:73;;;;-1:-1:-1;;;32417:73:0;;10406:2:1;32417:73:0;;;10388:21:1;10445:2;10425:18;;;10418:30;10484:34;10464:18;;;10457:62;-1:-1:-1;;;10535:18:1;;;10528:35;10580:19;;32417:73:0;10204:401:1;32417:73:0;-1:-1:-1;;;;;32509:21:0;;32523:6;32509:21;;32501:69;;;;-1:-1:-1;;;32501:69:0;;10812:2:1;32501:69:0;;;10794:21:1;10851:2;10831:18;;;10824:30;10890:34;10870:18;;;10863:62;-1:-1:-1;;;10941:18:1;;;10934:33;10984:19;;32501:69:0;10610:399:1;32501:69:0;-1:-1:-1;;;;;32590:14:0;;;;;;:10;:14;;;;;;;;32589:15;:36;;;;-1:-1:-1;;;;;;32609:16:0;;;;;;:10;:16;;;;;;;;32608:17;32589:36;32581:98;;;;-1:-1:-1;;;32581:98:0;;11216:2:1;32581:98:0;;;11198:21:1;11255:2;11235:18;;;11228:30;11294:34;11274:18;;;11267:62;-1:-1:-1;;;11345:18:1;;;11338:47;11402:19;;32581:98:0;11014:413:1;32581:98:0;32704:11;32700:93;;32732:28;32748:4;32754:2;32758:1;32732:15;:28::i;:::-;32139:3379;;;:::o;32700:93::-;18586:6;;-1:-1:-1;;;;;32823:15:0;;;18586:6;;32823:15;;;;:45;;-1:-1:-1;18586:6:0;;-1:-1:-1;;;;;32855:13:0;;;18586:6;;32855:13;;32823:45;:71;;;;-1:-1:-1;32886:8:0;;;;;;;32885:9;32823:71;32805:932;;;32926:13;;;;32921:142;;-1:-1:-1;;;;;32968:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32997:23:0;;;;;;:19;:23;;;;;;;;32968:52;32960:87;;;;-1:-1:-1;;;32960:87:0;;11634:2:1;32960:87:0;;;11616:21:1;11673:2;11653:18;;;11646:30;-1:-1:-1;;;11692:18:1;;;11685:52;11754:18;;32960:87:0;11432:346:1;32960:87:0;-1:-1:-1;;;;;33107:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;33143:35:0;;;;;;:31;:35;;;;;;;;33142:36;33107:71;33103:470;;;33217:23;;33207:6;:33;;33199:99;;;;-1:-1:-1;;;33199:99:0;;11985:2:1;33199:99:0;;;11967:21:1;12024:2;12004:18;;;11997:30;12063:34;12043:18;;;12036:62;-1:-1:-1;;;12114:18:1;;;12107:51;12175:19;;33199:99:0;11783:417:1;33199:99:0;33103:470;;;-1:-1:-1;;;;;33364:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;33398:37:0;;;;;;:31;:37;;;;;;;;33397:38;33364:71;33360:213;;;33474:24;;33464:6;:34;;33456:101;;;;-1:-1:-1;;;33456:101:0;;12407:2:1;33456:101:0;;;12389:21:1;12446:2;12426:18;;;12419:30;12485:34;12465:18;;;12458:62;-1:-1:-1;;;12536:18:1;;;12529:52;12598:19;;33456:101:0;12205:418:1;33456:101:0;-1:-1:-1;;;;;33592:30:0;;;;;;:26;:30;;;;;;;;33587:139;;33677:9;;-1:-1:-1;;;;;8158:18:0;;8131:7;8158:18;;;;;;;;;;;33651:22;;:6;:22;:::i;:::-;:35;;33643:67;;;;-1:-1:-1;;;33643:67:0;;12830:2:1;33643:67:0;;;12812:21:1;12869:2;12849:18;;;12842:30;-1:-1:-1;;;12888:18:1;;;12881:49;12947:18;;33643:67:0;12628:343:1;33643:67:0;33812:4;33763:28;8158:18;;;;;;;;;;;33871;;33847:42;;;;;;;33920:35;;-1:-1:-1;33944:11:0;;;;;;;33920:35;:61;;;;-1:-1:-1;33973:8:0;;;;;;;33972:9;33920:61;:107;;;;-1:-1:-1;;;;;;33998:29:0;;;;;;:25;:29;;;;;;;;33920:107;:150;;;;-1:-1:-1;;;;;;34045:25:0;;;;;;:19;:25;;;;;;;;34044:26;33920:150;:191;;;;-1:-1:-1;;;;;;34088:23:0;;;;;;:19;:23;;;;;;;;34087:24;33920:191;33902:323;;;34138:8;:15;;-1:-1:-1;;34138:15:0;;;;;34170:10;:8;:10::i;:::-;34197:8;:16;;-1:-1:-1;;34197:16:0;;;33902:323;34254:8;;-1:-1:-1;;;;;34364:25:0;;34238:12;34364:25;;;:19;:25;;;;;;34254:8;;;;;;;34253:9;;34364:25;;:52;;-1:-1:-1;;;;;;34393:23:0;;;;;;:19;:23;;;;;;;;34364:52;34360:100;;;-1:-1:-1;34443:5:0;34360:100;34473:12;34578:7;34574:891;;;-1:-1:-1;;;;;34644:29:0;;;;;;:25;:29;;;;;;;;:56;;;;-1:-1:-1;34677:19:0;;:23;;34644:56;34640:674;;;34739:19;;34728:40;;34764:3;;34728:31;;:6;;:10;:31::i;:::-;:35;;:40::i;:::-;34841:19;;34816:22;;34721:47;;-1:-1:-1;34841:19:0;34809:29;;34721:47;34809:29;:::i;:::-;:51;;;;:::i;:::-;34787:18;;:73;;;;;;;:::i;:::-;;;;-1:-1:-1;;34923:19:0;;34903:17;;34896:24;;:4;:24;:::i;:::-;:46;;;;:::i;:::-;34879:13;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;34640:674:0;;-1:-1:-1;34640:674:0;;-1:-1:-1;;;;;35004:31:0;;;;;;:25;:31;;;;;;;;:57;;;;-1:-1:-1;35039:5:0;:18;:22;;35004:57;35000:314;;;35100:5;:18;35089:39;;35124:3;;35089:30;;:6;;:10;:30::i;:39::-;35200:5;:18;35176:21;;35082:46;;-1:-1:-1;35200:18:0;35169:28;;35082:46;35169:28;:::i;:::-;:49;;;;:::i;:::-;35147:18;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;35280:5:0;:18;35261:16;;35254:23;;:4;:23;:::i;:::-;:44;;;;:::i;:::-;35237:13;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;35000:314:0;35334:8;;35330:91;;35363:42;35379:4;35393;35400;35363:15;:42::i;:::-;35437:14;35447:4;35437:14;;:::i;:::-;;;34574:891;35477:33;35493:4;35499:2;35503:6;35477:15;:33::i;:::-;32252:3266;;;;32139:3379;;;:::o;16530:191::-;16615:7;16651:12;16643:6;;;;16635:29;;;;-1:-1:-1;;;16635:29:0;;;;;;;;:::i;:::-;-1:-1:-1;16675:9:0;16687:5;16691:1;16687;:5;:::i;:::-;16675:17;16530:191;-1:-1:-1;;;;;16530:191:0:o;11822:573::-;-1:-1:-1;;;;;11962:20:0;;11954:70;;;;-1:-1:-1;;;11954:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12043:23:0;;12035:71;;;;-1:-1:-1;;;12035:71:0;;;;;;;:::i;:::-;12199;12221:6;12199:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12199:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;12179:17:0;;;:9;:17;;;;;;;;;;;:91;;;;12304:20;;;;;;;:32;;12329:6;12304:24;:32::i;:::-;-1:-1:-1;;;;;12281:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12352:35;2150:25:1;;;12281:20:0;;12352:35;;;;;;2123:18:1;12352:35:0;2004:177:1;36657:1337:0;36740:4;36696:23;8158:18;;;;;;;;;;;36696:50;;36757:25;36806:13;;36785:18;;:34;;;;:::i;:::-;36757:62;-1:-1:-1;36831:12:0;36860:20;;;:46;;-1:-1:-1;36884:22:0;;36860:46;36856:63;;;36910:7;;;36657:1337::o;36856:63::-;36953:18;;:23;;36974:2;36953:23;:::i;:::-;36935:15;:41;36931:115;;;37011:18;;:23;;37032:2;37011:23;:::i;:::-;36993:41;;36931:115;37107:23;37192:1;37172:17;37151:18;;37133:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37107:86;-1:-1:-1;37204:26:0;37233:36;:15;37107:86;37233:19;:36::i;:::-;37204:65;-1:-1:-1;37311:21:0;37345:36;37204:65;37345:16;:36::i;:::-;37396:18;37417:44;:21;37443:17;37417:25;:44::i;:::-;37396:65;;37475:18;37496:52;37530:17;37496:29;37511:13;;37496:10;:14;;:29;;;;:::i;:52::-;37475:73;-1:-1:-1;37559:23:0;37585;37475:73;37585:10;:23;:::i;:::-;37644:1;37623:18;:22;;;37656:13;:17;37559:49;-1:-1:-1;37692:19:0;;;;;:42;;;37733:1;37715:15;:19;37692:42;37688:212;;;37751:46;37764:15;37781;37751:12;:46::i;:::-;37869:18;;37817:71;;;13308:25:1;;;13364:2;13349:18;;13342:34;;;13392:18;;;13385:34;;;;37817:71:0;;;;;;13296:2:1;37817:71:0;;;37688:212;37933:10;;37925:61;;-1:-1:-1;;;;;37933:10:0;;;;37958:21;;37925:61;;;;37958:21;37933:10;37925:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;36657:1337:0:o;16980:471::-;17037:7;17282:6;17278:47;;-1:-1:-1;17312:1:0;17305:8;;17278:47;17338:9;17350:5;17354:1;17350;:5;:::i;:::-;17338:17;-1:-1:-1;17383:1:0;17374:5;17378:1;17338:17;17374:5;:::i;:::-;:10;17366:56;;;;-1:-1:-1;;;17366:56:0;;13842:2:1;17366:56:0;;;13824:21:1;13881:2;13861:18;;;13854:30;13920:34;13900:18;;;13893:62;-1:-1:-1;;;13971:18:1;;;13964:31;14012:19;;17366:56:0;13640:397:1;17461:131:0;17518:7;17545:39;17549:1;17552;17545:39;;;;;;;;;;;;;;;;;:3;:39::i;16092:135::-;16149:7;16176:43;16180:1;16183;16176:43;;;;;;;;;;;;;;;;;:3;:43::i;35526:593::-;35678:16;;;35692:1;35678:16;;;;;;;;35654:21;;35678:16;;;;;;;;;;-1:-1:-1;35678:16:0;35654:40;;35723:4;35705;35710:1;35705:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35705:23:0;;;-1:-1:-1;;;;;35705:23:0;;;;;35749:15;-1:-1:-1;;;;;35749:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35739:4;35744:1;35739:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;35739:32:0;;;-1:-1:-1;;;;;35739:32:0;;;;;35784:62;35801:4;35816:15;35834:11;35784:8;:62::i;:::-;35885:224;;-1:-1:-1;;;35885:224:0;;-1:-1:-1;;;;;35885:15:0;:66;;;;:224;;35966:11;;35992:1;;36036:4;;36063;;36083:15;;35885:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35581:538;35526:593;:::o;36127:522::-;36275:62;36292:4;36307:15;36325:11;36275:8;:62::i;:::-;36380:261;;-1:-1:-1;;;36380:261:0;;36455:4;36380:261;;;15888:34:1;;;15938:18;;;15931:34;;;36501:1:0;15981:18:1;;;15974:34;;;16024:18;;;16017:34;16067:19;;;16060:44;36615:15:0;16120:19:1;;;16113:35;36380:15:0;-1:-1:-1;;;;;36380:31:0;;;;36420:9;;15822:19:1;;36380:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36127:522;;:::o;17603:277::-;17688:7;17723:12;17716:5;17708:28;;;;-1:-1:-1;;;17708:28:0;;;;;;;;:::i;:::-;-1:-1:-1;17747:9:0;17759:5;17763:1;17759;:5;:::i;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:131::-;-1:-1:-1;;;;;944:31:1;;934:42;;924:70;;990:1;987;980:12;924:70;869:131;:::o;1005:315::-;1073:6;1081;1134:2;1122:9;1113:7;1109:23;1105:32;1102:52;;;1150:1;1147;1140:12;1102:52;1189:9;1176:23;1208:31;1233:5;1208:31;:::i;:::-;1258:5;1310:2;1295:18;;;;1282:32;;-1:-1:-1;;;1005:315:1:o;1517:247::-;1576:6;1629:2;1617:9;1608:7;1604:23;1600:32;1597:52;;;1645:1;1642;1635:12;1597:52;1684:9;1671:23;1703:31;1728:5;1703:31;:::i;2186:456::-;2263:6;2271;2279;2332:2;2320:9;2311:7;2307:23;2303:32;2300:52;;;2348:1;2345;2338:12;2300:52;2387:9;2374:23;2406:31;2431:5;2406:31;:::i;:::-;2456:5;-1:-1:-1;2513:2:1;2498:18;;2485:32;2526:33;2485:32;2526:33;:::i;:::-;2186:456;;2578:7;;-1:-1:-1;;;2632:2:1;2617:18;;;;2604:32;;2186:456::o;3044:160::-;3109:20;;3165:13;;3158:21;3148:32;;3138:60;;3194:1;3191;3184:12;3209:315;3274:6;3282;3335:2;3323:9;3314:7;3310:23;3306:32;3303:52;;;3351:1;3348;3341:12;3303:52;3390:9;3377:23;3409:31;3434:5;3409:31;:::i;:::-;3459:5;-1:-1:-1;3483:35:1;3514:2;3499:18;;3483:35;:::i;:::-;3473:45;;3209:315;;;;;:::o;3529:180::-;3585:6;3638:2;3626:9;3617:7;3613:23;3609:32;3606:52;;;3654:1;3651;3644:12;3606:52;3677:26;3693:9;3677:26;:::i;3714:180::-;3773:6;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;-1:-1:-1;3865:23:1;;3714:180;-1:-1:-1;3714:180:1:o;4439:388::-;4507:6;4515;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;4623:9;4610:23;4642:31;4667:5;4642:31;:::i;:::-;4692:5;-1:-1:-1;4749:2:1;4734:18;;4721:32;4762:33;4721:32;4762:33;:::i;:::-;4814:7;4804:17;;;4439:388;;;;;:::o;4832:356::-;5034:2;5016:21;;;5053:18;;;5046:30;5112:34;5107:2;5092:18;;5085:62;5179:2;5164:18;;4832:356::o;5193:127::-;5254:10;5249:3;5245:20;5242:1;5235:31;5285:4;5282:1;5275:15;5309:4;5306:1;5299:15;5325:128;5365:3;5396:1;5392:6;5389:1;5386:13;5383:39;;;5402:18;;:::i;:::-;-1:-1:-1;5438:9:1;;5325:128::o;5795:380::-;5874:1;5870:12;;;;5917;;;5938:61;;5992:4;5984:6;5980:17;5970:27;;5938:61;6045:2;6037:6;6034:14;6014:18;6011:38;6008:161;;;6091:10;6086:3;6082:20;6079:1;6072:31;6126:4;6123:1;6116:15;6154:4;6151:1;6144:15;6008:161;;5795:380;;;:::o;6180:217::-;6220:1;6246;6236:132;;6290:10;6285:3;6281:20;6278:1;6271:31;6325:4;6322:1;6315:15;6353:4;6350:1;6343:15;6236:132;-1:-1:-1;6382:9:1;;6180:217::o;6402:168::-;6442:7;6508:1;6504;6500:6;6496:14;6493:1;6490:21;6485:1;6478:9;6471:17;6467:45;6464:71;;;6515:18;;:::i;:::-;-1:-1:-1;6555:9:1;;6402:168::o;6575:412::-;6777:2;6759:21;;;6816:2;6796:18;;;6789:30;6855:34;6850:2;6835:18;;6828:62;-1:-1:-1;;;6921:2:1;6906:18;;6899:46;6977:3;6962:19;;6575:412::o;9394:401::-;9596:2;9578:21;;;9635:2;9615:18;;;9608:30;9674:34;9669:2;9654:18;;9647:62;-1:-1:-1;;;9740:2:1;9725:18;;9718:35;9785:3;9770:19;;9394:401::o;9800:399::-;10002:2;9984:21;;;10041:2;10021:18;;;10014:30;10080:34;10075:2;10060:18;;10053:62;-1:-1:-1;;;10146:2:1;10131:18;;10124:33;10189:3;10174:19;;9800:399::o;12976:125::-;13016:4;13044:1;13041;13038:8;13035:34;;;13049:18;;:::i;:::-;-1:-1:-1;13086:9:1;;12976:125::o;14174:127::-;14235:10;14230:3;14226:20;14223:1;14216:31;14266:4;14263:1;14256:15;14290:4;14287:1;14280:15;14306:251;14376:6;14429:2;14417:9;14408:7;14404:23;14400:32;14397:52;;;14445:1;14442;14435:12;14397:52;14477:9;14471:16;14496:31;14521:5;14496:31;:::i;14562:980::-;14824:4;14872:3;14861:9;14857:19;14903:6;14892:9;14885:25;14929:2;14967:6;14962:2;14951:9;14947:18;14940:34;15010:3;15005:2;14994:9;14990:18;14983:31;15034:6;15069;15063:13;15100:6;15092;15085:22;15138:3;15127:9;15123:19;15116:26;;15177:2;15169:6;15165:15;15151:29;;15198:1;15208:195;15222:6;15219:1;15216:13;15208:195;;;15287:13;;-1:-1:-1;;;;;15283:39:1;15271:52;;15378:15;;;;15343:12;;;;15319:1;15237:9;15208:195;;;-1:-1:-1;;;;;;;15459:32:1;;;;15454:2;15439:18;;15432:60;-1:-1:-1;;;15523:3:1;15508:19;15501:35;15420:3;14562:980;-1:-1:-1;;;14562:980:1:o;16159:306::-;16247:6;16255;16263;16316:2;16304:9;16295:7;16291:23;16287:32;16284:52;;;16332:1;16329;16322:12;16284:52;16361:9;16355:16;16345:26;;16411:2;16400:9;16396:18;16390:25;16380:35;;16455:2;16444:9;16440:18;16434:25;16424:35;;16159:306;;;;;:::o
Swarm Source
ipfs://d03efa69edbc0f7f6650df2bae73a296783c8bddd9bffa2e6a6257db6289ed27
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.