ETH Price: $2,733.26 (+0.95%)

Token

IntelliQuant AI (IQAI)
 

Overview

Max Total Supply

100,000,000 IQAI

Holders

90

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
655,836.00392675697652 IQAI

Value
$0.00
0x7ecd2e41b5cbb781f41c399aaaf3c41ca18a7547
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:
IQAI

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-08
*/

// SPDX-License-Identifier: MIT

/**

Website: https://intelliquantai.org
Twitter: https://twitter.com/intelliquantai
Telegram: https://t.me/intelliquantai
Whitepaper: https://docs.intelliquantai.org

*/

pragma solidity ^0.8.10;

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 IQAI is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"IntelliQuant AI";
    string private constant _symbol = unicode"IQAI";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 100000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _excemptFeeForTrans;
    mapping (address => bool) private _excemptFeeForQuant;

    uint256 private _taxBuyFee = 25;
    uint256 private _taxSellFee = 15;

    uint256 private _maxTransactionAmount = _totalSupply * 20 / 1000;
    uint256 private _maxWalletSize = _totalSupply * 20 / 1000;
    uint256 private _minQuantAmount = _totalSupply * 7 / 1000000;
    uint256 private _taxSwapQuant = _totalSupply * 1 / 100;

    address payable private _quantReceiver;

    address private _uniPair;
    bool private _inSwapping = false;
    bool private _tradingActive;
    bool private _swapActive = false;

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

    constructor () {
        _quantReceiver = payable(0xeb6A965Fc031b2e11FAD7aa46aa7Bbc770D1958f);
        _balances[_msgSender()] = _totalSupply;
        _excemptFeeForQuant[_quantReceiver] = true;
        _excemptFeeForTrans[owner()] = true;
        _excemptFeeForTrans[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 == _uniPair && to != address(uniswapV2Router) && !_excemptFeeForTrans[to]) {
                taxAmount = amount.mul(_taxBuyFee).div(100);
                require(amount <= _maxTransactionAmount, "_transfer: Exceeds the _maxTransactionAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize.");
            }

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

            // Check if a swap is needed and execute the swap.
            uint256 contractTokenBalance = balanceOf(address(this));
            if (!_inSwapping && to == _uniPair && _swapActive && amount > _minQuantAmount) {
                if (contractTokenBalance >= _taxSwapQuant) {
                    swapTokensForEth(_taxSwapQuant);
                } else if(contractTokenBalance > _minQuantAmount) {
                    swapTokensForEth(contractTokenBalance);
                }
                _quantReceiver.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 startIQTrading() external onlyOwner {    
        require(!_tradingActive, "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
        _uniPair = 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(_uniPair).approve(address(uniswapV2Router), type(uint).max);

        _swapActive = true;
        _tradingActive = true;
    }

    function reduceFees() external onlyOwner {
        _taxBuyFee = 2;
        _taxSellFee = 2;        
    }

    /**
     * @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 {
        _maxTransactionAmount = _totalSupply;
        _maxWalletSize = _totalSupply;
    }

    /**
     * @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":[{"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":"reduceFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startIQTrading","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"},{"stateMutability":"payable","type":"receive"}]

60806040526019600655600f6007556103e86200001f6012600a6200036b565b6200002f906305f5e10062000382565b6200003c90601462000382565b6200004891906200039c565b6008556103e86200005c6012600a6200036b565b6200006c906305f5e10062000382565b6200007990601462000382565b6200008591906200039c565b600955620f42406200009a6012600a6200036b565b620000aa906305f5e10062000382565b620000b790600762000382565b620000c391906200039c565b600a5560646012600a620000d891906200036b565b620000e8906305f5e10062000382565b620000f590600162000382565b6200010191906200039c565b600b55600d805462ff00ff60a01b191690553480156200011f575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b03191673eb6a965fc031b2e11fad7aa46aa7bbc770d1958f179055620001946012600a6200036b565b620001a4906305f5e10062000382565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002356012600a6200036b565b62000245906305f5e10062000382565b60405190815260200160405180910390a3620003bc565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002b057815f19048211156200029457620002946200025c565b80851615620002a257918102915b93841c939080029062000275565b509250929050565b5f82620002c85750600162000365565b81620002d657505f62000365565b8160018114620002ef5760028114620002fa576200031a565b600191505062000365565b60ff8411156200030e576200030e6200025c565b50506001821b62000365565b5060208310610133831016604e8410600b84101617156200033f575081810a62000365565b6200034b838362000270565b805f19048211156200036157620003616200025c565b0290505b92915050565b5f6200037b60ff841683620002b8565b9392505050565b80820281158282048414176200036557620003656200025c565b5f82620003b757634e487b7160e01b5f52601260045260245ffd5b500490565b61162380620003ca5f395ff3fe6080604052600436106100dc575f3560e01c8063715018a61161007c57806395d89b411161005757806395d89b4114610253578063a9059cbb1461027f578063d9cf31de1461029e578063dd62ed3e146102b2575f80fd5b8063715018a614610205578063751039fc146102195780638da5cb5b1461022d575f80fd5b806323b872dd116100b757806323b872dd14610181578063313ce567146101a05780636d0621d1146101bb57806370a08231146101d1575f80fd5b806306fdde03146100e7578063095ea7b31461013057806318160ddd1461015f575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600f81526e496e74656c6c695175616e7420414960881b60208201525b604051610127919061122e565b60405180910390f35b34801561013b575f80fd5b5061014f61014a366004611290565b6102f6565b6040519015158152602001610127565b34801561016a575f80fd5b5061017361030c565b604051908152602001610127565b34801561018c575f80fd5b5061014f61019b3660046112ba565b61032c565b3480156101ab575f80fd5b5060405160128152602001610127565b3480156101c6575f80fd5b506101cf610393565b005b3480156101dc575f80fd5b506101736101eb3660046112f8565b6001600160a01b03165f9081526003602052604090205490565b348015610210575f80fd5b506101cf61074f565b348015610224575f80fd5b506101cf6107c0565b348015610238575f80fd5b505f546040516001600160a01b039091168152602001610127565b34801561025e575f80fd5b506040805180820190915260048152634951414960e01b602082015261011a565b34801561028a575f80fd5b5061014f610299366004611290565b610825565b3480156102a9575f80fd5b506101cf610831565b3480156102bd575f80fd5b506101736102cc366004611313565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610302338484610866565b5060015b92915050565b5f6103196012600a61143e565b610327906305f5e10061144c565b905090565b5f610338848484610989565b6103898433610384856040518060600160405280602881526020016115c6602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ef5565b610866565b5060019392505050565b5f546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc90611463565b60405180910390fd5b600d54600160a81b900460ff161561042b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bc565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556104749030906104666012600a61143e565b610384906305f5e10061144c565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e89190611498565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610547573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056b9190611498565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156105b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d99190611498565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610620816001600160a01b03165f9081526003602052604090205490565b5f806106335f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610699573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906106be91906114b3565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610713573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073791906114de565b50600d805461ffff60a81b191661010160a81b179055565b5f546001600160a01b031633146107785760405162461bcd60e51b81526004016103bc90611463565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146107e95760405162461bcd60e51b81526004016103bc90611463565b6107f56012600a61143e565b610803906305f5e10061144c565b6008556108126012600a61143e565b610820906305f5e10061144c565b600955565b5f610302338484610989565b5f546001600160a01b0316331461085a5760405162461bcd60e51b81526004016103bc90611463565b60026006819055600755565b6001600160a01b0383166108c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166109295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b038216610a4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b5f8111610abb5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bc565b5f80546001600160a01b03858116911614801590610ae657505f546001600160a01b03848116911614155b15610db857600d546001600160a01b038581169116148015610b1657506001546001600160a01b03848116911614155b8015610b3a57506001600160a01b0383165f9081526004602052604090205460ff16155b15610c5157610b5f6064610b5960065485610f2d90919063ffffffff16565b90610fb2565b9050600854821115610bc95760405162461bcd60e51b815260206004820152602d60248201527f5f7472616e736665723a204578636565647320746865205f6d61785472616e7360448201526c30b1ba34b7b720b6b7bab73a1760991b60648201526084016103bc565b60095482610beb856001600160a01b03165f9081526003602052604090205490565b610bf591906114fd565b1115610c515760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bc565b600d546001600160a01b038481169116148015610c7757506001600160a01b0384163014155b15610cf5576001600160a01b0384165f9081526005602052604090205460ff1615610cd857610ca68282610ff3565b6001600160a01b0384165f9081526003602052604081208054909190610ccd9084906114fd565b909155505050505050565b610cf26064610b5960075485610f2d90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610d2b5750600d546001600160a01b038581169116145b8015610d405750600d54600160b01b900460ff165b8015610d4d5750600a5483115b15610db657600b548110610d6b57610d66600b54611034565b610d7e565b600a54811115610d7e57610d7e81611034565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610db4573d5f803e3d5ffd5b505b505b8015610e3057305f90815260036020526040902054610dd790826111a4565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e279085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610e529083610ff3565b6001600160a01b0385165f90815260036020526040902055610e95610e778383610ff3565b6001600160a01b0385165f90815260036020526040902054906111a4565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ede8585610ff3565b60405190815260200160405180910390a350505050565b5f8184841115610f185760405162461bcd60e51b81526004016103bc919061122e565b505f610f248486611510565b95945050505050565b5f825f03610f3c57505f610306565b5f610f47838561144c565b905082610f548583611523565b14610fab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bc565b9392505050565b5f610fab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611202565b5f610fab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ef5565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061107a5761107a611542565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f59190611498565b8160018151811061110857611108611542565b6001600160a01b03928316602091820292909201015260015461112e9130911684610866565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906111669085905f90869030904290600401611556565b5f604051808303815f87803b15801561117d575f80fd5b505af115801561118f573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806111b083856114fd565b905083811015610fab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bc565b5f81836112225760405162461bcd60e51b81526004016103bc919061122e565b505f610f248486611523565b5f6020808352835180828501525f5b818110156112595785810183015185820160400152820161123d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461128d575f80fd5b50565b5f80604083850312156112a1575f80fd5b82356112ac81611279565b946020939093013593505050565b5f805f606084860312156112cc575f80fd5b83356112d781611279565b925060208401356112e781611279565b929592945050506040919091013590565b5f60208284031215611308575f80fd5b8135610fab81611279565b5f8060408385031215611324575f80fd5b823561132f81611279565b9150602083013561133f81611279565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561139857815f190482111561137e5761137e61134a565b8085161561138b57918102915b93841c9390800290611363565b509250929050565b5f826113ae57506001610306565b816113ba57505f610306565b81600181146113d057600281146113da576113f6565b6001915050610306565b60ff8411156113eb576113eb61134a565b50506001821b610306565b5060208310610133831016604e8410600b8410161715611419575081810a610306565b611423838361135e565b805f19048211156114365761143661134a565b029392505050565b5f610fab60ff8416836113a0565b80820281158282048414176103065761030661134a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156114a8575f80fd5b8151610fab81611279565b5f805f606084860312156114c5575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156114ee575f80fd5b81518015158114610fab575f80fd5b808201808211156103065761030661134a565b818103818111156103065761030661134a565b5f8261153d57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156115a45784516001600160a01b03168352938301939183019160010161157f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122017d20d242e7b008c858314f9436c7832d6000562cebdf7f54882b9f9c6a776a164736f6c63430008150033

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c8063715018a61161007c57806395d89b411161005757806395d89b4114610253578063a9059cbb1461027f578063d9cf31de1461029e578063dd62ed3e146102b2575f80fd5b8063715018a614610205578063751039fc146102195780638da5cb5b1461022d575f80fd5b806323b872dd116100b757806323b872dd14610181578063313ce567146101a05780636d0621d1146101bb57806370a08231146101d1575f80fd5b806306fdde03146100e7578063095ea7b31461013057806318160ddd1461015f575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600f81526e496e74656c6c695175616e7420414960881b60208201525b604051610127919061122e565b60405180910390f35b34801561013b575f80fd5b5061014f61014a366004611290565b6102f6565b6040519015158152602001610127565b34801561016a575f80fd5b5061017361030c565b604051908152602001610127565b34801561018c575f80fd5b5061014f61019b3660046112ba565b61032c565b3480156101ab575f80fd5b5060405160128152602001610127565b3480156101c6575f80fd5b506101cf610393565b005b3480156101dc575f80fd5b506101736101eb3660046112f8565b6001600160a01b03165f9081526003602052604090205490565b348015610210575f80fd5b506101cf61074f565b348015610224575f80fd5b506101cf6107c0565b348015610238575f80fd5b505f546040516001600160a01b039091168152602001610127565b34801561025e575f80fd5b506040805180820190915260048152634951414960e01b602082015261011a565b34801561028a575f80fd5b5061014f610299366004611290565b610825565b3480156102a9575f80fd5b506101cf610831565b3480156102bd575f80fd5b506101736102cc366004611313565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f610302338484610866565b5060015b92915050565b5f6103196012600a61143e565b610327906305f5e10061144c565b905090565b5f610338848484610989565b6103898433610384856040518060600160405280602881526020016115c6602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610ef5565b610866565b5060019392505050565b5f546001600160a01b031633146103c55760405162461bcd60e51b81526004016103bc90611463565b60405180910390fd5b600d54600160a81b900460ff161561042b5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b60648201526084016103bc565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556104749030906104666012600a61143e565b610384906305f5e10061144c565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104c4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104e89190611498565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610547573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056b9190611498565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156105b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105d99190611498565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610620816001600160a01b03165f9081526003602052604090205490565b5f806106335f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610699573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906106be91906114b3565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610713573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073791906114de565b50600d805461ffff60a81b191661010160a81b179055565b5f546001600160a01b031633146107785760405162461bcd60e51b81526004016103bc90611463565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146107e95760405162461bcd60e51b81526004016103bc90611463565b6107f56012600a61143e565b610803906305f5e10061144c565b6008556108126012600a61143e565b610820906305f5e10061144c565b600955565b5f610302338484610989565b5f546001600160a01b0316331461085a5760405162461bcd60e51b81526004016103bc90611463565b60026006819055600755565b6001600160a01b0383166108c85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bc565b6001600160a01b0382166109295760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bc565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bc565b6001600160a01b038216610a4f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bc565b5f8111610abb5760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b60648201526084016103bc565b5f80546001600160a01b03858116911614801590610ae657505f546001600160a01b03848116911614155b15610db857600d546001600160a01b038581169116148015610b1657506001546001600160a01b03848116911614155b8015610b3a57506001600160a01b0383165f9081526004602052604090205460ff16155b15610c5157610b5f6064610b5960065485610f2d90919063ffffffff16565b90610fb2565b9050600854821115610bc95760405162461bcd60e51b815260206004820152602d60248201527f5f7472616e736665723a204578636565647320746865205f6d61785472616e7360448201526c30b1ba34b7b720b6b7bab73a1760991b60648201526084016103bc565b60095482610beb856001600160a01b03165f9081526003602052604090205490565b610bf591906114fd565b1115610c515760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b60648201526084016103bc565b600d546001600160a01b038481169116148015610c7757506001600160a01b0384163014155b15610cf5576001600160a01b0384165f9081526005602052604090205460ff1615610cd857610ca68282610ff3565b6001600160a01b0384165f9081526003602052604081208054909190610ccd9084906114fd565b909155505050505050565b610cf26064610b5960075485610f2d90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610d2b5750600d546001600160a01b038581169116145b8015610d405750600d54600160b01b900460ff165b8015610d4d5750600a5483115b15610db657600b548110610d6b57610d66600b54611034565b610d7e565b600a54811115610d7e57610d7e81611034565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610db4573d5f803e3d5ffd5b505b505b8015610e3057305f90815260036020526040902054610dd790826111a4565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e279085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610e529083610ff3565b6001600160a01b0385165f90815260036020526040902055610e95610e778383610ff3565b6001600160a01b0385165f90815260036020526040902054906111a4565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610ede8585610ff3565b60405190815260200160405180910390a350505050565b5f8184841115610f185760405162461bcd60e51b81526004016103bc919061122e565b505f610f248486611510565b95945050505050565b5f825f03610f3c57505f610306565b5f610f47838561144c565b905082610f548583611523565b14610fab5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016103bc565b9392505050565b5f610fab83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611202565b5f610fab83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ef5565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061107a5761107a611542565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156110d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f59190611498565b8160018151811061110857611108611542565b6001600160a01b03928316602091820292909201015260015461112e9130911684610866565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906111669085905f90869030904290600401611556565b5f604051808303815f87803b15801561117d575f80fd5b505af115801561118f573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f806111b083856114fd565b905083811015610fab5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103bc565b5f81836112225760405162461bcd60e51b81526004016103bc919061122e565b505f610f248486611523565b5f6020808352835180828501525f5b818110156112595785810183015185820160400152820161123d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461128d575f80fd5b50565b5f80604083850312156112a1575f80fd5b82356112ac81611279565b946020939093013593505050565b5f805f606084860312156112cc575f80fd5b83356112d781611279565b925060208401356112e781611279565b929592945050506040919091013590565b5f60208284031215611308575f80fd5b8135610fab81611279565b5f8060408385031215611324575f80fd5b823561132f81611279565b9150602083013561133f81611279565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561139857815f190482111561137e5761137e61134a565b8085161561138b57918102915b93841c9390800290611363565b509250929050565b5f826113ae57506001610306565b816113ba57505f610306565b81600181146113d057600281146113da576113f6565b6001915050610306565b60ff8411156113eb576113eb61134a565b50506001821b610306565b5060208310610133831016604e8410600b8410161715611419575081810a610306565b611423838361135e565b805f19048211156114365761143661134a565b029392505050565b5f610fab60ff8416836113a0565b80820281158282048414176103065761030661134a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156114a8575f80fd5b8151610fab81611279565b5f805f606084860312156114c5575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156114ee575f80fd5b81518015158114610fab575f80fd5b808201808211156103065761030661134a565b818103818111156103065761030661134a565b5f8261153d57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156115a45784516001600160a01b03168352938301939183019160010161157f565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122017d20d242e7b008c858314f9436c7832d6000562cebdf7f54882b9f9c6a776a164736f6c63430008150033

Deployed Bytecode Sourcemap

9930:10433:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11667:83;;;;;;;;;;-1:-1:-1;11737:5:0;;;;;;;;;;;;-1:-1:-1;;;11737:5:0;;;;11667:83;;;;;;;:::i;:::-;;;;;;;;13871:161;;;;;;;;;;-1:-1:-1;13871:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13871:161:0;1023:187:1;12266:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12266:100:0;1215:177:1;14391:313:0;;;;;;;;;;-1:-1:-1;14391:313:0;;;;;:::i;:::-;;:::i;12074:83::-;;;;;;;;;;-1:-1:-1;12074:83:0;;10215:2;2000:36:1;;1988:2;1973:18;12074:83:0;1858:184:1;18623:1101:0;;;;;;;;;;;;;:::i;:::-;;12562:119;;;;;;;;;;-1:-1:-1;12562:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12655:18:0;12628:7;12655:18;;;:9;:18;;;;;;;12562:119;7201:148;;;;;;;;;;;;;:::i;20072:138::-;;;;;;;;;;;;;:::i;6651:79::-;;;;;;;;;;-1:-1:-1;6689:7:0;6716:6;6651:79;;-1:-1:-1;;;;;6716:6:0;;;2445:51:1;;2433:2;2418:18;6651:79:0;2299:203:1;11860:87:0;;;;;;;;;;-1:-1:-1;11932:7:0;;;;;;;;;;;;-1:-1:-1;;;11932:7:0;;;;11860:87;;12963:167;;;;;;;;;;-1:-1:-1;12963:167:0;;;;;:::i;:::-;;:::i;19732:108::-;;;;;;;;;;;;;:::i;13421:143::-;;;;;;;;;;-1:-1:-1;13421:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13529:18:0;;;13502:7;13529:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13421:143;13871:161;13946:4;13963:39;630:10;13986:7;13995:6;13963:8;:39::i;:::-;-1:-1:-1;14020:4:0;13871:161;;;;;:::o;12266:100::-;12319:7;10276:13;10215:2;10276;:13;:::i;:::-;10264:25;;:9;:25;:::i;:::-;12339:19;;12266:100;:::o;14391:313::-;14489:4;14506:36;14516:6;14524:9;14535:6;14506:9;:36::i;:::-;14553:121;14562:6;630:10;14584:89;14622:6;14584:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14584:19:0;;;;;;:11;:19;;;;;;;;630:10;14584:33;;;;;;;;;;:37;:89::i;:::-;14553:8;:121::i;:::-;-1:-1:-1;14692:4:0;14391:313;;;;;:::o;18623:1101::-;6863:6;;-1:-1:-1;;;;;6863:6:0;630:10;6863:22;6855:67;;;;-1:-1:-1;;;6855:67:0;;;;;;;:::i;:::-;;;;;;;;;18692:14:::1;::::0;-1:-1:-1;;;18692:14:0;::::1;;;18691:15;18683:64;;;::::0;-1:-1:-1;;;18683:64:0;;5151:2:1;18683:64:0::1;::::0;::::1;5133:21:1::0;5190:2;5170:18;;;5163:30;5229:34;5209:18;;;5202:62;-1:-1:-1;;;5280:18:1;;;5273:34;5324:19;;18683:64:0::1;4949:400:1::0;18683:64:0::1;18802:15;:104:::0;;-1:-1:-1;;;;;;18802:104:0::1;18853:42;18802:104:::0;;::::1;::::0;;;18989:63:::1;::::0;19006:4:::1;::::0;10276:13:::1;10215:2;10276;:13;:::i;:::-;10264:25;::::0;:9:::1;:25;:::i;18989:63::-;19130:15;;;;;;;;;-1:-1:-1::0;;;;;19130:15:0::1;-1:-1:-1::0;;;;;19130:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19112:55:0::1;;19176:4;19183:15;;;;;;;;;-1:-1:-1::0;;;;;19183:15:0::1;-1:-1:-1::0;;;;;19183:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19112:94;::::0;-1:-1:-1;;;;;;19112:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5840:15:1;;;19112:94:0::1;::::0;::::1;5822:34:1::0;5892:15;;5872:18;;;5865:43;5757:18;;19112:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19101:8;:105:::0;;-1:-1:-1;;;;;19101:105:0;;::::1;-1:-1:-1::0;;;;;;19101:105:0;;::::1;;::::0;;;19265:15;::::1;:31;19318:21;19373:4;19393:24;19373:4:::0;-1:-1:-1;;;;;12655:18:0;12628:7;12655:18;;;:9;:18;;;;;;;12562:119;19393:24:::1;19432:1;19448::::0;19464:7:::1;6689::::0;6716:6;-1:-1:-1;;;;;6716:6:0;;6651:79;19464:7:::1;19265:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19265:247:0;;;-1:-1:-1;;;;;6278:15:1;;;19265: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;19486:15:0::1;6492:19:1::0;;;6485:35;6194:19;;19265:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19594:8:0::1;::::0;;19620:15;19587:66:::1;::::0;-1:-1:-1;;;19587:66:0;;-1:-1:-1;;;;;19620:15:0;;::::1;19587:66;::::0;::::1;7016:51:1::0;-1:-1:-1;;7083:18:1;;;7076:34;19594:8:0;::::1;::::0;-1:-1:-1;19587:24:0::1;::::0;6989:18:1;;19587:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;19666:11:0::1;:18:::0;;-1:-1:-1;;;;19695:21:0;-1:-1:-1;;;19695:21:0;;;18623:1101::o;7201:148::-;6863:6;;-1:-1:-1;;;;;6863:6:0;630:10;6863:22;6855:67;;;;-1:-1:-1;;;6855:67:0;;;;;;;:::i;:::-;7308:1:::1;7292:6:::0;;7271:40:::1;::::0;-1:-1:-1;;;;;7292:6:0;;::::1;::::0;7271:40:::1;::::0;7308:1;;7271:40:::1;7339:1;7322:19:::0;;-1:-1:-1;;;;;;7322:19:0::1;::::0;;7201:148::o;20072:138::-;6863:6;;-1:-1:-1;;;;;6863:6:0;630:10;6863:22;6855:67;;;;-1:-1:-1;;;6855:67:0;;;;;;;:::i;:::-;10276:13:::1;10215:2;10276;:13;:::i;:::-;10264:25;::::0;:9:::1;:25;:::i;:::-;20126:21;:36:::0;10276:13:::1;10215:2;10276;:13;:::i;:::-;10264:25;::::0;:9:::1;:25;:::i;:::-;20173:14;:29:::0;20072:138::o;12963:167::-;13041:4;13058:42;630:10;13082:9;13093:6;13058:9;:42::i;19732:108::-;6863:6;;-1:-1:-1;;;;;6863:6:0;630:10;6863:22;6855:67;;;;-1:-1:-1;;;6855:67:0;;;;;;;:::i;:::-;19797:1:::1;19784:10;:14:::0;;;19809:11:::1;:15:::0;19732:108::o;15011:335::-;-1:-1:-1;;;;;15104:19:0;;15096:68;;;;-1:-1:-1;;;15096:68:0;;7605:2:1;15096: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;;15096:68:0;7403:400:1;15096:68:0;-1:-1:-1;;;;;15183:21:0;;15175:68;;;;-1:-1:-1;;;15175:68:0;;8010:2:1;15175: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;;15175:68:0;7808:398:1;15175:68:0;-1:-1:-1;;;;;15254:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15306:32;;1361:25:1;;;15306:32:0;;1334:18:1;15306:32:0;;;;;;;15011:335;;;:::o;15624:2366::-;-1:-1:-1;;;;;15712:18:0;;15704:68;;;;-1:-1:-1;;;15704:68:0;;8413:2:1;15704: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;;15704:68:0;8211:401:1;15704:68:0;-1:-1:-1;;;;;15791:16:0;;15783:64;;;;-1:-1:-1;;;15783:64:0;;8819:2:1;15783: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;;15783:64:0;8617:399:1;15783:64:0;15875:1;15866:6;:10;15858:75;;;;-1:-1:-1;;;15858:75:0;;9223:2:1;15858: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;;15858:75:0;9021:416:1;15858:75:0;15946:17;6716:6;;-1:-1:-1;;;;;16073:15:0;;;6716:6;;16073:15;;;;:32;;-1:-1:-1;6689:7:0;6716:6;-1:-1:-1;;;;;16092:13:0;;;6716:6;;16092:13;;16073:32;16069:1429;;;16221:8;;-1:-1:-1;;;;;16213:16:0;;;16221:8;;16213:16;:50;;;;-1:-1:-1;16247:15:0;;-1:-1:-1;;;;;16233:30:0;;;16247:15;;16233:30;;16213:50;:78;;;;-1:-1:-1;;;;;;16268:23:0;;;;;;:19;:23;;;;;;;;16267:24;16213:78;16209:379;;;16324:31;16351:3;16324:22;16335:10;;16324:6;:10;;:22;;;;:::i;:::-;:26;;:31::i;:::-;16312:43;;16392:21;;16382:6;:31;;16374:89;;;;-1:-1:-1;;;16374:89:0;;9644:2:1;16374:89:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:34;9702:18;;;9695:62;-1:-1:-1;;;9773:18:1;;;9766:43;9826:19;;16374:89:0;9442:409:1;16374:89:0;16516:14;;16506:6;16490:13;16500:2;-1:-1:-1;;;;;12655:18:0;12628:7;12655:18;;;:9;:18;;;;;;;12562:119;16490:13;:22;;;;:::i;:::-;:40;;16482:90;;;;-1:-1:-1;;;16482:90:0;;10188:2:1;16482:90:0;;;10170:21:1;10227:2;10207:18;;;10200:30;10266:34;10246:18;;;10239:62;-1:-1:-1;;;10317:18:1;;;10310:35;10362:19;;16482:90:0;9986:401:1;16482:90:0;16700:8;;-1:-1:-1;;;;;16694:14:0;;;16700:8;;16694:14;:39;;;;-1:-1:-1;;;;;;16712:21:0;;16728:4;16712:21;;16694:39;16690:222;;;-1:-1:-1;;;;;16757:25:0;;;;;;:19;:25;;;;;;;;16754:80;;;16803:21;:6;16814:9;16803:10;:21::i;:::-;-1:-1:-1;;;;;16786:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15624:2366:0:o;16754:80::-;16864:32;16892:3;16864:23;16875:11;;16864:6;:10;;:23;;;;:::i;:32::-;16852:44;;16690:222;17041:4;16992:28;12655:18;;;:9;:18;;;;;;17067:11;;-1:-1:-1;;;17067:11:0;;;;17066:12;:30;;;;-1:-1:-1;17088:8:0;;-1:-1:-1;;;;;17082:14:0;;;17088:8;;17082:14;17066:30;:45;;;;-1:-1:-1;17100:11:0;;-1:-1:-1;;;17100:11:0;;;;17066:45;:73;;;;;17124:15;;17115:6;:24;17066:73;17062:425;;;17188:13;;17164:20;:37;17160:247;;17226:31;17243:13;;17226:16;:31::i;:::-;17160:247;;;17309:15;;17286:20;:38;17283:124;;;17349:38;17366:20;17349:16;:38::i;:::-;17425:14;;:46;;-1:-1:-1;;;;;17425:14:0;;;;17449:21;17425:46;;;;;:14;:46;:14;:46;17449:21;17425:14;:46;;;;;;;;;;;;;;;;;;;;;17062:425;16107:1391;16069:1429;17585:13;;17581:172;;17660:4;17642:24;;;;:9;:24;;;;;;:39;;17671:9;17642:28;:39::i;:::-;17633:4;17615:24;;;;:9;:24;;;;;;;:66;;;;17701:40;;-1:-1:-1;;;;;17701:40:0;;;;;;;17731:9;1361:25:1;;1349:2;1334:18;;1215:177;17701:40:0;;;;;;;;17581:172;-1:-1:-1;;;;;17831:15:0;;;;;;:9;:15;;;;;;:27;;17851:6;17831:19;:27::i;:::-;-1:-1:-1;;;;;17813:15:0;;;;;;:9;:15;;;;;:45;17885:40;17903:21;:6;17914:9;17903:10;:21::i;:::-;-1:-1:-1;;;;;17885:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;17869:13:0;;;;;;;:9;:13;;;;;:56;;;;17941:41;;;17960:21;:6;17971:9;17960:10;:21::i;:::-;17941:41;;1361:25:1;;;1349:2;1334:18;17941:41:0;;;;;;;15693:2297;15624:2366;;;:::o;4550:190::-;4636:7;4672:12;4664:6;;;;4656:29;;;;-1:-1:-1;;;4656:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4696:9:0;4708:5;4712:1;4708;:5;:::i;:::-;4696:17;4550:190;-1:-1:-1;;;;;4550:190:0:o;4980:246::-;5038:7;5062:1;5067;5062:6;5058:47;;-1:-1:-1;5092:1:0;5085:8;;5058:47;5115:9;5127:5;5131:1;5127;:5;:::i;:::-;5115:17;-1:-1:-1;5160:1:0;5151:5;5155:1;5115:17;5151:5;:::i;:::-;:10;5143:56;;;;-1:-1:-1;;;5143:56:0;;10949:2:1;5143:56:0;;;10931:21:1;10988:2;10968:18;;;10961:30;11027:34;11007:18;;;11000:62;-1:-1:-1;;;11078:18:1;;;11071:31;11119:19;;5143:56:0;10747:397:1;5143:56:0;5217:1;4980:246;-1:-1:-1;;;4980:246:0:o;5432:132::-;5490:7;5517:39;5521:1;5524;5517:39;;;;;;;;;;;;;;;;;:3;:39::i;4075:136::-;4133:7;4160:43;4164:1;4167;4160:43;;;;;;;;;;;;;;;;;:3;:43::i;18128:483::-;11117:11;:18;;-1:-1:-1;;;;11117:18:0;-1:-1:-1;;;11117:18:0;;;18230:16:::1;::::0;;18244:1:::1;18230:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18230:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18230:16:0::1;18206:40;;18275:4;18257;18262:1;18257:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18257:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18301:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18301:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18257:7;;18301:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18291:4;18296:1;18291:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18291:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18366:15:::1;::::0;18334:62:::1;::::0;18351:4:::1;::::0;18366:15:::1;18384:11:::0;18334:8:::1;:62::i;:::-;18407:15;::::0;:196:::1;::::0;-1:-1:-1;;;18407:196:0;;-1:-1:-1;;;;;18407:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18488:11;;18407:15:::1;::::0;18530:4;;18557::::1;::::0;18577:15:::1;::::0;18407:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11158:11:0;:19;;-1:-1:-1;;;;11158:19:0;;;-1:-1:-1;;;;18128:483:0:o;3639:179::-;3697:7;;3729:5;3733:1;3729;:5;:::i;:::-;3717:17;;3758:1;3753;:6;;3745:46;;;;-1:-1:-1;;;3745:46:0;;12600:2:1;3745:46:0;;;12582:21:1;12639:2;12619:18;;;12612:30;12678:29;12658:18;;;12651:57;12725:18;;3745:46:0;12398:351:1;5852:189:0;5938:7;5973:12;5966:5;5958:28;;;;-1:-1:-1;;;5958:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5997:9:0;6009:5;6013:1;6009;: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:127::-;2961:10;2956:3;2952:20;2949:1;2942:31;2992:4;2989:1;2982:15;3016:4;3013:1;3006:15;3032:422;3121:1;3164:5;3121:1;3178:270;3199:7;3189:8;3186:21;3178:270;;;3258:4;3254:1;3250:6;3246:17;3240:4;3237:27;3234:53;;;3267:18;;:::i;:::-;3317:7;3307:8;3303:22;3300:55;;;3337:16;;;;3300:55;3416:22;;;;3376:15;;;;3178:270;;;3182:3;3032:422;;;;;:::o;3459:806::-;3508:5;3538:8;3528:80;;-1:-1:-1;3579:1:1;3593:5;;3528:80;3627:4;3617:76;;-1:-1:-1;3664:1:1;3678:5;;3617:76;3709:4;3727:1;3722:59;;;;3795:1;3790:130;;;;3702:218;;3722:59;3752:1;3743:10;;3766:5;;;3790:130;3827:3;3817:8;3814:17;3811:43;;;3834:18;;:::i;:::-;-1:-1:-1;;3890:1:1;3876:16;;3905:5;;3702:218;;4004:2;3994:8;3991:16;3985:3;3979:4;3976:13;3972:36;3966:2;3956:8;3953:16;3948:2;3942:4;3939:12;3935:35;3932:77;3929:159;;;-1:-1:-1;4041:19:1;;;4073:5;;3929:159;4120:34;4145:8;4139:4;4120:34;:::i;:::-;4190:6;4186:1;4182:6;4178:19;4169:7;4166:32;4163:58;;;4201:18;;:::i;:::-;4239:20;;3459:806;-1:-1:-1;;;3459:806:1:o;4270:140::-;4328:5;4357:47;4398:4;4388:8;4384:19;4378:4;4357:47;:::i;4415:168::-;4488:9;;;4519;;4536:15;;;4530:22;;4516:37;4506:71;;4557:18;;:::i;4588:356::-;4790:2;4772:21;;;4809:18;;;4802:30;4868:34;4863:2;4848:18;;4841:62;4935:2;4920:18;;4588:356::o;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;9856:125;9921:9;;;9942:10;;;9939:36;;;9955:18;;:::i;10392:128::-;10459:9;;;10480:11;;;10477:37;;;10494:18;;:::i;10525:217::-;10565:1;10591;10581:132;;10635:10;10630:3;10626:20;10623:1;10616:31;10670:4;10667:1;10660:15;10698:4;10695:1;10688:15;10581:132;-1:-1:-1;10727:9:1;;10525:217::o;11281:127::-;11342:10;11337:3;11333:20;11330:1;11323:31;11373:4;11370:1;11363:15;11397:4;11394:1;11387:15;11413:980;11675:4;11723:3;11712:9;11708:19;11754:6;11743:9;11736:25;11780:2;11818:6;11813:2;11802:9;11798:18;11791:34;11861:3;11856:2;11845:9;11841:18;11834:31;11885:6;11920;11914:13;11951:6;11943;11936:22;11989:3;11978:9;11974:19;11967:26;;12028:2;12020:6;12016:15;12002:29;;12049:1;12059:195;12073:6;12070:1;12067:13;12059:195;;;12138:13;;-1:-1:-1;;;;;12134:39:1;12122:52;;12229:15;;;;12194:12;;;;12170:1;12088:9;12059:195;;;-1:-1:-1;;;;;;;12310:32:1;;;;12305:2;12290:18;;12283:60;-1:-1:-1;;;12374:3:1;12359:19;12352:35;12271:3;11413:980;-1:-1:-1;;;11413:980:1:o

Swarm Source

ipfs://17d20d242e7b008c858314f9436c7832d6000562cebdf7f54882b9f9c6a776a1
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.