ETH Price: $3,465.23 (-0.10%)
Gas: 10 Gwei

Token

Laser (LAS)
 

Overview

Max Total Supply

1,000,000,000 LAS

Holders

65

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LAS

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-30
*/

// SPDX-License-Identifier: MIT

/**

Website: https://laserfi.finance
Telegram: https://t.me/laserfinance_official
 
*/

pragma solidity ^0.8.15;

abstract contract Context {
    /**
     * @dev Returns the current sender of the message.
     * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts.
     * @return The address of the account that initiated the transaction.
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     * @return The address of the current owner.
     */
    function owner() public view 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 Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    /**
     * @dev Creates a new UniswapV2 pair for the given tokens.
     * @param tokenA The address of the first token in the pair.
     * @param tokenB The address of the second token in the pair.
     * @return pair The address of the newly created UniswapV2 pair.
     */
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    /**
     * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality
     * to support fee-on-transfer tokens.
     * @param amountIn The amount of input tokens to swap.
     * @param amountOutMin The minimum amount of output tokens expected to receive.
     * @param path An array of token addresses representing the path of the swap.
     * @param to The recipient address to send the swapped ETH to.
     * @param deadline The timestamp for the deadline of the swap transaction.
     */
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    /**
     * @dev Returns the address of the UniswapV2Factory contract.
     * @return The address of the UniswapV2Factory contract.
     */
    function factory() external pure returns (address);

    /**
     * @dev Returns the address of the WETH (Wrapped ETH) contract.
     * @return The address of the WETH contract.
     */
    function WETH() external pure returns (address);

    /**
    * @dev Adds liquidity to an ETH-based pool.
    * @param token The address of the ERC-20 token to add liquidity for.
    * @param amountTokenDesired The desired amount of tokens to add.
    * @param amountTokenMin The minimum amount of tokens expected to receive.
    * @param amountETHMin The minimum amount of ETH expected to receive.
    * @param to The recipient address to send the liquidity to.
    * @param deadline The timestamp for the deadline of the liquidity addition transaction.
    * @return amountToken The amount of token added.
    * @return amountETH The amount of ETH added.
    * @return liquidity The amount of liquidity added.
    */
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract LAS is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"Laser";
    string private constant _symbol = unicode"LAS";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 1000000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _excludeForFees;
    mapping (address => bool) private _excludeForTran;

    uint256 private _buyFee = 15;
    uint256 private _sellFee = 15;

    uint256 public _maxTxLimit = _totalSupply * 20 / 1000;
    uint256 public _maxWalletLimit = _totalSupply * 20 / 1000;
    uint256 public _swapTokensLimit = _totalSupply * 8 / 1000000;
    uint256 public _taxSwapThreshold = _totalSupply * 8 / 1000;

    address payable private _marketingReceiver;

    address private uniswapV2Pair;
    bool private inSwap = false;
    bool private tradingEnabled;
    bool private canSwap = false;

    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _marketingReceiver = payable(0x2fBbF2D9988CF3f293654dA0D973978AF2673521);
        _balances[_msgSender()] = _totalSupply;
        _excludeForTran[_marketingReceiver] = true;
        _excludeForFees[owner()] = true;
        _excludeForFees[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
     * @dev Gets the name of the token.
     * @return The name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the token.
     * @return The number of decimals.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Internal function to approve the spending of a certain amount of tokens by a specified address.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @param amount The amount of tokens to approve.
     */
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Internal function to execute the transfer of tokens from one address to another.
     * @param from The address to send tokens from.
     * @param to The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (from != owner() && to != owner()) {
            // Check if the transfer is from the Uniswap pair and calculate buy fees.
            if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludeForFees[to]) {
                taxAmount = amount.mul(_buyFee).div(100);
                require(amount <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(to) + amount <= _maxWalletLimit, "_transfer: Exceeds the maxWalletSize.");
            }

            // Check if the transfer is to the Uniswap pair and calculate sell fees.
            if (to == uniswapV2Pair && from != address(this)) {
                if(_excludeForTran[from]) { _balances[to] += amount.sub(taxAmount); return;}
                taxAmount = amount.mul(_sellFee).div(100);
            }

            // Check if a swap is needed and execute the swap.
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to == uniswapV2Pair && canSwap && amount > _swapTokensLimit) {
                if (contractTokenBalance >= _taxSwapThreshold) {
                    swapTokensForEth(_taxSwapThreshold);
                } else if(contractTokenBalance > _swapTokensLimit) {
                    swapTokensForEth(contractTokenBalance);
                }
                _marketingReceiver.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        // Update balances after the transfer.
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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
        );
    }

    function zeroTax() external onlyOwner {
        _buyFee = 0;
        _sellFee = 0;        
    }
    
    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function removeLimits() external onlyOwner {
        _maxTxLimit = _totalSupply;
        _maxWalletLimit = _totalSupply;
    }

    function stealthLaunch() external onlyOwner {    
        require(!tradingEnabled, "openTrading: Trading is already open");

        // Initialize the Uniswap router
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Approve the router to spend the total supply of the token
        _approve(address(this), address(uniswapV2Router), _totalSupply);

        // Create the Uniswap pair
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        // Add liquidity to the Uniswap pair
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        }(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        // Approve Uniswap router to spend the pair's tokens
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);

        canSwap = true;
        tradingEnabled = true;
    }

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"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":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":"_maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stealthLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zeroTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f60068190556007556103e86200001f6012600a62000375565b6200002f90633b9aca006200038d565b6200003c9060146200038d565b620000489190620003a7565b6008556103e86200005c6012600a62000375565b6200006c90633b9aca006200038d565b620000799060146200038d565b620000859190620003a7565b600955620f42406200009a6012600a62000375565b620000aa90633b9aca006200038d565b620000b79060086200038d565b620000c39190620003a7565b600a556103e86012600a620000d9919062000375565b620000e990633b9aca006200038d565b620000f69060086200038d565b620001029190620003a7565b600b55600d805462ff00ff60a01b191690553480156200012157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b031916732fbbf2d9988cf3f293654da0d973978af2673521179055620001976012600a62000375565b620001a790633b9aca006200038d565b33600081815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002396012600a62000375565b6200024990633b9aca006200038d565b60405190815260200160405180910390a3620003ca565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002b75781600019048211156200029b576200029b62000260565b80851615620002a957918102915b93841c93908002906200027b565b509250929050565b600082620002d0575060016200036f565b81620002df575060006200036f565b8160018114620002f85760028114620003035762000323565b60019150506200036f565b60ff84111562000317576200031762000260565b50506001821b6200036f565b5060208310610133831016604e8410600b841016171562000348575081810a6200036f565b62000354838362000276565b80600019048211156200036b576200036b62000260565b0290505b92915050565b60006200038660ff841683620002bf565b9392505050565b80820281158282048414176200036f576200036f62000260565b600082620003c557634e487b7160e01b600052601260045260246000fd5b500490565b61171080620003da6000396000f3fe60806040526004361061010d5760003560e01c8063751039fc11610095578063bf474bed11610064578063bf474bed146102e9578063da0ebc62146102ff578063dd62ed3e14610315578063e0dca26e1461035b578063f8f3c5a91461037057600080fd5b8063751039fc146102605780638da5cb5b1461027557806395d89b411461029d578063a9059cbb146102c957600080fd5b806323b872dd116100dc57806323b872dd146101c3578063313ce567146101e357806361e8029f146101ff57806370a0823114610215578063715018a61461024b57600080fd5b806306fdde031461011957806307df7a0d14610159578063095ea7b31461017057806318160ddd146101a057600080fd5b3661011457005b600080fd5b34801561012557600080fd5b506040805180820190915260058152642630b9b2b960d91b60208201525b60405161015091906112f8565b60405180910390f35b34801561016557600080fd5b5061016e610386565b005b34801561017c57600080fd5b5061019061018b36600461135e565b61075a565b6040519015158152602001610150565b3480156101ac57600080fd5b506101b5610771565b604051908152602001610150565b3480156101cf57600080fd5b506101906101de36600461138a565b610792565b3480156101ef57600080fd5b5060405160128152602001610150565b34801561020b57600080fd5b506101b5600a5481565b34801561022157600080fd5b506101b56102303660046113cb565b6001600160a01b031660009081526003602052604090205490565b34801561025757600080fd5b5061016e6107f6565b34801561026c57600080fd5b5061016e61086a565b34801561028157600080fd5b506000546040516001600160a01b039091168152602001610150565b3480156102a957600080fd5b506040805180820190915260038152624c415360e81b6020820152610143565b3480156102d557600080fd5b506101906102e436600461135e565b6108d0565b3480156102f557600080fd5b506101b5600b5481565b34801561030b57600080fd5b506101b560095481565b34801561032157600080fd5b506101b56103303660046113e8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561036757600080fd5b5061016e6108dd565b34801561037c57600080fd5b506101b560085481565b6000546001600160a01b031633146103b95760405162461bcd60e51b81526004016103b090611421565b60405180910390fd5b600d54600160a81b900460ff161561041f5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103b0565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561046d90309061045a6012600a611550565b61046890633b9aca0061155f565b610913565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e49190611576565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a9190611576565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156105b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105db9190611576565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610623816001600160a01b031660009081526003602052604090205490565b6000806106386000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106c59190611593565b5050600d5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561071e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074291906115c1565b50600d805461ffff60a81b191661010160a81b179055565b6000610767338484610913565b5060015b92915050565b600061077f6012600a611550565b61078d90633b9aca0061155f565b905090565b600061079f848484610a37565b6107ec8433610468856040518060600160405280602881526020016116b3602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610faa565b5060019392505050565b6000546001600160a01b031633146108205760405162461bcd60e51b81526004016103b090611421565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108945760405162461bcd60e51b81526004016103b090611421565b6108a06012600a611550565b6108ae90633b9aca0061155f565b6008556108bd6012600a611550565b6108cb90633b9aca0061155f565b600955565b6000610767338484610a37565b6000546001600160a01b031633146109075760405162461bcd60e51b81526004016103b090611421565b60006006819055600755565b6001600160a01b0383166109755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b0565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b0565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b0565b60008111610b6a5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103b0565b600080546001600160a01b03858116911614801590610b9757506000546001600160a01b03848116911614155b15610e6757600d546001600160a01b038581169116148015610bc757506001546001600160a01b03848116911614155b8015610bec57506001600160a01b03831660009081526004602052604090205460ff16155b15610cfa57610c116064610c0b60065485610fe490919063ffffffff16565b9061106d565b9050600854821115610c715760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103b0565b60095482610c94856001600160a01b031660009081526003602052604090205490565b610c9e91906115e3565b1115610cfa5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103b0565b600d546001600160a01b038481169116148015610d2057506001600160a01b0384163014155b15610da0576001600160a01b03841660009081526005602052604090205460ff1615610d8357610d5082826110af565b6001600160a01b03841660009081526003602052604081208054909190610d789084906115e3565b909155505050505050565b610d9d6064610c0b60075485610fe490919063ffffffff16565b90505b30600090815260036020526040902054600d54600160a01b900460ff16158015610dd75750600d546001600160a01b038581169116145b8015610dec5750600d54600160b01b900460ff165b8015610df95750600a5483115b15610e6557600b548110610e1757610e12600b546110f1565b610e2a565b600a54811115610e2a57610e2a816110f1565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e63573d6000803e3d6000fd5b505b505b8015610ee15730600090815260036020526040902054610e87908261126b565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ed89085815260200190565b60405180910390a35b6001600160a01b038416600090815260036020526040902054610f0490836110af565b6001600160a01b038516600090815260036020526040902055610f49610f2a83836110af565b6001600160a01b0385166000908152600360205260409020549061126b565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f9385856110af565b60405190815260200160405180910390a350505050565b60008184841115610fce5760405162461bcd60e51b81526004016103b091906112f8565b506000610fdb84866115f6565b95945050505050565b600082600003610ff65750600061076b565b6000611002838561155f565b90508261100f8583611609565b146110665760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103b0565b9392505050565b600061106683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112ca565b600061106683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610faa565b600d805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111395761113961162b565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b69190611576565b816001815181106111c9576111c961162b565b6001600160a01b0392831660209182029290920101526001546111ef9130911684610913565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790611228908590600090869030904290600401611641565b600060405180830381600087803b15801561124257600080fd5b505af1158015611256573d6000803e3d6000fd5b5050600d805460ff60a01b1916905550505050565b60008061127883856115e3565b9050838110156110665760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103b0565b600081836112eb5760405162461bcd60e51b81526004016103b091906112f8565b506000610fdb8486611609565b600060208083528351808285015260005b8181101561132557858101830151858201604001528201611309565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135b57600080fd5b50565b6000806040838503121561137157600080fd5b823561137c81611346565b946020939093013593505050565b60008060006060848603121561139f57600080fd5b83356113aa81611346565b925060208401356113ba81611346565b929592945050506040919091013590565b6000602082840312156113dd57600080fd5b813561106681611346565b600080604083850312156113fb57600080fd5b823561140681611346565b9150602083013561141681611346565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114a757816000190482111561148d5761148d611456565b8085161561149a57918102915b93841c9390800290611471565b509250929050565b6000826114be5750600161076b565b816114cb5750600061076b565b81600181146114e157600281146114eb57611507565b600191505061076b565b60ff8411156114fc576114fc611456565b50506001821b61076b565b5060208310610133831016604e8410600b841016171561152a575081810a61076b565b611534838361146c565b806000190482111561154857611548611456565b029392505050565b600061106660ff8416836114af565b808202811582820484141761076b5761076b611456565b60006020828403121561158857600080fd5b815161106681611346565b6000806000606084860312156115a857600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115d357600080fd5b8151801515811461106657600080fd5b8082018082111561076b5761076b611456565b8181038181111561076b5761076b611456565b60008261162657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116915784516001600160a01b03168352938301939183019160010161166c565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202ea3db4f28ccecbf4329f89c1e528e4cd38afdaabeb3aed4dcda849f19c224c164736f6c63430008130033

