ERC-20
Overview
Max Total Supply
369,369,369,369 VALYRIA
Holders
39
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,143,902,578.816341834842007203 VALYRIAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Valyria
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-08 */ //SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity 0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function allPairsLength() external view returns (uint256); function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external 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 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-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) external virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** @dev 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"); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); } /** * @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"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev 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); } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); } } contract Valyria is Ownable, ERC20 { uint256 private _numTokensSellToAddToSwap = 100000 * (10**decimals()); bool inSwapAndLiquify; // 0% buy/sell tax uint256 public constant buySellLiquidityTax = 0; uint256 public constant sellDevelopmentTax = 0; address public developmentWallet = 0xbeeB0C41B78b083759E0343BC0e136B347B42930; address public constant DEAD = address(0xdead);// burn LP to dead address IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping(address => bool) private _isExcludedFromFee; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @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() ERC20("Valyria", "VALYRIA") { _mint(msg.sender, (369369369369 * 10**decimals())); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[address(uniswapV2Router)] = true; } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function excludeFromFee (address _user, bool value) external onlyOwner { _isExcludedFromFee[_user]= value; } function swapAndSendToMarketing (uint256 tokens) private lockTheSwap { uint256 initialBalance = address(this).balance; _swapTokensForEth(tokens); uint256 newBalance = address(this).balance - initialBalance; payable (developmentWallet).transfer(newBalance); } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, DEAD, block.timestamp ); } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); uint256 transferAmount; if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify ) { // DEX transaction if ( from != uniswapV2Pair && ((balanceOf(address(this))) >= _numTokensSellToAddToSwap) ) { uint256 totalfee = 2*(buySellLiquidityTax)+sellDevelopmentTax; _numTokensSellToAddToSwap = balanceOf(address(this)); uint256 marketingTokens = _numTokensSellToAddToSwap * sellDevelopmentTax / totalfee; swapAndSendToMarketing(marketingTokens); uint256 liquidityTokens = _numTokensSellToAddToSwap - marketingTokens; // sell transaction with threshold to swap _swapAndLiquify(liquidityTokens); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { // no tax on excluded account transferAmount = amount; } else { // 1% buy tax to LP, 2% sell tax (1% to LP, 1% to dev wallet) uint256 liquidityAmount = ((amount * buySellLiquidityTax) / 100); if (from == uniswapV2Pair) { // buy transaction transferAmount = amount - liquidityAmount; } else { // sell transaction uint256 developmentAmount = ((amount * sellDevelopmentTax) / 100); transferAmount = amount - liquidityAmount - developmentAmount; super._transfer(from, address(this), developmentAmount); // only on sell transaction } super._transfer(from, address(this), liquidityAmount); // on buy/sell both transactions } } else { // normal wallet transaction transferAmount = amount; } super._transfer(from, to, transferAmount); } receive() external payable {} }
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":"tokensIntoLiqudity","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buySellLiquidityTax","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFee","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevelopmentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052620000146200042960201b60201c565b600a620000229190620007de565b620186a06200003291906200082f565b60065573beeb0c41b78b083759e0343bc0e136b347b42930600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009757600080fd5b506040518060400160405280600781526020017f56616c79726961000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f56414c595249410000000000000000000000000000000000000000000000000081525062000124620001186200043260201b60201c565b6200043a60201b60201c565b816004908162000135919062000b00565b50806005908162000147919062000b00565b5050506200018b336200015f6200042960201b60201c565b600a6200016d9190620007de565b645600214b196200017f91906200082f565b620004fe60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000c51565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a4919062000c51565b6040518363ffffffff1660e01b8152600401620002c392919062000c94565b6020604051808303816000875af1158015620002e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000309919062000c51565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000dad565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005679062000d22565b60405180910390fd5b806003600082825462000584919062000d44565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000638919062000d90565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006d257808604811115620006aa57620006a962000644565b5b6001851615620006ba5780820291505b8081029050620006ca8562000673565b94506200068a565b94509492505050565b600082620006ed5760019050620007c0565b81620006fd5760009050620007c0565b8160018114620007165760028114620007215762000757565b6001915050620007c0565b60ff84111562000736576200073562000644565b5b8360020a91508482111562000750576200074f62000644565b5b50620007c0565b5060208310610133831016604e8410600b8410161715620007915782820a9050838111156200078b576200078a62000644565b5b620007c0565b620007a0848484600162000680565b92509050818404811115620007ba57620007b962000644565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007eb82620007c7565b9150620007f883620007d1565b9250620008277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006db565b905092915050565b60006200083c82620007c7565b91506200084983620007c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000885576200088462000644565b5b828202905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200091257607f821691505b602082108103620009285762000927620008ca565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000953565b6200099e868362000953565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009e1620009db620009d584620007c7565b620009b6565b620007c7565b9050919050565b6000819050919050565b620009fd83620009c0565b62000a1562000a0c82620009e8565b84845462000960565b825550505050565b600090565b62000a2c62000a1d565b62000a39818484620009f2565b505050565b5b8181101562000a615762000a5560008262000a22565b60018101905062000a3f565b5050565b601f82111562000ab05762000a7a816200092e565b62000a858462000943565b8101602085101562000a95578190505b62000aad62000aa48562000943565b83018262000a3e565b50505b505050565b600082821c905092915050565b600062000ad56000198460080262000ab5565b1980831691505092915050565b600062000af0838362000ac2565b9150826002028217905092915050565b62000b0b8262000890565b67ffffffffffffffff81111562000b275762000b266200089b565b5b62000b338254620008f9565b62000b4082828562000a65565b600060209050601f83116001811462000b78576000841562000b63578287015190505b62000b6f858262000ae2565b86555062000bdf565b601f19841662000b88866200092e565b60005b8281101562000bb25784890151825560018201915060208501945060208101905062000b8b565b8683101562000bd2578489015162000bce601f89168262000ac2565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c198262000bec565b9050919050565b62000c2b8162000c0c565b811462000c3757600080fd5b50565b60008151905062000c4b8162000c20565b92915050565b60006020828403121562000c6a5762000c6962000be7565b5b600062000c7a8482850162000c3a565b91505092915050565b62000c8e8162000c0c565b82525050565b600060408201905062000cab600083018562000c83565b62000cba602083018462000c83565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d0a601f8362000cc1565b915062000d178262000cd2565b602082019050919050565b6000602082019050818103600083015262000d3d8162000cfb565b9050919050565b600062000d5182620007c7565b915062000d5e83620007c7565b925082820190508082111562000d795762000d7862000644565b5b92915050565b62000d8a81620007c7565b82525050565b600060208201905062000da7600083018462000d7f565b92915050565b60805160a05161278362000e126000396000818161068101528181610ed801528181610f2d01528181610f9b01526111430152600081816105e40152818161175a0152818161183b015281816118620152818161190b015261193201526127836000f3fe60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610405578063ad8052bb14610442578063c04a54141461046d578063dd62ed3e14610498578063df8408fe146104d5578063f2fde38b146104fe57610135565b8063715018a614610330578063739822b2146103475780638da5cb5b1461037257806395d89b411461039d578063a457c2d7146103c857610135565b806323b872dd116100f257806323b872dd14610223578063313ce56714610260578063395093511461028b57806349bd5a5e146102c857806370a08231146102f357610135565b806303fd2a451461013a57806306fdde0314610165578063095ea7b3146101905780631694505e146101cd57806318160ddd146101f857610135565b3661013557005b600080fd5b34801561014657600080fd5b5061014f610527565b60405161015c9190611a22565b60405180910390f35b34801561017157600080fd5b5061017a61052d565b6040516101879190611acd565b60405180910390f35b34801561019c57600080fd5b506101b760048036038101906101b29190611b56565b6105bf565b6040516101c49190611bb1565b60405180910390f35b3480156101d957600080fd5b506101e26105e2565b6040516101ef9190611c2b565b60405180910390f35b34801561020457600080fd5b5061020d610606565b60405161021a9190611c55565b60405180910390f35b34801561022f57600080fd5b5061024a60048036038101906102459190611c70565b610610565b6040516102579190611bb1565b60405180910390f35b34801561026c57600080fd5b5061027561063f565b6040516102829190611cdf565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190611b56565b610648565b6040516102bf9190611bb1565b60405180910390f35b3480156102d457600080fd5b506102dd61067f565b6040516102ea9190611a22565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190611cfa565b6106a3565b6040516103279190611c55565b60405180910390f35b34801561033c57600080fd5b506103456106ec565b005b34801561035357600080fd5b5061035c610774565b6040516103699190611c55565b60405180910390f35b34801561037e57600080fd5b50610387610779565b6040516103949190611a22565b60405180910390f35b3480156103a957600080fd5b506103b26107a2565b6040516103bf9190611acd565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190611b56565b610834565b6040516103fc9190611bb1565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611b56565b6108ab565b6040516104399190611bb1565b60405180910390f35b34801561044e57600080fd5b506104576108ce565b6040516104649190611c55565b60405180910390f35b34801561047957600080fd5b506104826108d3565b60405161048f9190611a22565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611d27565b6108f9565b6040516104cc9190611c55565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190611d93565b610980565b005b34801561050a57600080fd5b5061052560048036038101906105209190611cfa565b610a57565b005b61dead81565b60606004805461053c90611e02565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611e02565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000806105ca610b4e565b90506105d7818585610b56565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600354905090565b60008061061b610b4e565b9050610628858285610d1f565b610633858585610dab565b60019150509392505050565b60006012905090565b600080610653610b4e565b905061067481858561066585896108f9565b61066f9190611e62565b610b56565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106f4610b4e565b73ffffffffffffffffffffffffffffffffffffffff16610712610779565b73ffffffffffffffffffffffffffffffffffffffff1614610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90611ee2565b60405180910390fd5b6107726000611211565b565b600081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107b190611e02565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611e02565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b4e565b9050600061084d82866108f9565b905083811015610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611f74565b60405180910390fd5b61089f8286868403610b56565b60019250505092915050565b6000806108b6610b4e565b90506108c3818585610dab565b600191505092915050565b600081565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610988610b4e565b73ffffffffffffffffffffffffffffffffffffffff166109a6610779565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611ee2565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a5f610b4e565b73ffffffffffffffffffffffffffffffffffffffff16610a7d610779565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90611ee2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612006565b60405180910390fd5b610b4b81611211565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90612098565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061212a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d129190611c55565b60405180910390a3505050565b6000610d2b84846108f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da55781811015610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612196565b60405180910390fd5b610da48484848403610b56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190612228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906122ba565b60405180910390fd5b80610e93846106a3565b1015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061234c565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f7b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610f945750600760009054906101000a900460ff16155b156111fc577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610fff5750600654610ffc306106a3565b10155b156110765760008060006002611015919061236c565b61101f9190611e62565b905061102a306106a3565b6006819055506000816000600654611042919061236c565b61104c91906123f5565b9050611057816112d5565b6000816006546110679190612426565b905061107281611397565b5050505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111175750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611124578190506111f7565b60006064600084611135919061236c565b61113f91906123f5565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111a75780836111a09190612426565b91506111ea565b600060646000856111b8919061236c565b6111c291906123f5565b90508082856111d19190612426565b6111db9190612426565b92506111e8863083611458565b505b6111f5853083611458565b505b611200565b8190505b61120b848483611458565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760006101000a81548160ff02191690831515021790555060004790506112fe826116bb565b6000814761130c9190612426565b9050600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611376573d6000803e3d6000fd5b5050506000600760006101000a81548160ff02191690831515021790555050565b6001600760006101000a81548160ff02191690831515021790555060006002826113c191906123f5565b9050600081836113d19190612426565b905060004790506113e1836116bb565b600081476113ef9190612426565b90506113fb8382611905565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161142e9392919061245a565b60405180910390a1505050506000600760006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90612228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906122ba565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061234c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116ad9190611c55565b60405180910390a350505050565b6000600267ffffffffffffffff8111156116d8576116d7612491565b5b6040519080825280602002602001820160405280156117065781602001602082028036833780820191505090505b509050308160008151811061171e5761171d6124c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e79190612504565b816001815181106117fb576117fa6124c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611860307f000000000000000000000000000000000000000000000000000000000000000084610b56565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426118af9190611e62565b6040518663ffffffff1660e01b81526004016118cf95949392919061262a565b600060405180830381600087803b1580156118e957600080fd5b505af11580156118fd573d6000803e3d6000fd5b505050505050565b611930307f000000000000000000000000000000000000000000000000000000000000000084610b56565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161199796959493929190612684565b60606040518083038185885af11580156119b5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119da91906126fa565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a0c826119e1565b9050919050565b611a1c81611a01565b82525050565b6000602082019050611a376000830184611a13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a77578082015181840152602081019050611a5c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9f82611a3d565b611aa98185611a48565b9350611ab9818560208601611a59565b611ac281611a83565b840191505092915050565b60006020820190508181036000830152611ae78184611a94565b905092915050565b600080fd5b611afd81611a01565b8114611b0857600080fd5b50565b600081359050611b1a81611af4565b92915050565b6000819050919050565b611b3381611b20565b8114611b3e57600080fd5b50565b600081359050611b5081611b2a565b92915050565b60008060408385031215611b6d57611b6c611aef565b5b6000611b7b85828601611b0b565b9250506020611b8c85828601611b41565b9150509250929050565b60008115159050919050565b611bab81611b96565b82525050565b6000602082019050611bc66000830184611ba2565b92915050565b6000819050919050565b6000611bf1611bec611be7846119e1565b611bcc565b6119e1565b9050919050565b6000611c0382611bd6565b9050919050565b6000611c1582611bf8565b9050919050565b611c2581611c0a565b82525050565b6000602082019050611c406000830184611c1c565b92915050565b611c4f81611b20565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b600080600060608486031215611c8957611c88611aef565b5b6000611c9786828701611b0b565b9350506020611ca886828701611b0b565b9250506040611cb986828701611b41565b9150509250925092565b600060ff82169050919050565b611cd981611cc3565b82525050565b6000602082019050611cf46000830184611cd0565b92915050565b600060208284031215611d1057611d0f611aef565b5b6000611d1e84828501611b0b565b91505092915050565b60008060408385031215611d3e57611d3d611aef565b5b6000611d4c85828601611b0b565b9250506020611d5d85828601611b0b565b9150509250929050565b611d7081611b96565b8114611d7b57600080fd5b50565b600081359050611d8d81611d67565b92915050565b60008060408385031215611daa57611da9611aef565b5b6000611db885828601611b0b565b9250506020611dc985828601611d7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e1a57607f821691505b602082108103611e2d57611e2c611dd3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e6d82611b20565b9150611e7883611b20565b9250828201905080821115611e9057611e8f611e33565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ecc602083611a48565b9150611ed782611e96565b602082019050919050565b60006020820190508181036000830152611efb81611ebf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f5e602583611a48565b9150611f6982611f02565b604082019050919050565b60006020820190508181036000830152611f8d81611f51565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ff0602683611a48565b9150611ffb82611f94565b604082019050919050565b6000602082019050818103600083015261201f81611fe3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612082602483611a48565b915061208d82612026565b604082019050919050565b600060208201905081810360008301526120b181612075565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612114602283611a48565b915061211f826120b8565b604082019050919050565b6000602082019050818103600083015261214381612107565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612180601d83611a48565b915061218b8261214a565b602082019050919050565b600060208201905081810360008301526121af81612173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612212602583611a48565b915061221d826121b6565b604082019050919050565b6000602082019050818103600083015261224181612205565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122a4602383611a48565b91506122af82612248565b604082019050919050565b600060208201905081810360008301526122d381612297565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612336602683611a48565b9150612341826122da565b604082019050919050565b6000602082019050818103600083015261236581612329565b9050919050565b600061237782611b20565b915061238283611b20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123bb576123ba611e33565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061240082611b20565b915061240b83611b20565b92508261241b5761241a6123c6565b5b828204905092915050565b600061243182611b20565b915061243c83611b20565b925082820390508181111561245457612453611e33565b5b92915050565b600060608201905061246f6000830186611c46565b61247c6020830185611c46565b6124896040830184611c46565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506124fe81611af4565b92915050565b60006020828403121561251a57612519611aef565b5b6000612528848285016124ef565b91505092915050565b6000819050919050565b600061255661255161254c84612531565b611bcc565b611b20565b9050919050565b6125668161253b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125a181611a01565b82525050565b60006125b38383612598565b60208301905092915050565b6000602082019050919050565b60006125d78261256c565b6125e18185612577565b93506125ec83612588565b8060005b8381101561261d57815161260488826125a7565b975061260f836125bf565b9250506001810190506125f0565b5085935050505092915050565b600060a08201905061263f6000830188611c46565b61264c602083018761255d565b818103604083015261265e81866125cc565b905061266d6060830185611a13565b61267a6080830184611c46565b9695505050505050565b600060c0820190506126996000830189611a13565b6126a66020830188611c46565b6126b3604083018761255d565b6126c0606083018661255d565b6126cd6080830185611a13565b6126da60a0830184611c46565b979650505050505050565b6000815190506126f481611b2a565b92915050565b60008060006060848603121561271357612712611aef565b5b6000612721868287016126e5565b9350506020612732868287016126e5565b9250506040612743868287016126e5565b915050925092509256fea264697066735822122001d21d17d988c42ddbca5a1ce74890beee79ffc6e1b4fa0b4b4fe949688bc97164736f6c63430008100033
Deployed Bytecode
0x60806040526004361061012e5760003560e01c8063715018a6116100ab578063a9059cbb1161006f578063a9059cbb14610405578063ad8052bb14610442578063c04a54141461046d578063dd62ed3e14610498578063df8408fe146104d5578063f2fde38b146104fe57610135565b8063715018a614610330578063739822b2146103475780638da5cb5b1461037257806395d89b411461039d578063a457c2d7146103c857610135565b806323b872dd116100f257806323b872dd14610223578063313ce56714610260578063395093511461028b57806349bd5a5e146102c857806370a08231146102f357610135565b806303fd2a451461013a57806306fdde0314610165578063095ea7b3146101905780631694505e146101cd57806318160ddd146101f857610135565b3661013557005b600080fd5b34801561014657600080fd5b5061014f610527565b60405161015c9190611a22565b60405180910390f35b34801561017157600080fd5b5061017a61052d565b6040516101879190611acd565b60405180910390f35b34801561019c57600080fd5b506101b760048036038101906101b29190611b56565b6105bf565b6040516101c49190611bb1565b60405180910390f35b3480156101d957600080fd5b506101e26105e2565b6040516101ef9190611c2b565b60405180910390f35b34801561020457600080fd5b5061020d610606565b60405161021a9190611c55565b60405180910390f35b34801561022f57600080fd5b5061024a60048036038101906102459190611c70565b610610565b6040516102579190611bb1565b60405180910390f35b34801561026c57600080fd5b5061027561063f565b6040516102829190611cdf565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad9190611b56565b610648565b6040516102bf9190611bb1565b60405180910390f35b3480156102d457600080fd5b506102dd61067f565b6040516102ea9190611a22565b60405180910390f35b3480156102ff57600080fd5b5061031a60048036038101906103159190611cfa565b6106a3565b6040516103279190611c55565b60405180910390f35b34801561033c57600080fd5b506103456106ec565b005b34801561035357600080fd5b5061035c610774565b6040516103699190611c55565b60405180910390f35b34801561037e57600080fd5b50610387610779565b6040516103949190611a22565b60405180910390f35b3480156103a957600080fd5b506103b26107a2565b6040516103bf9190611acd565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea9190611b56565b610834565b6040516103fc9190611bb1565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190611b56565b6108ab565b6040516104399190611bb1565b60405180910390f35b34801561044e57600080fd5b506104576108ce565b6040516104649190611c55565b60405180910390f35b34801561047957600080fd5b506104826108d3565b60405161048f9190611a22565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190611d27565b6108f9565b6040516104cc9190611c55565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190611d93565b610980565b005b34801561050a57600080fd5b5061052560048036038101906105209190611cfa565b610a57565b005b61dead81565b60606004805461053c90611e02565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611e02565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b5050505050905090565b6000806105ca610b4e565b90506105d7818585610b56565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600354905090565b60008061061b610b4e565b9050610628858285610d1f565b610633858585610dab565b60019150509392505050565b60006012905090565b600080610653610b4e565b905061067481858561066585896108f9565b61066f9190611e62565b610b56565b600191505092915050565b7f00000000000000000000000018efe8dfdfd48c0a91d25ccfc55b9e8b6dd1d5cc81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106f4610b4e565b73ffffffffffffffffffffffffffffffffffffffff16610712610779565b73ffffffffffffffffffffffffffffffffffffffff1614610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90611ee2565b60405180910390fd5b6107726000611211565b565b600081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107b190611e02565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611e02565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b60008061083f610b4e565b9050600061084d82866108f9565b905083811015610892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088990611f74565b60405180910390fd5b61089f8286868403610b56565b60019250505092915050565b6000806108b6610b4e565b90506108c3818585610dab565b600191505092915050565b600081565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610988610b4e565b73ffffffffffffffffffffffffffffffffffffffff166109a6610779565b73ffffffffffffffffffffffffffffffffffffffff16146109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611ee2565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610a5f610b4e565b73ffffffffffffffffffffffffffffffffffffffff16610a7d610779565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90611ee2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612006565b60405180910390fd5b610b4b81611211565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc90612098565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b9061212a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d129190611c55565b60405180910390a3505050565b6000610d2b84846108f9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da55781811015610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90612196565b60405180910390fd5b610da48484848403610b56565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190612228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906122ba565b60405180910390fd5b80610e93846106a3565b1015610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb9061234c565b60405180910390fd5b60007f00000000000000000000000018efe8dfdfd48c0a91d25ccfc55b9e8b6dd1d5cc73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f7b57507f00000000000000000000000018efe8dfdfd48c0a91d25ccfc55b9e8b6dd1d5cc73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610f945750600760009054906101000a900460ff16155b156111fc577f00000000000000000000000018efe8dfdfd48c0a91d25ccfc55b9e8b6dd1d5cc73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015610fff5750600654610ffc306106a3565b10155b156110765760008060006002611015919061236c565b61101f9190611e62565b905061102a306106a3565b6006819055506000816000600654611042919061236c565b61104c91906123f5565b9050611057816112d5565b6000816006546110679190612426565b905061107281611397565b5050505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111175750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611124578190506111f7565b60006064600084611135919061236c565b61113f91906123f5565b90507f00000000000000000000000018efe8dfdfd48c0a91d25ccfc55b9e8b6dd1d5cc73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036111a75780836111a09190612426565b91506111ea565b600060646000856111b8919061236c565b6111c291906123f5565b90508082856111d19190612426565b6111db9190612426565b92506111e8863083611458565b505b6111f5853083611458565b505b611200565b8190505b61120b848483611458565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600760006101000a81548160ff02191690831515021790555060004790506112fe826116bb565b6000814761130c9190612426565b9050600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611376573d6000803e3d6000fd5b5050506000600760006101000a81548160ff02191690831515021790555050565b6001600760006101000a81548160ff02191690831515021790555060006002826113c191906123f5565b9050600081836113d19190612426565b905060004790506113e1836116bb565b600081476113ef9190612426565b90506113fb8382611905565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161142e9392919061245a565b60405180910390a1505050506000600760006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90612228565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d906122ba565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b49061234c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116ad9190611c55565b60405180910390a350505050565b6000600267ffffffffffffffff8111156116d8576116d7612491565b5b6040519080825280602002602001820160405280156117065781602001602082028036833780820191505090505b509050308160008151811061171e5761171d6124c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117e79190612504565b816001815181106117fb576117fa6124c0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611860307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b56565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426118af9190611e62565b6040518663ffffffff1660e01b81526004016118cf95949392919061262a565b600060405180830381600087803b1580156118e957600080fd5b505af11580156118fd573d6000803e3d6000fd5b505050505050565b611930307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b56565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161199796959493929190612684565b60606040518083038185885af11580156119b5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119da91906126fa565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a0c826119e1565b9050919050565b611a1c81611a01565b82525050565b6000602082019050611a376000830184611a13565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a77578082015181840152602081019050611a5c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a9f82611a3d565b611aa98185611a48565b9350611ab9818560208601611a59565b611ac281611a83565b840191505092915050565b60006020820190508181036000830152611ae78184611a94565b905092915050565b600080fd5b611afd81611a01565b8114611b0857600080fd5b50565b600081359050611b1a81611af4565b92915050565b6000819050919050565b611b3381611b20565b8114611b3e57600080fd5b50565b600081359050611b5081611b2a565b92915050565b60008060408385031215611b6d57611b6c611aef565b5b6000611b7b85828601611b0b565b9250506020611b8c85828601611b41565b9150509250929050565b60008115159050919050565b611bab81611b96565b82525050565b6000602082019050611bc66000830184611ba2565b92915050565b6000819050919050565b6000611bf1611bec611be7846119e1565b611bcc565b6119e1565b9050919050565b6000611c0382611bd6565b9050919050565b6000611c1582611bf8565b9050919050565b611c2581611c0a565b82525050565b6000602082019050611c406000830184611c1c565b92915050565b611c4f81611b20565b82525050565b6000602082019050611c6a6000830184611c46565b92915050565b600080600060608486031215611c8957611c88611aef565b5b6000611c9786828701611b0b565b9350506020611ca886828701611b0b565b9250506040611cb986828701611b41565b9150509250925092565b600060ff82169050919050565b611cd981611cc3565b82525050565b6000602082019050611cf46000830184611cd0565b92915050565b600060208284031215611d1057611d0f611aef565b5b6000611d1e84828501611b0b565b91505092915050565b60008060408385031215611d3e57611d3d611aef565b5b6000611d4c85828601611b0b565b9250506020611d5d85828601611b0b565b9150509250929050565b611d7081611b96565b8114611d7b57600080fd5b50565b600081359050611d8d81611d67565b92915050565b60008060408385031215611daa57611da9611aef565b5b6000611db885828601611b0b565b9250506020611dc985828601611d7e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e1a57607f821691505b602082108103611e2d57611e2c611dd3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e6d82611b20565b9150611e7883611b20565b9250828201905080821115611e9057611e8f611e33565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ecc602083611a48565b9150611ed782611e96565b602082019050919050565b60006020820190508181036000830152611efb81611ebf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f5e602583611a48565b9150611f6982611f02565b604082019050919050565b60006020820190508181036000830152611f8d81611f51565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ff0602683611a48565b9150611ffb82611f94565b604082019050919050565b6000602082019050818103600083015261201f81611fe3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612082602483611a48565b915061208d82612026565b604082019050919050565b600060208201905081810360008301526120b181612075565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612114602283611a48565b915061211f826120b8565b604082019050919050565b6000602082019050818103600083015261214381612107565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612180601d83611a48565b915061218b8261214a565b602082019050919050565b600060208201905081810360008301526121af81612173565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612212602583611a48565b915061221d826121b6565b604082019050919050565b6000602082019050818103600083015261224181612205565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122a4602383611a48565b91506122af82612248565b604082019050919050565b600060208201905081810360008301526122d381612297565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612336602683611a48565b9150612341826122da565b604082019050919050565b6000602082019050818103600083015261236581612329565b9050919050565b600061237782611b20565b915061238283611b20565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123bb576123ba611e33565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061240082611b20565b915061240b83611b20565b92508261241b5761241a6123c6565b5b828204905092915050565b600061243182611b20565b915061243c83611b20565b925082820390508181111561245457612453611e33565b5b92915050565b600060608201905061246f6000830186611c46565b61247c6020830185611c46565b6124896040830184611c46565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506124fe81611af4565b92915050565b60006020828403121561251a57612519611aef565b5b6000612528848285016124ef565b91505092915050565b6000819050919050565b600061255661255161254c84612531565b611bcc565b611b20565b9050919050565b6125668161253b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6125a181611a01565b82525050565b60006125b38383612598565b60208301905092915050565b6000602082019050919050565b60006125d78261256c565b6125e18185612577565b93506125ec83612588565b8060005b8381101561261d57815161260488826125a7565b975061260f836125bf565b9250506001810190506125f0565b5085935050505092915050565b600060a08201905061263f6000830188611c46565b61264c602083018761255d565b818103604083015261265e81866125cc565b905061266d6060830185611a13565b61267a6080830184611c46565b9695505050505050565b600060c0820190506126996000830189611a13565b6126a66020830188611c46565b6126b3604083018761255d565b6126c0606083018661255d565b6126cd6080830185611a13565b6126da60a0830184611c46565b979650505050505050565b6000815190506126f481611b2a565b92915050565b60008060006060848603121561271357612712611aef565b5b6000612721868287016126e5565b9350506020612732868287016126e5565b9250506040612743868287016126e5565b915050925092509256fea264697066735822122001d21d17d988c42ddbca5a1ce74890beee79ffc6e1b4fa0b4b4fe949688bc97164736f6c63430008100033
Deployed Bytecode Sourcemap
27127:6572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27499:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18041:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20316:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27585:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18208:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21140:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19197:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21846:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27643:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18381:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2639:103;;;;;;;;;;;;;:::i;:::-;;27299:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1988:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17865:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22621:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19760:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27353:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27406:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19353:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29356:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2897:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27499:47;27539:6;27499:47;:::o;18041:102::-;18097:13;18130:5;18123:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18041:102;:::o;20316:244::-;20437:4;20459:13;20475:12;:10;:12::i;:::-;20459:28;;20498:32;20507:5;20514:7;20523:6;20498:8;:32::i;:::-;20548:4;20541:11;;;20316:244;;;;:::o;27585:51::-;;;:::o;18208:110::-;18271:7;18298:12;;18291:19;;18208:110;:::o;21140:297::-;21273:4;21290:15;21308:12;:10;:12::i;:::-;21290:30;;21331:38;21347:4;21353:7;21362:6;21331:15;:38::i;:::-;21380:27;21390:4;21396:2;21400:6;21380:9;:27::i;:::-;21425:4;21418:11;;;21140:297;;;;;:::o;19197:93::-;19255:5;19280:2;19273:9;;19197:93;:::o;21846:272::-;21963:4;21985:13;22001:12;:10;:12::i;:::-;21985:28;;22024:64;22033:5;22040:7;22077:10;22049:25;22059:5;22066:7;22049:9;:25::i;:::-;:38;;;;:::i;:::-;22024:8;:64::i;:::-;22106:4;22099:11;;;21846:272;;;;:::o;27643:38::-;;;:::o;18381:177::-;18500:7;18532:9;:18;18542:7;18532:18;;;;;;;;;;;;;;;;18525:25;;18381:177;;;:::o;2639:103::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;27299:47::-;27345:1;27299:47;:::o;1988:87::-;2034:7;2061:6;;;;;;;;;;;2054:13;;1988:87;:::o;17865:106::-;17923:13;17956:7;17949:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17865:106;:::o;22621:507::-;22743:4;22765:13;22781:12;:10;:12::i;:::-;22765:28;;22804:24;22831:25;22841:5;22848:7;22831:9;:25::i;:::-;22804:52;;22909:15;22889:16;:35;;22867:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;23025:60;23034:5;23041:7;23069:15;23050:16;:34;23025:8;:60::i;:::-;23116:4;23109:11;;;;22621:507;;;;:::o;19760:236::-;19877:4;19899:13;19915:12;:10;:12::i;:::-;19899:28;;19938;19948:5;19955:2;19959:6;19938:9;:28::i;:::-;19984:4;19977:11;;;19760:236;;;;:::o;27353:46::-;27398:1;27353:46;:::o;27406:86::-;;;;;;;;;;;;;:::o;19353:201::-;19487:7;19519:11;:18;19531:5;19519:18;;;;;;;;;;;;;;;:27;19538:7;19519:27;;;;;;;;;;;;;;;;19512:34;;19353:201;;;;:::o;29356:122::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29465:5:::1;29438:18;:25;29457:5;29438:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;29356:122:::0;;:::o;2897:201::-;2219:12;:10;:12::i;:::-;2208:23;;:7;:5;:7::i;:::-;:23;;;2200:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3006:1:::1;2986:22;;:8;:22;;::::0;2978:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3062:28;3081:8;3062:18;:28::i;:::-;2897:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;25956:380::-;26109:1;26092:19;;:5;:19;;;26084:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26190:1;26171:21;;:7;:21;;;26163:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26274:6;26244:11;:18;26256:5;26244:18;;;;;;;;;;;;;;;:27;26263:7;26244:27;;;;;;;;;;;;;;;:36;;;;26312:7;26296:32;;26305:5;26296:32;;;26321:6;26296:32;;;;;;:::i;:::-;;;;;;;;25956:380;;;:::o;25016:502::-;25151:24;25178:25;25188:5;25195:7;25178:9;:25::i;:::-;25151:52;;25238:17;25218:16;:37;25214:297;;25318:6;25298:16;:26;;25272:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;25433:51;25442:5;25449:7;25477:6;25458:16;:25;25433:8;:51::i;:::-;25214:297;25140:378;25016:502;;;:::o;31117:2542::-;31265:1;31249:18;;:4;:18;;;31241:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31342:1;31328:16;;:2;:16;;;31320:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31436:6;31417:15;31427:4;31417:9;:15::i;:::-;:25;;31395:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;31521:22;31581:13;31573:21;;:4;:21;;;:44;;;;31604:13;31598:19;;:2;:19;;;31573:44;31572:67;;;;;31623:16;;;;;;;;;;;31622:17;31572:67;31554:2046;;;31728:13;31720:21;;:4;:21;;;;:99;;;;;31793:25;;31764:24;31782:4;31764:9;:24::i;:::-;31763:55;;31720:99;31698:692;;;31860:16;27398:1;27345;31879;:23;;;;:::i;:::-;:42;;;;:::i;:::-;31860:61;;31972:24;31990:4;31972:9;:24::i;:::-;31944:25;:52;;;;32021:23;32096:8;27398:1;32047:25;;:46;;;;:::i;:::-;:57;;;;:::i;:::-;32021:83;;32127:39;32150:15;32127:22;:39::i;:::-;32192:23;32246:15;32218:25;;:43;;;;:::i;:::-;32192:69;;32342:32;32358:15;32342;:32::i;:::-;31837:553;;;31698:692;32408:18;:24;32427:4;32408:24;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;32436:18;:22;32455:2;32436:22;;;;;;;;;;;;;;;;;;;;;;;;;32408:50;32404:1087;;;32543:6;32526:23;;32404:1087;;;32669:23;32750:3;27345:1;32697:6;:28;;;;:::i;:::-;32696:57;;;;:::i;:::-;32669:85;;32785:13;32777:21;;:4;:21;;;32773:598;;32889:15;32880:6;:24;;;;:::i;:::-;32863:41;;32773:598;;;32994:25;33080:3;27398:1;33024:6;:27;;;;:::i;:::-;33023:60;;;;:::i;:::-;32994:90;;33228:17;33185:15;33151:6;:49;;;;:::i;:::-;:94;;;;:::i;:::-;33109:136;;33268:55;33284:4;33298;33305:17;33268:15;:55::i;:::-;32930:441;32773:598;33389:53;33405:4;33419;33426:15;33389;:53::i;:::-;32571:920;32404:1087;31554:2046;;;33582:6;33565:23;;31554:2046;33610:41;33626:4;33632:2;33636:14;33610:15;:41::i;:::-;31230:2429;31117:2542;;;:::o;3258:191::-;3332:16;3351:6;;;;;;;;;;;3332:25;;3377:8;3368:6;;:17;;;;;;;;;;;;;;;;;;3432:8;3401:40;;3422:8;3401:40;;;;;;;;;;;;3321:128;3258:191;:::o;29486:301::-;27936:4;27917:16;;:23;;;;;;;;;;;;;;;;;;29566:22:::1;29591:21;29566:46;;29623:25;29641:6;29623:17;:25::i;:::-;29659:18;29704:14;29680:21;:38;;;;:::i;:::-;29659:59;;29738:17;;;;;;;;;;;29729:36;;:48;29766:10;29729:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;29555:232;;27982:5:::0;27963:16;;:24;;;;;;;;;;;;;;;;;;29486:301;:::o;28865:483::-;27936:4;27917:16;;:23;;;;;;;;;;;;;;;;;;28960:12:::1;28999:1;28976:20;:24;;;;:::i;:::-;28960:41;;29012:17;29056:4;29033:20;:27;;;;:::i;:::-;29012:49;;29074:22;29099:21;29074:46;;29133:23;29151:4;29133:17;:23::i;:::-;29169:18;29215:14;29191:21;:38;;;;:::i;:::-;29169:61;;29243:36;29257:9;29268:10;29243:13;:36::i;:::-;29297:43;29312:4;29318:10;29330:9;29297:43;;;;;;;;:::i;:::-;;;;;;;;28940:408;;;;27982:5:::0;27963:16;;:24;;;;;;;;;;;;;;;;;;28865:483;:::o;26344:776::-;26491:1;26475:18;;:4;:18;;;26467:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26568:1;26554:16;;:2;:16;;;26546:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26623:19;26645:9;:15;26655:4;26645:15;;;;;;;;;;;;;;;;26623:37;;26708:6;26693:11;:21;;26671:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;26848:6;26834:11;:20;26816:9;:15;26826:4;26816:15;;;;;;;;;;;;;;;:38;;;;27051:6;27034:9;:13;27044:2;27034:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;27101:2;27086:26;;27095:4;27086:26;;;27105:6;27086:26;;;;;;:::i;:::-;;;;;;;;26456:664;26344:776;;;:::o;29795:484::-;29862:21;29900:1;29886:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29862:40;;29931:4;29913;29918:1;29913:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;29957:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29947:4;29952:1;29947:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;29992:62;30009:4;30024:15;30042:11;29992:8;:62::i;:::-;30067:15;:66;;;30148:11;30174:1;30190:4;30217;30256:3;30238:15;:21;;;;:::i;:::-;30067:204;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29851:428;29795:484;:::o;30287:360::-;30369:62;30386:4;30401:15;30419:11;30369:8;:62::i;:::-;30444:15;:31;;;30483:9;30516:4;30536:11;30562:1;30578;27539:6;30613:15;30444:195;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;30287:360;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:246::-;954:1;964:113;978:6;975:1;972:13;964:113;;;1063:1;1058:3;1054:11;1048:18;1044:1;1039:3;1035:11;1028:39;1000:2;997:1;993:10;988:15;;964:113;;;1111:1;1102:6;1097:3;1093:16;1086:27;935:184;873:246;;;:::o;1125:102::-;1166:6;1217:2;1213:7;1208:2;1201:5;1197:14;1193:28;1183:38;;1125:102;;;:::o;1233:377::-;1321:3;1349:39;1382:5;1349:39;:::i;:::-;1404:71;1468:6;1463:3;1404:71;:::i;:::-;1397:78;;1484:65;1542:6;1537:3;1530:4;1523:5;1519:16;1484:65;:::i;:::-;1574:29;1596:6;1574:29;:::i;:::-;1569:3;1565:39;1558:46;;1325:285;1233:377;;;;:::o;1616:313::-;1729:4;1767:2;1756:9;1752:18;1744:26;;1816:9;1810:4;1806:20;1802:1;1791:9;1787:17;1780:47;1844:78;1917:4;1908:6;1844:78;:::i;:::-;1836:86;;1616:313;;;;:::o;2016:117::-;2125:1;2122;2115:12;2262:122;2335:24;2353:5;2335:24;:::i;:::-;2328:5;2325:35;2315:63;;2374:1;2371;2364:12;2315:63;2262:122;:::o;2390:139::-;2436:5;2474:6;2461:20;2452:29;;2490:33;2517:5;2490:33;:::i;:::-;2390:139;;;;:::o;2535:77::-;2572:7;2601:5;2590:16;;2535:77;;;:::o;2618:122::-;2691:24;2709:5;2691:24;:::i;:::-;2684:5;2681:35;2671:63;;2730:1;2727;2720:12;2671:63;2618:122;:::o;2746:139::-;2792:5;2830:6;2817:20;2808:29;;2846:33;2873:5;2846:33;:::i;:::-;2746:139;;;;:::o;2891:474::-;2959:6;2967;3016:2;3004:9;2995:7;2991:23;2987:32;2984:119;;;3022:79;;:::i;:::-;2984:119;3142:1;3167:53;3212:7;3203:6;3192:9;3188:22;3167:53;:::i;:::-;3157:63;;3113:117;3269:2;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3240:118;2891:474;;;;;:::o;3371:90::-;3405:7;3448:5;3441:13;3434:21;3423:32;;3371:90;;;:::o;3467:109::-;3548:21;3563:5;3548:21;:::i;:::-;3543:3;3536:34;3467:109;;:::o;3582:210::-;3669:4;3707:2;3696:9;3692:18;3684:26;;3720:65;3782:1;3771:9;3767:17;3758:6;3720:65;:::i;:::-;3582:210;;;;:::o;3798:60::-;3826:3;3847:5;3840:12;;3798:60;;;:::o;3864:142::-;3914:9;3947:53;3965:34;3974:24;3992:5;3974:24;:::i;:::-;3965:34;:::i;:::-;3947:53;:::i;:::-;3934:66;;3864:142;;;:::o;4012:126::-;4062:9;4095:37;4126:5;4095:37;:::i;:::-;4082:50;;4012:126;;;:::o;4144:152::-;4220:9;4253:37;4284:5;4253:37;:::i;:::-;4240:50;;4144:152;;;:::o;4302:183::-;4415:63;4472:5;4415:63;:::i;:::-;4410:3;4403:76;4302:183;;:::o;4491:274::-;4610:4;4648:2;4637:9;4633:18;4625:26;;4661:97;4755:1;4744:9;4740:17;4731:6;4661:97;:::i;:::-;4491:274;;;;:::o;4771:118::-;4858:24;4876:5;4858:24;:::i;:::-;4853:3;4846:37;4771:118;;:::o;4895:222::-;4988:4;5026:2;5015:9;5011:18;5003:26;;5039:71;5107:1;5096:9;5092:17;5083:6;5039:71;:::i;:::-;4895:222;;;;:::o;5123:619::-;5200:6;5208;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5646:2;5672:53;5717:7;5708:6;5697:9;5693:22;5672:53;:::i;:::-;5662:63;;5617:118;5123:619;;;;;:::o;5748:86::-;5783:7;5823:4;5816:5;5812:16;5801:27;;5748:86;;;:::o;5840:112::-;5923:22;5939:5;5923:22;:::i;:::-;5918:3;5911:35;5840:112;;:::o;5958:214::-;6047:4;6085:2;6074:9;6070:18;6062:26;;6098:67;6162:1;6151:9;6147:17;6138:6;6098:67;:::i;:::-;5958:214;;;;:::o;6178:329::-;6237:6;6286:2;6274:9;6265:7;6261:23;6257:32;6254:119;;;6292:79;;:::i;:::-;6254:119;6412:1;6437:53;6482:7;6473:6;6462:9;6458:22;6437:53;:::i;:::-;6427:63;;6383:117;6178:329;;;;:::o;6513:474::-;6581:6;6589;6638:2;6626:9;6617:7;6613:23;6609:32;6606:119;;;6644:79;;:::i;:::-;6606:119;6764:1;6789:53;6834:7;6825:6;6814:9;6810:22;6789:53;:::i;:::-;6779:63;;6735:117;6891:2;6917:53;6962:7;6953:6;6942:9;6938:22;6917:53;:::i;:::-;6907:63;;6862:118;6513:474;;;;;:::o;6993:116::-;7063:21;7078:5;7063:21;:::i;:::-;7056:5;7053:32;7043:60;;7099:1;7096;7089:12;7043:60;6993:116;:::o;7115:133::-;7158:5;7196:6;7183:20;7174:29;;7212:30;7236:5;7212:30;:::i;:::-;7115:133;;;;:::o;7254:468::-;7319:6;7327;7376:2;7364:9;7355:7;7351:23;7347:32;7344:119;;;7382:79;;:::i;:::-;7344:119;7502:1;7527:53;7572:7;7563:6;7552:9;7548:22;7527:53;:::i;:::-;7517:63;;7473:117;7629:2;7655:50;7697:7;7688:6;7677:9;7673:22;7655:50;:::i;:::-;7645:60;;7600:115;7254:468;;;;;:::o;7728:180::-;7776:77;7773:1;7766:88;7873:4;7870:1;7863:15;7897:4;7894:1;7887:15;7914:320;7958:6;7995:1;7989:4;7985:12;7975:22;;8042:1;8036:4;8032:12;8063:18;8053:81;;8119:4;8111:6;8107:17;8097:27;;8053:81;8181:2;8173:6;8170:14;8150:18;8147:38;8144:84;;8200:18;;:::i;:::-;8144:84;7965:269;7914:320;;;:::o;8240:180::-;8288:77;8285:1;8278:88;8385:4;8382:1;8375:15;8409:4;8406:1;8399:15;8426:191;8466:3;8485:20;8503:1;8485:20;:::i;:::-;8480:25;;8519:20;8537:1;8519:20;:::i;:::-;8514:25;;8562:1;8559;8555:9;8548:16;;8583:3;8580:1;8577:10;8574:36;;;8590:18;;:::i;:::-;8574:36;8426:191;;;;:::o;8623:182::-;8763:34;8759:1;8751:6;8747:14;8740:58;8623:182;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8811:366;;;:::o;9183:419::-;9349:4;9387:2;9376:9;9372:18;9364:26;;9436:9;9430:4;9426:20;9422:1;9411:9;9407:17;9400:47;9464:131;9590:4;9464:131;:::i;:::-;9456:139;;9183:419;;;:::o;9608:224::-;9748:34;9744:1;9736:6;9732:14;9725:58;9817:7;9812:2;9804:6;9800:15;9793:32;9608:224;:::o;9838:366::-;9980:3;10001:67;10065:2;10060:3;10001:67;:::i;:::-;9994:74;;10077:93;10166:3;10077:93;:::i;:::-;10195:2;10190:3;10186:12;10179:19;;9838:366;;;:::o;10210:419::-;10376:4;10414:2;10403:9;10399:18;10391:26;;10463:9;10457:4;10453:20;10449:1;10438:9;10434:17;10427:47;10491:131;10617:4;10491:131;:::i;:::-;10483:139;;10210:419;;;:::o;10635:225::-;10775:34;10771:1;10763:6;10759:14;10752:58;10844:8;10839:2;10831:6;10827:15;10820:33;10635:225;:::o;10866:366::-;11008:3;11029:67;11093:2;11088:3;11029:67;:::i;:::-;11022:74;;11105:93;11194:3;11105:93;:::i;:::-;11223:2;11218:3;11214:12;11207:19;;10866:366;;;:::o;11238:419::-;11404:4;11442:2;11431:9;11427:18;11419:26;;11491:9;11485:4;11481:20;11477:1;11466:9;11462:17;11455:47;11519:131;11645:4;11519:131;:::i;:::-;11511:139;;11238:419;;;:::o;11663:223::-;11803:34;11799:1;11791:6;11787:14;11780:58;11872:6;11867:2;11859:6;11855:15;11848:31;11663:223;:::o;11892:366::-;12034:3;12055:67;12119:2;12114:3;12055:67;:::i;:::-;12048:74;;12131:93;12220:3;12131:93;:::i;:::-;12249:2;12244:3;12240:12;12233:19;;11892:366;;;:::o;12264:419::-;12430:4;12468:2;12457:9;12453:18;12445:26;;12517:9;12511:4;12507:20;12503:1;12492:9;12488:17;12481:47;12545:131;12671:4;12545:131;:::i;:::-;12537:139;;12264:419;;;:::o;12689:221::-;12829:34;12825:1;12817:6;12813:14;12806:58;12898:4;12893:2;12885:6;12881:15;12874:29;12689:221;:::o;12916:366::-;13058:3;13079:67;13143:2;13138:3;13079:67;:::i;:::-;13072:74;;13155:93;13244:3;13155:93;:::i;:::-;13273:2;13268:3;13264:12;13257:19;;12916:366;;;:::o;13288:419::-;13454:4;13492:2;13481:9;13477:18;13469:26;;13541:9;13535:4;13531:20;13527:1;13516:9;13512:17;13505:47;13569:131;13695:4;13569:131;:::i;:::-;13561:139;;13288:419;;;:::o;13713:179::-;13853:31;13849:1;13841:6;13837:14;13830:55;13713:179;:::o;13898:366::-;14040:3;14061:67;14125:2;14120:3;14061:67;:::i;:::-;14054:74;;14137:93;14226:3;14137:93;:::i;:::-;14255:2;14250:3;14246:12;14239:19;;13898:366;;;:::o;14270:419::-;14436:4;14474:2;14463:9;14459:18;14451:26;;14523:9;14517:4;14513:20;14509:1;14498:9;14494:17;14487:47;14551:131;14677:4;14551:131;:::i;:::-;14543:139;;14270:419;;;:::o;14695:224::-;14835:34;14831:1;14823:6;14819:14;14812:58;14904:7;14899:2;14891:6;14887:15;14880:32;14695:224;:::o;14925:366::-;15067:3;15088:67;15152:2;15147:3;15088:67;:::i;:::-;15081:74;;15164:93;15253:3;15164:93;:::i;:::-;15282:2;15277:3;15273:12;15266:19;;14925:366;;;:::o;15297:419::-;15463:4;15501:2;15490:9;15486:18;15478:26;;15550:9;15544:4;15540:20;15536:1;15525:9;15521:17;15514:47;15578:131;15704:4;15578:131;:::i;:::-;15570:139;;15297:419;;;:::o;15722:222::-;15862:34;15858:1;15850:6;15846:14;15839:58;15931:5;15926:2;15918:6;15914:15;15907:30;15722:222;:::o;15950:366::-;16092:3;16113:67;16177:2;16172:3;16113:67;:::i;:::-;16106:74;;16189:93;16278:3;16189:93;:::i;:::-;16307:2;16302:3;16298:12;16291:19;;15950:366;;;:::o;16322:419::-;16488:4;16526:2;16515:9;16511:18;16503:26;;16575:9;16569:4;16565:20;16561:1;16550:9;16546:17;16539:47;16603:131;16729:4;16603:131;:::i;:::-;16595:139;;16322:419;;;:::o;16747:225::-;16887:34;16883:1;16875:6;16871:14;16864:58;16956:8;16951:2;16943:6;16939:15;16932:33;16747:225;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:348::-;17815:7;17838:20;17856:1;17838:20;:::i;:::-;17833:25;;17872:20;17890:1;17872:20;:::i;:::-;17867:25;;18060:1;17992:66;17988:74;17985:1;17982:81;17977:1;17970:9;17963:17;17959:105;17956:131;;;18067:18;;:::i;:::-;17956:131;18115:1;18112;18108:9;18097:20;;17775:348;;;;:::o;18129:180::-;18177:77;18174:1;18167:88;18274:4;18271:1;18264:15;18298:4;18295:1;18288:15;18315:185;18355:1;18372:20;18390:1;18372:20;:::i;:::-;18367:25;;18406:20;18424:1;18406:20;:::i;:::-;18401:25;;18445:1;18435:35;;18450:18;;:::i;:::-;18435:35;18492:1;18489;18485:9;18480:14;;18315:185;;;;:::o;18506:194::-;18546:4;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18600:20;18618:1;18600:20;:::i;:::-;18595:25;;18644:1;18641;18637:9;18629:17;;18668:1;18662:4;18659:11;18656:37;;;18673:18;;:::i;:::-;18656:37;18506:194;;;;:::o;18706:442::-;18855:4;18893:2;18882:9;18878:18;18870:26;;18906:71;18974:1;18963:9;18959:17;18950:6;18906:71;:::i;:::-;18987:72;19055:2;19044:9;19040:18;19031:6;18987:72;:::i;:::-;19069;19137:2;19126:9;19122:18;19113:6;19069:72;:::i;:::-;18706:442;;;;;;:::o;19154:180::-;19202:77;19199:1;19192:88;19299:4;19296:1;19289:15;19323:4;19320:1;19313:15;19340:180;19388:77;19385:1;19378:88;19485:4;19482:1;19475:15;19509:4;19506:1;19499:15;19526:143;19583:5;19614:6;19608:13;19599:22;;19630:33;19657:5;19630:33;:::i;:::-;19526:143;;;;:::o;19675:351::-;19745:6;19794:2;19782:9;19773:7;19769:23;19765:32;19762:119;;;19800:79;;:::i;:::-;19762:119;19920:1;19945:64;20001:7;19992:6;19981:9;19977:22;19945:64;:::i;:::-;19935:74;;19891:128;19675:351;;;;:::o;20032:85::-;20077:7;20106:5;20095:16;;20032:85;;;:::o;20123:158::-;20181:9;20214:61;20232:42;20241:32;20267:5;20241:32;:::i;:::-;20232:42;:::i;:::-;20214:61;:::i;:::-;20201:74;;20123:158;;;:::o;20287:147::-;20382:45;20421:5;20382:45;:::i;:::-;20377:3;20370:58;20287:147;;:::o;20440:114::-;20507:6;20541:5;20535:12;20525:22;;20440:114;;;:::o;20560:184::-;20659:11;20693:6;20688:3;20681:19;20733:4;20728:3;20724:14;20709:29;;20560:184;;;;:::o;20750:132::-;20817:4;20840:3;20832:11;;20870:4;20865:3;20861:14;20853:22;;20750:132;;;:::o;20888:108::-;20965:24;20983:5;20965:24;:::i;:::-;20960:3;20953:37;20888:108;;:::o;21002:179::-;21071:10;21092:46;21134:3;21126:6;21092:46;:::i;:::-;21170:4;21165:3;21161:14;21147:28;;21002:179;;;;:::o;21187:113::-;21257:4;21289;21284:3;21280:14;21272:22;;21187:113;;;:::o;21336:732::-;21455:3;21484:54;21532:5;21484:54;:::i;:::-;21554:86;21633:6;21628:3;21554:86;:::i;:::-;21547:93;;21664:56;21714:5;21664:56;:::i;:::-;21743:7;21774:1;21759:284;21784:6;21781:1;21778:13;21759:284;;;21860:6;21854:13;21887:63;21946:3;21931:13;21887:63;:::i;:::-;21880:70;;21973:60;22026:6;21973:60;:::i;:::-;21963:70;;21819:224;21806:1;21803;21799:9;21794:14;;21759:284;;;21763:14;22059:3;22052:10;;21460:608;;;21336:732;;;;:::o;22074:831::-;22337:4;22375:3;22364:9;22360:19;22352:27;;22389:71;22457:1;22446:9;22442:17;22433:6;22389:71;:::i;:::-;22470:80;22546:2;22535:9;22531:18;22522:6;22470:80;:::i;:::-;22597:9;22591:4;22587:20;22582:2;22571:9;22567:18;22560:48;22625:108;22728:4;22719:6;22625:108;:::i;:::-;22617:116;;22743:72;22811:2;22800:9;22796:18;22787:6;22743:72;:::i;:::-;22825:73;22893:3;22882:9;22878:19;22869:6;22825:73;:::i;:::-;22074:831;;;;;;;;:::o;22911:807::-;23160:4;23198:3;23187:9;23183:19;23175:27;;23212:71;23280:1;23269:9;23265:17;23256:6;23212:71;:::i;:::-;23293:72;23361:2;23350:9;23346:18;23337:6;23293:72;:::i;:::-;23375:80;23451:2;23440:9;23436:18;23427:6;23375:80;:::i;:::-;23465;23541:2;23530:9;23526:18;23517:6;23465:80;:::i;:::-;23555:73;23623:3;23612:9;23608:19;23599:6;23555:73;:::i;:::-;23638;23706:3;23695:9;23691:19;23682:6;23638:73;:::i;:::-;22911:807;;;;;;;;;:::o;23724:143::-;23781:5;23812:6;23806:13;23797:22;;23828:33;23855:5;23828:33;:::i;:::-;23724:143;;;;:::o;23873:663::-;23961:6;23969;23977;24026:2;24014:9;24005:7;24001:23;23997:32;23994:119;;;24032:79;;:::i;:::-;23994:119;24152:1;24177:64;24233:7;24224:6;24213:9;24209:22;24177:64;:::i;:::-;24167:74;;24123:128;24290:2;24316:64;24372:7;24363:6;24352:9;24348:22;24316:64;:::i;:::-;24306:74;;24261:129;24429:2;24455:64;24511:7;24502:6;24491:9;24487:22;24455:64;:::i;:::-;24445:74;;24400:129;23873:663;;;;;:::o
Swarm Source
ipfs://01d21d17d988c42ddbca5a1ce74890beee79ffc6e1b4fa0b4b4fe949688bc971
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.