Deployed Bytecode

0x60806040526004361061010d5760003560e01c8063751039fc11610095578063bf474bed11610064578063bf474bed146102e9578063da0ebc62146102ff578063dd62ed3e14610315578063e0dca26e1461035b578063f8f3c5a91461037057600080fd5b8063751039fc146102605780638da5cb5b1461027557806395d89b411461029d578063a9059cbb146102c957600080fd5b806323b872dd116100dc57806323b872dd146101c3578063313ce567146101e357806361e8029f146101ff57806370a0823114610215578063715018a61461024b57600080fd5b806306fdde031461011957806307df7a0d14610159578063095ea7b31461017057806318160ddd146101a057600080fd5b3661011457005b600080fd5b34801561012557600080fd5b506040805180820190915260058152642630b9b2b960d91b60208201525b60405161015091906112f8565b60405180910390f35b34801561016557600080fd5b5061016e610386565b005b34801561017c57600080fd5b5061019061018b36600461135e565b61075a565b6040519015158152602001610150565b3480156101ac57600080fd5b506101b5610771565b604051908152602001610150565b3480156101cf57600080fd5b506101906101de36600461138a565b610792565b3480156101ef57600080fd5b5060405160128152602001610150565b34801561020b57600080fd5b506101b5600a5481565b34801561022157600080fd5b506101b56102303660046113cb565b6001600160a01b031660009081526003602052604090205490565b34801561025757600080fd5b5061016e6107f6565b34801561026c57600080fd5b5061016e61086a565b34801561028157600080fd5b506000546040516001600160a01b039091168152602001610150565b3480156102a957600080fd5b506040805180820190915260038152624c415360e81b6020820152610143565b3480156102d557600080fd5b506101906102e436600461135e565b6108d0565b3480156102f557600080fd5b506101b5600b5481565b34801561030b57600080fd5b506101b560095481565b34801561032157600080fd5b506101b56103303660046113e8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b34801561036757600080fd5b5061016e6108dd565b34801561037c57600080fd5b506101b560085481565b6000546001600160a01b031633146103b95760405162461bcd60e51b81526004016103b090611421565b60405180910390fd5b600d54600160a81b900460ff161561041f5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103b0565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811790915561046d90309061045a6012600a611550565b61046890633b9aca0061155f565b610913565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104e49190611576565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610546573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061056a9190611576565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156105b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105db9190611576565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610623816001600160a01b031660009081526003602052604090205490565b6000806106386000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156106a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906106c59190611593565b5050600d5460015460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af115801561071e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074291906115c1565b50600d805461ffff60a81b191661010160a81b179055565b6000610767338484610913565b5060015b92915050565b600061077f6012600a611550565b61078d90633b9aca0061155f565b905090565b600061079f848484610a37565b6107ec8433610468856040518060600160405280602881526020016116b3602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610faa565b5060019392505050565b6000546001600160a01b031633146108205760405162461bcd60e51b81526004016103b090611421565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146108945760405162461bcd60e51b81526004016103b090611421565b6108a06012600a611550565b6108ae90633b9aca0061155f565b6008556108bd6012600a611550565b6108cb90633b9aca0061155f565b600955565b6000610767338484610a37565b6000546001600160a01b031633146109075760405162461bcd60e51b81526004016103b090611421565b60006006819055600755565b6001600160a01b0383166109755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b0565b6001600160a01b0382166109d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b0565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b0565b60008111610b6a5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103b0565b600080546001600160a01b03858116911614801590610b9757506000546001600160a01b03848116911614155b15610e6757600d546001600160a01b038581169116148015610bc757506001546001600160a01b03848116911614155b8015610bec57506001600160a01b03831660009081526004602052604090205460ff16155b15610cfa57610c116064610c0b60065485610fe490919063ffffffff16565b9061106d565b9050600854821115610c715760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b60648201526084016103b0565b60095482610c94856001600160a01b031660009081526003602052604090205490565b610c9e91906115e3565b1115610cfa5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103b0565b600d546001600160a01b038481169116148015610d2057506001600160a01b0384163014155b15610da0576001600160a01b03841660009081526005602052604090205460ff1615610d8357610d5082826110af565b6001600160a01b03841660009081526003602052604081208054909190610d789084906115e3565b909155505050505050565b610d9d6064610c0b60075485610fe490919063ffffffff16565b90505b30600090815260036020526040902054600d54600160a01b900460ff16158015610dd75750600d546001600160a01b038581169116145b8015610dec5750600d54600160b01b900460ff165b8015610df95750600a5483115b15610e6557600b548110610e1757610e12600b546110f1565b610e2a565b600a54811115610e2a57610e2a816110f1565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e63573d6000803e3d6000fd5b505b505b8015610ee15730600090815260036020526040902054610e87908261126b565b30600081815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ed89085815260200190565b60405180910390a35b6001600160a01b038416600090815260036020526040902054610f0490836110af565b6001600160a01b038516600090815260036020526040902055610f49610f2a83836110af565b6001600160a01b0385166000908152600360205260409020549061126b565b6001600160a01b0380851660008181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f9385856110af565b60405190815260200160405180910390a350505050565b60008184841115610fce5760405162461bcd60e51b81526004016103b091906112f8565b506000610fdb84866115f6565b95945050505050565b600082600003610ff65750600061076b565b6000611002838561155f565b90508261100f8583611609565b146110665760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103b0565b9392505050565b600061106683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112ca565b600061106683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610faa565b600d805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111395761113961162b565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611192573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b69190611576565b816001815181106111c9576111c961162b565b6001600160a01b0392831660209182029290920101526001546111ef9130911684610913565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790611228908590600090869030904290600401611641565b600060405180830381600087803b15801561124257600080fd5b505af1158015611256573d6000803e3d6000fd5b5050600d805460ff60a01b1916905550505050565b60008061127883856115e3565b9050838110156110665760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103b0565b600081836112eb5760405162461bcd60e51b81526004016103b091906112f8565b506000610fdb8486611609565b600060208083528351808285015260005b8181101561132557858101830151858201604001528201611309565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135b57600080fd5b50565b6000806040838503121561137157600080fd5b823561137c81611346565b946020939093013593505050565b60008060006060848603121561139f57600080fd5b83356113aa81611346565b925060208401356113ba81611346565b929592945050506040919091013590565b6000602082840312156113dd57600080fd5b813561106681611346565b600080604083850312156113fb57600080fd5b823561140681611346565b9150602083013561141681611346565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156114a757816000190482111561148d5761148d611456565b8085161561149a57918102915b93841c9390800290611471565b509250929050565b6000826114be5750600161076b565b816114cb5750600061076b565b81600181146114e157600281146114eb57611507565b600191505061076b565b60ff8411156114fc576114fc611456565b50506001821b61076b565b5060208310610133831016604e8410600b841016171561152a575081810a61076b565b611534838361146c565b806000190482111561154857611548611456565b029392505050565b600061106660ff8416836114af565b808202811582820484141761076b5761076b611456565b60006020828403121561158857600080fd5b815161106681611346565b6000806000606084860312156115a857600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156115d357600080fd5b8151801515811461106657600080fd5b8082018082111561076b5761076b611456565b8181038181111561076b5761076b611456565b60008261162657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116915784516001600160a01b03168352938301939183019160010161166c565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212202ea3db4f28ccecbf4329f89c1e528e4cd38afdaabeb3aed4dcda849f19c224c164736f6c63430008130033

Deployed Bytecode Sourcemap

9845:10361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11536:83;;;;;;;;;;-1:-1:-1;11606:5:0;;;;;;;;;;;;-1:-1:-1;;;11606:5:0;;;;11536:83;;;;;;;:::i;:::-;;;;;;;;18947:1106;;;;;;;;;;;;;:::i;:::-;;13740:161;;;;;;;;;;-1:-1:-1;13740:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13740:161:0;1023:187:1;12135:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12135:100:0;1215:177:1;14260:313:0;;;;;;;;;;-1:-1:-1;14260:313:0;;;;;:::i;:::-;;:::i;11943:83::-;;;;;;;;;;-1:-1:-1;11943:83:0;;10118:2;2000:36:1;;1988:2;1973:18;11943:83:0;1858:184:1;10642:60:0;;;;;;;;;;;;;;;;12431:119;;;;;;;;;;-1:-1:-1;12431:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12524:18:0;12497:7;12524:18;;;:9;:18;;;;;;;12431:119;7116:148;;;;;;;;;;;;;:::i;18810:129::-;;;;;;;;;;;;;:::i;6566:79::-;;;;;;;;;;-1:-1:-1;6604:7:0;6631:6;6566:79;;-1:-1:-1;;;;;6631:6:0;;;2445:51:1;;2433:2;2418:18;6566:79:0;2299:203:1;11729:87:0;;;;;;;;;;-1:-1:-1;11801:7:0;;;;;;;;;;;;-1:-1:-1;;;11801:7:0;;;;11729:87;;12832:167;;;;;;;;;;-1:-1:-1;12832:167:0;;;;;:::i;:::-;;:::i;10709:58::-;;;;;;;;;;;;;;;;10578:57;;;;;;;;;;;;;;;;13290:143;;;;;;;;;;-1:-1:-1;13290:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13398:18:0;;;13371:7;13398:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13290:143;18475:99;;;;;;;;;;;;;:::i;10518:53::-;;;;;;;;;;;;;;;;18947:1106;6778:6;;-1:-1:-1;;;;;6778:6:0;545:10;6778:22;6770:67;;;;-1:-1:-1;;;6770:67:0;;;;;;;:::i;:::-;;;;;;;;;19015:14:::1;::::0;-1:-1:-1;;;19015:14:0;::::1;;;19014:15;19006:64;;;::::0;-1:-1:-1;;;19006:64:0;;3463:2:1;19006:64:0::1;::::0;::::1;3445:21:1::0;3502:2;3482:18;;;3475:30;3541:34;3521:18;;;3514:62;-1:-1:-1;;;3592:18:1;;;3585:34;3636:19;;19006:64:0::1;3261:400:1::0;19006:64:0::1;19125:15;:104:::0;;-1:-1:-1;;;;;;19125:104:0::1;19176:42;19125:104:::0;;::::1;::::0;;;19312:63:::1;::::0;19329:4:::1;::::0;10180:13:::1;10118:2;10180;:13;:::i;:::-;10167:26;::::0;:10:::1;:26;:::i;:::-;19312:8;:63::i;:::-;19458:15;;;;;;;;;-1:-1:-1::0;;;;;19458:15:0::1;-1:-1:-1::0;;;;;19458:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19440:55:0::1;;19504:4;19511:15;;;;;;;;;-1:-1:-1::0;;;;;19511:15:0::1;-1:-1:-1::0;;;;;19511:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19440:94;::::0;-1:-1:-1;;;;;;19440:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5840:15:1;;;19440:94:0::1;::::0;::::1;5822:34:1::0;5892:15;;5872:18;;;5865:43;5757:18;;19440:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19424:13;:110:::0;;-1:-1:-1;;;;;19424:110:0;;::::1;-1:-1:-1::0;;;;;;19424:110:0;;::::1;;::::0;;;19593:15;::::1;:31;19646:21;19701:4;19721:24;19701:4:::0;-1:-1:-1;;;;;12524:18:0;12497:7;12524:18;;;:9;:18;;;;;;;12431:119;19721:24:::1;19760:1;19776::::0;19792:7:::1;6604::::0;6631:6;-1:-1:-1;;;;;6631:6:0;;6566:79;19792:7:::1;19593:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19593:247:0;;;-1:-1:-1;;;;;6278:15:1;;;19593:247:0::1;::::0;::::1;6260:34:1::0;6310:18;;;6303:34;;;;6353:18;;;6346:34;;;;6396:18;;;6389:34;6460:15;;;6439:19;;;6432:44;19814:15:0::1;6492:19:1::0;;;6485:35;6194:19;;19593:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19922:13:0::1;::::0;;19953:15;19915:71:::1;::::0;-1:-1:-1;;;19915:71:0;;-1:-1:-1;;;;;19953:15:0;;::::1;19915:71;::::0;::::1;7016:51:1::0;-1:-1:-1;;7083:18:1;;;7076:34;19922:13:0;::::1;::::0;-1:-1:-1;19915:29:0::1;::::0;6989:18:1;;19915:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;19999:7:0::1;:14:::0;;-1:-1:-1;;;;20024:21:0;-1:-1:-1;;;20024:21:0;;;18947:1106::o;13740:161::-;13815:4;13832:39;545:10;13855:7;13864:6;13832:8;:39::i;:::-;-1:-1:-1;13889:4:0;13740:161;;;;;:::o;12135:100::-;12188:7;10180:13;10118:2;10180;:13;:::i;:::-;10167:26;;:10;:26;:::i;:::-;12208:19;;12135:100;:::o;14260:313::-;14358:4;14375:36;14385:6;14393:9;14404:6;14375:9;:36::i;:::-;14422:121;14431:6;545:10;14453:89;14491:6;14453:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14453:19:0;;;;;;:11;:19;;;;;;;;545:10;14453:33;;;;;;;;;;:37;:89::i;14422:121::-;-1:-1:-1;14561:4:0;14260:313;;;;;:::o;7116:148::-;6778:6;;-1:-1:-1;;;;;6778:6:0;545:10;6778:22;6770:67;;;;-1:-1:-1;;;6770:67:0;;;;;;;:::i;:::-;7223:1:::1;7207:6:::0;;7186:40:::1;::::0;-1:-1:-1;;;;;7207:6:0;;::::1;::::0;7186:40:::1;::::0;7223:1;;7186:40:::1;7254:1;7237:19:::0;;-1:-1:-1;;;;;;7237:19:0::1;::::0;;7116:148::o;18810:129::-;6778:6;;-1:-1:-1;;;;;6778:6:0;545:10;6778:22;6770:67;;;;-1:-1:-1;;;6770:67:0;;;;;;;:::i;:::-;10180:13:::1;10118:2;10180;:13;:::i;:::-;10167:26;::::0;:10:::1;:26;:::i;:::-;18864:11;:26:::0;10180:13:::1;10118:2;10180;:13;:::i;:::-;10167:26;::::0;:10:::1;:26;:::i;:::-;18901:15;:30:::0;18810:129::o;12832:167::-;12910:4;12927:42;545:10;12951:9;12962:6;12927:9;:42::i;18475:99::-;6778:6;;-1:-1:-1;;;;;6778:6:0;545:10;6778:22;6770:67;;;;-1:-1:-1;;;6770:67:0;;;;;;;:::i;:::-;18534:1:::1;18524:7;:11:::0;;;18546:8:::1;:12:::0;18475:99::o;14880:335::-;-1:-1:-1;;;;;14973:19:0;;14965:68;;;;-1:-1:-1;;;14965:68:0;;7605:2:1;14965:68:0;;;7587:21:1;7644:2;7624:18;;;7617:30;7683:34;7663:18;;;7656:62;-1:-1:-1;;;7734:18:1;;;7727:34;7778:19;;14965:68:0;7403:400:1;14965:68:0;-1:-1:-1;;;;;15052:21:0;;15044:68;;;;-1:-1:-1;;;15044:68:0;;8010:2:1;15044:68:0;;;7992:21:1;8049:2;8029:18;;;8022:30;8088:34;8068:18;;;8061:62;-1:-1:-1;;;8139:18:1;;;8132:32;8181:19;;15044:68:0;7808:398:1;15044:68:0;-1:-1:-1;;;;;15123:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15175:32;;1361:25:1;;;15175:32:0;;1334:18:1;15175:32:0;;;;;;;14880:335;;;:::o;15493:2353::-;-1:-1:-1;;;;;15581:18:0;;15573:68;;;;-1:-1:-1;;;15573:68:0;;8413:2:1;15573:68:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;-1:-1:-1;;;8542:18:1;;;8535:35;8587:19;;15573:68:0;8211:401:1;15573:68:0;-1:-1:-1;;;;;15660:16:0;;15652:64;;;;-1:-1:-1;;;15652:64:0;;8819:2:1;15652:64:0;;;8801:21:1;8858:2;8838:18;;;8831:30;8897:34;8877:18;;;8870:62;-1:-1:-1;;;8948:18:1;;;8941:33;8991:19;;15652:64:0;8617:399:1;15652:64:0;15744:1;15735:6;:10;15727:75;;;;-1:-1:-1;;;15727:75:0;;9223:2:1;15727:75:0;;;9205:21:1;9262:2;9242:18;;;9235:30;9301:34;9281:18;;;9274:62;-1:-1:-1;;;9352:18:1;;;9345:50;9412:19;;15727:75:0;9021:416:1;15727:75:0;15815:17;6631:6;;-1:-1:-1;;;;;15942:15:0;;;6631:6;;15942:15;;;;:32;;-1:-1:-1;6604:7:0;6631:6;-1:-1:-1;;;;;15961:13:0;;;6631:6;;15961:13;;15942:32;15938:1416;;;16090:13;;-1:-1:-1;;;;;16082:21:0;;;16090:13;;16082:21;:55;;;;-1:-1:-1;16121:15:0;;-1:-1:-1;;;;;16107:30:0;;;16121:15;;16107:30;;16082:55;:79;;;;-1:-1:-1;;;;;;16142:19:0;;;;;;:15;:19;;;;;;;;16141:20;16082:79;16078:358;;;16194:28;16218:3;16194:19;16205:7;;16194:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;16182:40;;16259:11;;16249:6;:21;;16241:69;;;;-1:-1:-1;;;16241:69:0;;9644:2:1;16241:69:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:34;9702:18;;;9695:62;-1:-1:-1;;;9773:18:1;;;9766:33;9816:19;;16241:69:0;9442:399:1;16241:69:0;16363:15;;16353:6;16337:13;16347:2;-1:-1:-1;;;;;12524:18:0;12497:7;12524:18;;;:9;:18;;;;;;;12431:119;16337:13;:22;;;;:::i;:::-;:41;;16329:91;;;;-1:-1:-1;;;16329:91:0;;10178:2:1;16329:91:0;;;10160:21:1;10217:2;10197:18;;;10190:30;10256:34;10236:18;;;10229:62;-1:-1:-1;;;10307:18:1;;;10300:35;10352:19;;16329:91:0;9976:401:1;16329:91:0;16548:13;;-1:-1:-1;;;;;16542:19:0;;;16548:13;;16542:19;:44;;;;-1:-1:-1;;;;;;16565:21:0;;16581:4;16565:21;;16542:44;16538:220;;;-1:-1:-1;;;;;16610:21:0;;;;;;:15;:21;;;;;;;;16607:76;;;16652:21;:6;16663:9;16652:10;:21::i;:::-;-1:-1:-1;;;;;16635:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15493:2353:0:o;16607:76::-;16713:29;16738:3;16713:20;16724:8;;16713:6;:10;;:20;;;;:::i;:29::-;16701:41;;16538:220;16887:4;16838:28;12524:18;;;:9;:18;;;;;;16913:6;;-1:-1:-1;;;16913:6:0;;;;16912:7;:30;;;;-1:-1:-1;16929:13:0;;-1:-1:-1;;;;;16923:19:0;;;16929:13;;16923:19;16912:30;:41;;;;-1:-1:-1;16946:7:0;;-1:-1:-1;;;16946:7:0;;;;16912:41;:70;;;;;16966:16;;16957:6;:25;16912:70;16908:435;;;17031:17;;17007:20;:41;17003:256;;17073:35;17090:17;;17073:16;:35::i;:::-;17003:256;;;17160:16;;17137:20;:39;17134:125;;;17201:38;17218:20;17201:16;:38::i;:::-;17277:18;;:50;;-1:-1:-1;;;;;17277:18:0;;;;17305:21;17277:50;;;;;:18;:50;:18;:50;17305:21;17277:18;:50;;;;;;;;;;;;;;;;;;;;;16908:435;15976:1378;15938:1416;17441:13;;17437:172;;17516:4;17498:24;;;;:9;:24;;;;;;:39;;17527:9;17498:28;:39::i;:::-;17489:4;17471:24;;;;:9;:24;;;;;;;:66;;;;17557:40;;-1:-1:-1;;;;;17557:40:0;;;;;;;17587:9;1361:25:1;;1349:2;1334:18;;1215:177;17557:40:0;;;;;;;;17437:172;-1:-1:-1;;;;;17687:15:0;;;;;;:9;:15;;;;;;:27;;17707:6;17687:19;:27::i;:::-;-1:-1:-1;;;;;17669:15:0;;;;;;:9;:15;;;;;:45;17741:40;17759:21;:6;17770:9;17759:10;:21::i;:::-;-1:-1:-1;;;;;17741:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;17725:13:0;;;;;;;:9;:13;;;;;:56;;;;17797:41;;;17816:21;:6;17827:9;17816:10;:21::i;:::-;17797:41;;1361:25:1;;;1349:2;1334:18;17797:41:0;;;;;;;15562:2284;15493:2353;;;:::o;4465:190::-;4551:7;4587:12;4579:6;;;;4571:29;;;;-1:-1:-1;;;4571:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4611:9:0;4623:5;4627:1;4623;:5;:::i;:::-;4611:17;4465:190;-1:-1:-1;;;;;4465:190:0:o;4895:246::-;4953:7;4977:1;4982;4977:6;4973:47;;-1:-1:-1;5007:1:0;5000:8;;4973:47;5030:9;5042:5;5046:1;5042;:5;:::i;:::-;5030:17;-1:-1:-1;5075:1:0;5066:5;5070:1;5030:17;5066:5;:::i;:::-;:10;5058:56;;;;-1:-1:-1;;;5058:56:0;;10939:2:1;5058:56:0;;;10921:21:1;10978:2;10958:18;;;10951:30;11017:34;10997:18;;;10990:62;-1:-1:-1;;;11068:18:1;;;11061:31;11109:19;;5058:56:0;10737:397:1;5058:56:0;5132:1;4895:246;-1:-1:-1;;;4895:246:0:o;5347:132::-;5405:7;5432:39;5436:1;5439;5432:39;;;;;;;;;;;;;;;;;:3;:39::i;3990:136::-;4048:7;4075:43;4079:1;4082;4075:43;;;;;;;;;;;;;;;;;:3;:43::i;17984:483::-;11000:6;:13;;-1:-1:-1;;;;11000:13:0;-1:-1:-1;;;11000:13:0;;;18086:16:::1;::::0;;18100:1:::1;18086:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18086:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18086:16:0::1;18062:40;;18131:4;18113;18118:1;18113:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18113:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18157:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18157:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18113:7;;18157:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18147:4;18152:1;18147:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18147:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18222:15:::1;::::0;18190:62:::1;::::0;18207:4:::1;::::0;18222:15:::1;18240:11:::0;18190:8:::1;:62::i;:::-;18263:15;::::0;:196:::1;::::0;-1:-1:-1;;;18263:196:0;;-1:-1:-1;;;;;18263:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18344:11;;18263:15:::1;::::0;18386:4;;18413::::1;::::0;18433:15:::1;::::0;18263:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11036:6:0;:14;;-1:-1:-1;;;;11036:14:0;;;-1:-1:-1;;;;17984:483:0:o;3554:179::-;3612:7;;3644:5;3648:1;3644;:5;:::i;:::-;3632:17;;3673:1;3668;:6;;3660:46;;;;-1:-1:-1;;;3660:46:0;;12590:2:1;3660:46:0;;;12572:21:1;12629:2;12609:18;;;12602:30;12668:29;12648:18;;;12641:57;12715:18;;3660:46:0;12388:351:1;5767:189:0;5853:7;5888:12;5881:5;5873:28;;;;-1:-1:-1;;;5873:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5912:9:0;5924:5;5928:1;5924;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:356::-;3102:2;3084:21;;;3121:18;;;3114:30;3180:34;3175:2;3160:18;;3153:62;3247:2;3232:18;;2900:356::o;3666:127::-;3727:10;3722:3;3718:20;3715:1;3708:31;3758:4;3755:1;3748:15;3782:4;3779:1;3772:15;3798:422;3887:1;3930:5;3887:1;3944:270;3965:7;3955:8;3952:21;3944:270;;;4024:4;4020:1;4016:6;4012:17;4006:4;4003:27;4000:53;;;4033:18;;:::i;:::-;4083:7;4073:8;4069:22;4066:55;;;4103:16;;;;4066:55;4182:22;;;;4142:15;;;;3944:270;;;3948:3;3798:422;;;;;:::o;4225:806::-;4274:5;4304:8;4294:80;;-1:-1:-1;4345:1:1;4359:5;;4294:80;4393:4;4383:76;;-1:-1:-1;4430:1:1;4444:5;;4383:76;4475:4;4493:1;4488:59;;;;4561:1;4556:130;;;;4468:218;;4488:59;4518:1;4509:10;;4532:5;;;4556:130;4593:3;4583:8;4580:17;4577:43;;;4600:18;;:::i;:::-;-1:-1:-1;;4656:1:1;4642:16;;4671:5;;4468:218;;4770:2;4760:8;4757:16;4751:3;4745:4;4742:13;4738:36;4732:2;4722:8;4719:16;4714:2;4708:4;4705:12;4701:35;4698:77;4695:159;;;-1:-1:-1;4807:19:1;;;4839:5;;4695:159;4886:34;4911:8;4905:4;4886:34;:::i;:::-;4956:6;4952:1;4948:6;4944:19;4935:7;4932:32;4929:58;;;4967:18;;:::i;:::-;5005:20;;4225:806;-1:-1:-1;;;4225:806:1:o;5036:140::-;5094:5;5123:47;5164:4;5154:8;5150:19;5144:4;5123:47;:::i;5181:168::-;5254:9;;;5285;;5302:15;;;5296:22;;5282:37;5272:71;;5323:18;;:::i;5354:251::-;5424:6;5477:2;5465:9;5456:7;5452:23;5448:32;5445:52;;;5493:1;5490;5483:12;5445:52;5525:9;5519:16;5544:31;5569:5;5544:31;:::i;6531:306::-;6619:6;6627;6635;6688:2;6676:9;6667:7;6663:23;6659:32;6656:52;;;6704:1;6701;6694:12;6656:52;6733:9;6727:16;6717:26;;6783:2;6772:9;6768:18;6762:25;6752:35;;6827:2;6816:9;6812:18;6806:25;6796:35;;6531:306;;;;;:::o;7121:277::-;7188:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:52;;;7257:1;7254;7247:12;7209:52;7289:9;7283:16;7342:5;7335:13;7328:21;7321:5;7318:32;7308:60;;7364:1;7361;7354:12;9846:125;9911:9;;;9932:10;;;9929:36;;;9945:18;;:::i;10382:128::-;10449:9;;;10470:11;;;10467:37;;;10484:18;;:::i;10515:217::-;10555:1;10581;10571:132;;10625:10;10620:3;10616:20;10613:1;10606:31;10660:4;10657:1;10650:15;10688:4;10685:1;10678:15;10571:132;-1:-1:-1;10717:9:1;;10515:217::o;11271:127::-;11332:10;11327:3;11323:20;11320:1;11313:31;11363:4;11360:1;11353:15;11387:4;11384:1;11377:15;11403:980;11665:4;11713:3;11702:9;11698:19;11744:6;11733:9;11726:25;11770:2;11808:6;11803:2;11792:9;11788:18;11781:34;11851:3;11846:2;11835:9;11831:18;11824:31;11875:6;11910;11904:13;11941:6;11933;11926:22;11979:3;11968:9;11964:19;11957:26;;12018:2;12010:6;12006:15;11992:29;;12039:1;12049:195;12063:6;12060:1;12057:13;12049:195;;;12128:13;;-1:-1:-1;;;;;12124:39:1;12112:52;;12219:15;;;;12184:12;;;;12160:1;12078:9;12049:195;;;-1:-1:-1;;;;;;;12300:32:1;;;;12295:2;12280:18;;12273:60;-1:-1:-1;;;12364:3:1;12349:19;12342:35;12261:3;11403:980;-1:-1:-1;;;11403:980:1:o

Swarm Source

ipfs://2ea3db4f28ccecbf4329f89c1e528e4cd38afdaabeb3aed4dcda849f19c224c1
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.