ETH Price: $2,483.76 (-1.19%)

Token

InvectAI (InvectAI)
 

Overview

Max Total Supply

1,000,000,000 InvectAI

Holders

168

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
865,085.44751464 InvectAI

Value
$0.00
0xada33052993c788241877c73816126e12694cce4
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:
InvectAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

/**
 *  .----------------.  .-----------------. .----------------.  .----------------.  .----------------.  .----------------.  .----------------.  .----------------. 
 * | .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
 * | |     _____    | || | ____  _____  | || | ____   ____  | || |  _________   | || |     ______   | || |  _________   | || |      __      | || |     _____    | |
 * | |    |_   _|   | || ||_   \|_   _| | || ||_  _| |_  _| | || | |_   ___  |  | || |   .' ___  |  | || | |  _   _  |  | || |     /  \     | || |    |_   _|   | |
 * | |      | |     | || |  |   \ | |   | || |  \ \   / /   | || |   | |_  \_|  | || |  / .'   \_|  | || | |_/ | | \_|  | || |    / /\ \    | || |      | |     | |
 * | |      | |     | || |  | |\ \| |   | || |   \ \ / /    | || |   |  _|  _   | || |  | |         | || |     | |      | || |   / ____ \   | || |      | |     | |
 * | |     _| |_    | || | _| |_\   |_  | || |    \ ' /     | || |  _| |___/ |  | || |  \ `.___.'\  | || |    _| |_     | || | _/ /    \ \_ | || |     _| |_    | |
 * | |    |_____|   | || ||_____|\____| | || |     \_/      | || | |_________|  | || |   `._____.'  | || |   |_____|    | || ||____|  |____|| || |    |_____|   | |
 * | |              | || |              | || |              | || |              | || |              | || |              | || |              | || |              | |
 * | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' |
 * '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------' 
 * InvectAI: Exploring the Synergy of AI and Blockchain
 * Stealth launch
 *
 * Web: https://invect.ai
 * Telegram: https://t.me/invectai
 * Twitter: https://twitter.com/InvectAi
 * Discord: https://discord.gg/5vHTvaCuCx
 * 
 * InvectAI is a revolutionary platform that combines the power of AI and blockchain to create a new realm of creative potential. 
 * With InvectAI, users can generate multimedia content with ease, unleashing their imagination and exploring endless possibilities for content creation.
 * 
 * The platform offers a range of AI-powered solutions for generating multimedia content, including image, animation, voice, lyrics, character, video, and speaking portrait generation. 
 * Users can customize parameters to create stunning visual art and complex animations, compose song lyrics, and generate realistic or fantastical characters in games and social media. 
 * InvectAI's AI solutions also allow for natural-sounding speech and can animate any portrait with expressions and speech.
 * 
 * To make it even easier for users to access the platform's AI solutions, InvectAI offers Discord, Telegram, and Twitter bots, allowing users to generate multimedia content quickly and easily without technical expertise.
 * 
 * AI Image Generation
 * AI Animation Generation
 * AI Voice Generation
 * AI Lyrics Generation
 * AI Character Generation
 * AI Video Generation
 * AI Chat InvectGPT-3
 * AI Speaking Portrait Generation
 * AI Telegram Bots
 * AI Discord Bots
 * AI Twitter Bots
 * AI Developer Solutions API
 * 
 * 1 Billion InvectAI Tokens
 * Tax: 6%
 * A portion of the transaction fees from the InvectAI token will be collected as tax and will be used to pay for the costs associated with developing, maintaining, and improving the AI models, as well as for marketing efforts to promote the adoption of the platform. 
 * This tax mechanism ensures that the InvectAI ecosystem remains financially self-sufficient, while also incentivizing users to hold and use the token.
 *
 * READ MORE:
 * https://invect.ai
*/

pragma solidity 0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    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;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }

}

contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract InvectAI is Context, IERC20, Ownable {
    // INVECT.AI
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private bots;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = false;
    address payable private _taxWallet;

    uint256 private _initialBuyTax=8;
    uint256 private _initialSellTax=14;
    uint256 private _finalBuyTax=6;
    uint256 private _finalSellTax=6;
    uint256 private _reduceBuyTaxAt=1;
    uint256 private _reduceSellTaxAt=10;
    uint256 private _preventSwapBefore=30;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 8;
    uint256 private constant _tTotal = 1000000000 * 10**_decimals;
    string private constant _name = unicode"InvectAI";
    string private constant _symbol = unicode"InvectAI";
    uint256 public _maxTxAmount =   40000000 * 10**_decimals;
    uint256 public _maxWalletSize = 40000000 * 10**_decimals;
    uint256 public _taxSwapThreshold=4000000 * 10**_decimals;
    uint256 public _maxTaxSwap=4000000 * 10**_decimals;
	
	// At InvectAI, we're exploring the potential of connecting two revolutionary technologies: AI and blockchain. 
	// By leveraging the strengths of both, we believe we can create a powerful platform that empowers users to generate and access AI-generated content in a decentralized and transparent manner.

    // Our vision is to create smart contracts on the Ethereum network that will allow anyone to access AI-generated content simply by interacting with the contract. 
	// This approach will provide a secure and transparent way for users to access and utilize AI content without the need for intermediaries. 

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

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

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    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;
    }

    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);
    }

    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 amount must be greater than zero");
        uint256 taxAmount=0;
        if (from != owner() && to != owner()) {
            require(!bots[from] && !bots[to]);
            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);

            if (transferDelayEnabled) {
                  if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
                      require(
                          _holderLastTransferTimestamp[tx.origin] <
                              block.number,
                          "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                      );
                      _holderLastTransferTimestamp[tx.origin] = block.number;
                  }
              }

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
                _buyCount++;
            }

            if(to == uniswapV2Pair && from!= address(this) ){
                taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100);
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to   == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
                swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if(taxAmount>0){
          _balances[address(this)]=_balances[address(this)].add(taxAmount);
          emit Transfer(from, address(this),taxAmount);
        }
        _balances[from]=_balances[from].sub(amount);
        _balances[to]=_balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }


    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    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 removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        transferDelayEnabled=false;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function isBot(address a) public view returns (bool){
      return bots[a];
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }

    

    receive() external payable {}

    function manualSwap() external {
        require(_msgSender()==_taxWallet);
        uint256 tokenBalance=balanceOf(address(this));
        if(tokenBalance>0){
          swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance=address(this).balance;
        if(ethBalance>0){
          sendETHToFee(ethBalance);
        }
    }
}

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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","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":"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805460ff1916815560086007819055600e8082556009839055600a9283556001600b55600c839055601e600d556000905562000042916200034d565b62000052906302625a0062000365565b600f55620000636008600a6200034d565b62000073906302625a0062000365565b601055620000846008600a6200034d565b6200009390623d090062000365565b601155620000a46008600a6200034d565b620000b390623d090062000365565b6012556014805461ffff60a81b19169055348015620000d157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b0319166101003302179055620001386008600a6200034d565b6200014890633b9aca0062000365565b336000908152600160208190526040822092909255600390620001736000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001d73390565b6001600160a01b031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002116008600a6200034d565b6200022190633b9aca0062000365565b60405190815260200160405180910390a36200037f565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200028f57816000190482111562000273576200027362000238565b808516156200028157918102915b93841c939080029062000253565b509250929050565b600082620002a85750600162000347565b81620002b75750600062000347565b8160018114620002d05760028114620002db57620002fb565b600191505062000347565b60ff841115620002ef57620002ef62000238565b50506001821b62000347565b5060208310610133831016604e8410600b841016171562000320575081810a62000347565b6200032c83836200024e565b806000190482111562000343576200034362000238565b0290505b92915050565b60006200035e60ff84168362000297565b9392505050565b808202811582820484141762000347576200034762000238565b6118d9806200038f6000396000f3fe6080604052600436106101235760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610318578063bf474bed14610338578063c876d0b91461034e578063c9567bf914610368578063dd62ed3e1461037d57600080fd5b8063751039fc146102af5780637d1db4a5146102c45780638da5cb5b146102da5780638f9a55c01461030257806395d89b411461012f57600080fd5b8063313ce567116100e7578063313ce567146101f85780633bbac5791461021457806351bc3c851461024d57806370a0823114610264578063715018a61461029a57600080fd5b806306fdde031461012f578063095ea7b31461016f5780630faee56f1461019f57806318160ddd146101c357806323b872dd146101d857600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506040805180820182526008815267496e76656374414960c01b6020820152905161016691906114a8565b60405180910390f35b34801561017b57600080fd5b5061018f61018a36600461150e565b6103c3565b6040519015158152602001610166565b3480156101ab57600080fd5b506101b560125481565b604051908152602001610166565b3480156101cf57600080fd5b506101b56103da565b3480156101e457600080fd5b5061018f6101f336600461153a565b6103fb565b34801561020457600080fd5b5060405160088152602001610166565b34801561022057600080fd5b5061018f61022f36600461157b565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561025957600080fd5b50610262610464565b005b34801561027057600080fd5b506101b561027f36600461157b565b6001600160a01b031660009081526001602052604090205490565b3480156102a657600080fd5b506102626104bc565b3480156102bb57600080fd5b50610262610539565b3480156102d057600080fd5b506101b5600f5481565b3480156102e657600080fd5b506000546040516001600160a01b039091168152602001610166565b34801561030e57600080fd5b506101b560105481565b34801561032457600080fd5b5061018f61033336600461150e565b6105f5565b34801561034457600080fd5b506101b560115481565b34801561035a57600080fd5b5060065461018f9060ff1681565b34801561037457600080fd5b50610262610602565b34801561038957600080fd5b506101b5610398366004611598565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103d03384846109be565b5060015b92915050565b60006103e86008600a6116cb565b6103f690633b9aca006116da565b905090565b6000610408848484610ae2565b61045a84336104558560405180606001604052806028815260200161187c602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611107565b6109be565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b03161461048957600080fd5b3060009081526001602052604090205480156104a8576104a881611141565b4780156104b8576104b8816112bb565b5050565b6000546001600160a01b031633146104ef5760405162461bcd60e51b81526004016104e6906116f1565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105635760405162461bcd60e51b81526004016104e6906116f1565b61056f6008600a6116cb565b61057d90633b9aca006116da565b600f5561058c6008600a6116cb565b61059a90633b9aca006116da565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105d46008600a6116cb565b6105e290633b9aca006116da565b60405190815260200160405180910390a1565b60006103d0338484610ae2565b6000546001600160a01b0316331461062c5760405162461bcd60e51b81526004016104e6906116f1565b601454600160a01b900460ff16156106865760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104e6565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106cf9030906106c16008600a6116cb565b61045590633b9aca006116da565b601360009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107469190611726565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cc9190611726565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610819573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083d9190611726565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610885816001600160a01b031660009081526001602052604090205490565b60008061089a6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610902573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109279190611743565b505060145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a49190611771565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b038216610a815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e6565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b60008111610c0a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104e6565b600080546001600160a01b03858116911614801590610c3757506000546001600160a01b03848116911614155b15610fc4576001600160a01b03841660009081526004602052604090205460ff16158015610c7e57506001600160a01b03831660009081526004602052604090205460ff16155b610c8757600080fd5b610cb36064610cad600b54600e5411610ca257600754610ca6565b6009545b85906112f9565b90611382565b60065490915060ff1615610d9b576013546001600160a01b03848116911614801590610ced57506014546001600160a01b03848116911614155b15610d9b57326000908152600560205260409020544311610d885760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104e6565b3260009081526005602052604090204390555b6014546001600160a01b038581169116148015610dc657506013546001600160a01b03848116911614155b8015610deb57506001600160a01b03831660009081526003602052604090205460ff16155b15610ed357600f54821115610e425760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104e6565b60105482610e65856001600160a01b031660009081526001602052604090205490565b610e6f9190611793565b1115610ebd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104e6565b600e8054906000610ecd836117a6565b91905055505b6014546001600160a01b038481169116148015610ef957506001600160a01b0384163014155b15610f2657610f236064610cad600c54600e5411610f1957600854610ca6565b600a5485906112f9565b90505b30600090815260016020526040902054601454600160a81b900460ff16158015610f5d57506014546001600160a01b038581169116145b8015610f725750601454600160b01b900460ff165b8015610f7f575060115481115b8015610f8e5750600d54600e54115b15610fc257610fb0610fab84610fa6846012546113c4565b6113c4565b611141565b478015610fc057610fc0476112bb565b505b505b801561103e5730600090815260016020526040902054610fe490826113d9565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110359085815260200190565b60405180910390a35b6001600160a01b0384166000908152600160205260409020546110619083611438565b6001600160a01b0385166000908152600160205260409020556110a66110878383611438565b6001600160a01b038516600090815260016020526040902054906113d9565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110f08585611438565b60405190815260200160405180910390a350505050565b6000818484111561112b5760405162461bcd60e51b81526004016104e691906114a8565b50600061113884866117bf565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611189576111896117d2565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112069190611726565b81600181518110611219576112196117d2565b6001600160a01b03928316602091820292909201015260135461123f91309116846109be565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906112789085906000908690309042906004016117e8565b600060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156104b8573d6000803e3d6000fd5b60008260000361130b575060006103d4565b600061131783856116da565b9050826113248583611859565b1461137b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104e6565b9392505050565b600061137b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061147a565b60008183116113d3578261137b565b50919050565b6000806113e68385611793565b90508381101561137b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104e6565b600061137b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611107565b6000818361149b5760405162461bcd60e51b81526004016104e691906114a8565b5060006111388486611859565b600060208083528351808285015260005b818110156114d5578581018301518582016040015282016114b9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461150b57600080fd5b50565b6000806040838503121561152157600080fd5b823561152c816114f6565b946020939093013593505050565b60008060006060848603121561154f57600080fd5b833561155a816114f6565b9250602084013561156a816114f6565b929592945050506040919091013590565b60006020828403121561158d57600080fd5b813561137b816114f6565b600080604083850312156115ab57600080fd5b82356115b6816114f6565b915060208301356115c6816114f6565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611622578160001904821115611608576116086115d1565b8085161561161557918102915b93841c93908002906115ec565b509250929050565b600082611639575060016103d4565b81611646575060006103d4565b816001811461165c576002811461166657611682565b60019150506103d4565b60ff841115611677576116776115d1565b50506001821b6103d4565b5060208310610133831016604e8410600b84101617156116a5575081810a6103d4565b6116af83836115e7565b80600019048211156116c3576116c36115d1565b029392505050565b600061137b60ff84168361162a565b80820281158282048414176103d4576103d46115d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561173857600080fd5b815161137b816114f6565b60008060006060848603121561175857600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561178357600080fd5b8151801515811461137b57600080fd5b808201808211156103d4576103d46115d1565b6000600182016117b8576117b86115d1565b5060010190565b818103818111156103d4576103d46115d1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118385784516001600160a01b031683529383019391830191600101611813565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261187657634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122099529a83b573cfe7fed23104af103e81e736f672da0d74c0806e6b7ce961164164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101235760003560e01c8063751039fc116100a0578063a9059cbb11610064578063a9059cbb14610318578063bf474bed14610338578063c876d0b91461034e578063c9567bf914610368578063dd62ed3e1461037d57600080fd5b8063751039fc146102af5780637d1db4a5146102c45780638da5cb5b146102da5780638f9a55c01461030257806395d89b411461012f57600080fd5b8063313ce567116100e7578063313ce567146101f85780633bbac5791461021457806351bc3c851461024d57806370a0823114610264578063715018a61461029a57600080fd5b806306fdde031461012f578063095ea7b31461016f5780630faee56f1461019f57806318160ddd146101c357806323b872dd146101d857600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506040805180820182526008815267496e76656374414960c01b6020820152905161016691906114a8565b60405180910390f35b34801561017b57600080fd5b5061018f61018a36600461150e565b6103c3565b6040519015158152602001610166565b3480156101ab57600080fd5b506101b560125481565b604051908152602001610166565b3480156101cf57600080fd5b506101b56103da565b3480156101e457600080fd5b5061018f6101f336600461153a565b6103fb565b34801561020457600080fd5b5060405160088152602001610166565b34801561022057600080fd5b5061018f61022f36600461157b565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561025957600080fd5b50610262610464565b005b34801561027057600080fd5b506101b561027f36600461157b565b6001600160a01b031660009081526001602052604090205490565b3480156102a657600080fd5b506102626104bc565b3480156102bb57600080fd5b50610262610539565b3480156102d057600080fd5b506101b5600f5481565b3480156102e657600080fd5b506000546040516001600160a01b039091168152602001610166565b34801561030e57600080fd5b506101b560105481565b34801561032457600080fd5b5061018f61033336600461150e565b6105f5565b34801561034457600080fd5b506101b560115481565b34801561035a57600080fd5b5060065461018f9060ff1681565b34801561037457600080fd5b50610262610602565b34801561038957600080fd5b506101b5610398366004611598565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006103d03384846109be565b5060015b92915050565b60006103e86008600a6116cb565b6103f690633b9aca006116da565b905090565b6000610408848484610ae2565b61045a84336104558560405180606001604052806028815260200161187c602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190611107565b6109be565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b03161461048957600080fd5b3060009081526001602052604090205480156104a8576104a881611141565b4780156104b8576104b8816112bb565b5050565b6000546001600160a01b031633146104ef5760405162461bcd60e51b81526004016104e6906116f1565b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146105635760405162461bcd60e51b81526004016104e6906116f1565b61056f6008600a6116cb565b61057d90633b9aca006116da565b600f5561058c6008600a6116cb565b61059a90633b9aca006116da565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105d46008600a6116cb565b6105e290633b9aca006116da565b60405190815260200160405180910390a1565b60006103d0338484610ae2565b6000546001600160a01b0316331461062c5760405162461bcd60e51b81526004016104e6906116f1565b601454600160a01b900460ff16156106865760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104e6565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106cf9030906106c16008600a6116cb565b61045590633b9aca006116da565b601360009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610722573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107469190611726565b6001600160a01b031663c9c6539630601360009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107cc9190611726565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610819573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083d9190611726565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610885816001600160a01b031660009081526001602052604090205490565b60008061089a6000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610902573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109279190611743565b505060145460135460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015610980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a49190611771565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e6565b6001600160a01b038216610a815760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e6565b6001600160a01b038216610ba85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e6565b60008111610c0a5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104e6565b600080546001600160a01b03858116911614801590610c3757506000546001600160a01b03848116911614155b15610fc4576001600160a01b03841660009081526004602052604090205460ff16158015610c7e57506001600160a01b03831660009081526004602052604090205460ff16155b610c8757600080fd5b610cb36064610cad600b54600e5411610ca257600754610ca6565b6009545b85906112f9565b90611382565b60065490915060ff1615610d9b576013546001600160a01b03848116911614801590610ced57506014546001600160a01b03848116911614155b15610d9b57326000908152600560205260409020544311610d885760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104e6565b3260009081526005602052604090204390555b6014546001600160a01b038581169116148015610dc657506013546001600160a01b03848116911614155b8015610deb57506001600160a01b03831660009081526003602052604090205460ff16155b15610ed357600f54821115610e425760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104e6565b60105482610e65856001600160a01b031660009081526001602052604090205490565b610e6f9190611793565b1115610ebd5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104e6565b600e8054906000610ecd836117a6565b91905055505b6014546001600160a01b038481169116148015610ef957506001600160a01b0384163014155b15610f2657610f236064610cad600c54600e5411610f1957600854610ca6565b600a5485906112f9565b90505b30600090815260016020526040902054601454600160a81b900460ff16158015610f5d57506014546001600160a01b038581169116145b8015610f725750601454600160b01b900460ff165b8015610f7f575060115481115b8015610f8e5750600d54600e54115b15610fc257610fb0610fab84610fa6846012546113c4565b6113c4565b611141565b478015610fc057610fc0476112bb565b505b505b801561103e5730600090815260016020526040902054610fe490826113d9565b30600081815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110359085815260200190565b60405180910390a35b6001600160a01b0384166000908152600160205260409020546110619083611438565b6001600160a01b0385166000908152600160205260409020556110a66110878383611438565b6001600160a01b038516600090815260016020526040902054906113d9565b6001600160a01b0380851660008181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110f08585611438565b60405190815260200160405180910390a350505050565b6000818484111561112b5760405162461bcd60e51b81526004016104e691906114a8565b50600061113884866117bf565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611189576111896117d2565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112069190611726565b81600181518110611219576112196117d2565b6001600160a01b03928316602091820292909201015260135461123f91309116846109be565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906112789085906000908690309042906004016117e8565b600060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083906000818181858888f193505050501580156104b8573d6000803e3d6000fd5b60008260000361130b575060006103d4565b600061131783856116da565b9050826113248583611859565b1461137b5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104e6565b9392505050565b600061137b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061147a565b60008183116113d3578261137b565b50919050565b6000806113e68385611793565b90508381101561137b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104e6565b600061137b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611107565b6000818361149b5760405162461bcd60e51b81526004016104e691906114a8565b5060006111388486611859565b600060208083528351808285015260005b818110156114d5578581018301518582016040015282016114b9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461150b57600080fd5b50565b6000806040838503121561152157600080fd5b823561152c816114f6565b946020939093013593505050565b60008060006060848603121561154f57600080fd5b833561155a816114f6565b9250602084013561156a816114f6565b929592945050506040919091013590565b60006020828403121561158d57600080fd5b813561137b816114f6565b600080604083850312156115ab57600080fd5b82356115b6816114f6565b915060208301356115c6816114f6565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611622578160001904821115611608576116086115d1565b8085161561161557918102915b93841c93908002906115ec565b509250929050565b600082611639575060016103d4565b81611646575060006103d4565b816001811461165c576002811461166657611682565b60019150506103d4565b60ff841115611677576116776115d1565b50506001821b6103d4565b5060208310610133831016604e8410600b84101617156116a5575081810a6103d4565b6116af83836115e7565b80600019048211156116c3576116c36115d1565b029392505050565b600061137b60ff84168361162a565b80820281158282048414176103d4576103d46115d1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561173857600080fd5b815161137b816114f6565b60008060006060848603121561175857600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561178357600080fd5b8151801515811461137b57600080fd5b808201808211156103d4576103d46115d1565b6000600182016117b8576117b86115d1565b5060010190565b818103818111156103d4576103d46115d1565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118385784516001600160a01b031683529383019391830191600101611813565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261187657634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122099529a83b573cfe7fed23104af103e81e736f672da0d74c0806e6b7ce961164164736f6c63430008110033

Deployed Bytecode Sourcemap

7337:8764:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9912:83;;;;;;;;;;-1:-1:-1;9982:5:0;;;;;;;;;;;-1:-1:-1;;;9982:5:0;;;;9912:83;;;;9982:5;9912:83;:::i;:::-;;;;;;;;10745:161;;;;;;;;;;-1:-1:-1;10745:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10745:161:0;1023:187:1;8566:50:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;8566:50:0;1215:177:1;10189:95:0;;;;;;;;;;;;;:::i;10914:313::-;;;;;;;;;;-1:-1:-1;10914:313:0;;;;;:::i;:::-;;:::i;10098:83::-;;;;;;;;;;-1:-1:-1;10098:83:0;;8187:1;2000:36:1;;1988:2;1973:18;10098:83:0;1858:184:1;14935:83:0;;;;;;;;;;-1:-1:-1;14935:83:0;;;;;:::i;:::-;-1:-1:-1;;;;;15003:7:0;14982:4;15003:7;;;:4;:7;;;;;;;;;14935:83;15750:348;;;;;;;;;;;;;:::i;:::-;;10292:119;;;;;;;;;;-1:-1:-1;10292:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;10385:18:0;10358:7;10385:18;;;:9;:18;;;;;;;10292:119;6418:148;;;;;;;;;;;;;:::i;14631:196::-;;;;;;;;;;;;;:::i;8377:56::-;;;;;;;;;;;;;;;;6204:79;;;;;;;;;;-1:-1:-1;6242:7:0;6269:6;6204:79;;-1:-1:-1;;;;;6269:6:0;;;2445:51:1;;2433:2;2418:18;6204:79:0;2299:203:1;8440:56:0;;;;;;;;;;;;;;;;10419:167;;;;;;;;;;-1:-1:-1;10419:167:0;;;;;:::i;:::-;;:::i;8503:56::-;;;;;;;;;;;;;;;;7745:40;;;;;;;;;;-1:-1:-1;7745:40:0;;;;;;;;15026:671;;;;;;;;;;;;;:::i;10594:143::-;;;;;;;;;;-1:-1:-1;10594:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10702:18:0;;;10675:7;10702:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10594:143;10745:161;10820:4;10837:39;4039:10;10860:7;10869:6;10837:8;:39::i;:::-;-1:-1:-1;10894:4:0;10745:161;;;;;:::o;10189:95::-;10242:7;8243:13;8187:1;8243:2;:13;:::i;:::-;8230:26;;:10;:26;:::i;:::-;10262:14;;10189:95;:::o;10914:313::-;11012:4;11029:36;11039:6;11047:9;11058:6;11029:9;:36::i;:::-;11076:121;11085:6;4039:10;11107:89;11145:6;11107:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11107:19:0;;;;;;:11;:19;;;;;;;;4039:10;11107:33;;;;;;;;;;:37;:89::i;:::-;11076:8;:121::i;:::-;-1:-1:-1;11215:4:0;10914:313;;;;;:::o;15750:348::-;15814:10;;;;;-1:-1:-1;;;;;15814:10:0;4039;-1:-1:-1;;;;;15800:24:0;;15792:33;;;;;;15875:4;15836:20;10385:18;;;:9;:18;;;;;;15895:14;;15892:73;;15923:30;15940:12;15923:16;:30::i;:::-;15994:21;16029:12;;16026:65;;16055:24;16068:10;16055:12;:24::i;:::-;15781:317;;15750:348::o;6418:148::-;6331:6;;-1:-1:-1;;;;;6331:6:0;4039:10;6331:22;6323:67;;;;-1:-1:-1;;;6323:67:0;;;;;;;:::i;:::-;;;;;;;;;6525:1:::1;6509:6:::0;;6488:40:::1;::::0;-1:-1:-1;;;;;6509:6:0;;::::1;::::0;6488:40:::1;::::0;6525:1;;6488:40:::1;6556:1;6539:19:::0;;-1:-1:-1;;;;;;6539:19:0::1;::::0;;6418:148::o;14631:196::-;6331:6;;-1:-1:-1;;;;;6331:6:0;4039:10;6331:22;6323:67;;;;-1:-1:-1;;;6323:67:0;;;;;;;:::i;:::-;8243:13:::1;8187:1;8243:2;:13;:::i;:::-;8230:26;::::0;:10:::1;:26;:::i;:::-;14684:12;:22:::0;8243:13:::1;8187:1;8243:2;:13;:::i;:::-;8230:26;::::0;:10:::1;:26;:::i;:::-;14717:14;:22:::0;14750:20:::1;:26:::0;;-1:-1:-1;;14750:26:0::1;::::0;;14792:27:::1;8243:13;8187:1;-1:-1:-1::0;8243:13:0::1;:::i;:::-;8230:26;::::0;:10:::1;:26;:::i;:::-;14792:27;::::0;1361:25:1;;;1349:2;1334:18;14792:27:0::1;;;;;;;14631:196::o:0;10419:167::-;10497:4;10514:42;4039:10;10538:9;10549:6;10514:9;:42::i;15026:671::-;6331:6;;-1:-1:-1;;;;;6331:6:0;4039:10;6331:22;6323:67;;;;-1:-1:-1;;;6323:67:0;;;;;;;:::i;:::-;15090:11:::1;::::0;-1:-1:-1;;;15090:11:0;::::1;;;15089:12;15081:47;;;::::0;-1:-1:-1;;;15081:47:0;;5151:2:1;15081:47:0::1;::::0;::::1;5133:21:1::0;5190:2;5170:18;;;5163:30;5229:25;5209:18;;;5202:53;5272:18;;15081:47:0::1;4949:347:1::0;15081:47:0::1;15139:15;:80:::0;;-1:-1:-1;;;;;;15139:80:0::1;15176:42;15139:80:::0;;::::1;::::0;;;15230:58:::1;::::0;15247:4:::1;::::0;8243:13:::1;8187:1;8243:2;:13;:::i;:::-;8230:26;::::0;:10:::1;:26;:::i;15230:58::-;15333:15;;;;;;;;;-1:-1:-1::0;;;;;15333:15:0::1;-1:-1:-1::0;;;;;15333:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;15315:55:0::1;;15379:4;15386:15;;;;;;;;;-1:-1:-1::0;;;;;15386:15:0::1;-1:-1:-1::0;;;;;15386:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15315:94;::::0;-1:-1:-1;;;;;;15315:94:0::1;::::0;;;;;;-1:-1:-1;;;;;5787:15:1;;;15315:94:0::1;::::0;::::1;5769:34:1::0;5839:15;;5819:18;;;5812:43;5704:18;;15315:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15299:13;:110:::0;;-1:-1:-1;;;;;15299:110:0;;::::1;-1:-1:-1::0;;;;;;15299:110:0;;::::1;;::::0;;15420:15:::1;::::0;::::1;:31;15459:21;15490:4;15496:24;15490:4:::0;-1:-1:-1;;;;;10385:18:0;10358:7;10385:18;;;:9;:18;;;;;;;10292:119;15496:24:::1;15521:1;15523::::0;15525:7:::1;6242::::0;6269:6;-1:-1:-1;;;;;6269:6:0;;6204:79;15525:7:::1;15420:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;15420:129:0;;;-1:-1:-1;;;;;6225:15:1;;;15420:129:0::1;::::0;::::1;6207:34:1::0;6257:18;;;6250:34;;;;6300:18;;;6293:34;;;;6343:18;;;6336:34;6407:15;;;6386:19;;;6379:44;15533:15:0::1;6439:19:1::0;;;6432:35;6141:19;;15420:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;15567:13:0::1;::::0;15598:15:::1;::::0;15560:71:::1;::::0;-1:-1:-1;;;15560:71:0;;-1:-1:-1;;;;;15598:15:0;;::::1;15560:71;::::0;::::1;6963:51:1::0;-1:-1:-1;;7030:18:1;;;7023:34;15567:13:0;::::1;::::0;-1:-1:-1;15560:29:0::1;::::0;6936:18:1;;15560:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;15642:11:0::1;:18:::0;;-1:-1:-1;;;;15671:18:0;-1:-1:-1;;;15671:18:0;;;15026:671::o;11235:335::-;-1:-1:-1;;;;;11328:19:0;;11320:68;;;;-1:-1:-1;;;11320:68:0;;7552:2:1;11320:68:0;;;7534:21:1;7591:2;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;-1:-1:-1;;;7681:18:1;;;7674:34;7725:19;;11320:68:0;7350:400:1;11320:68:0;-1:-1:-1;;;;;11407:21:0;;11399:68;;;;-1:-1:-1;;;11399:68:0;;7957:2:1;11399:68:0;;;7939:21:1;7996:2;7976:18;;;7969:30;8035:34;8015:18;;;8008:62;-1:-1:-1;;;8086:18:1;;;8079:32;8128:19;;11399:68:0;7755:398:1;11399:68:0;-1:-1:-1;;;;;11478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11530:32;;1361:25:1;;;11530:32:0;;1334:18:1;11530:32:0;;;;;;;11235:335;;;:::o;11578:2446::-;-1:-1:-1;;;;;11666:18:0;;11658:68;;;;-1:-1:-1;;;11658:68:0;;8360:2:1;11658:68:0;;;8342:21:1;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:1;;;8482:35;8534:19;;11658:68:0;8158:401:1;11658:68:0;-1:-1:-1;;;;;11745:16:0;;11737:64;;;;-1:-1:-1;;;11737:64:0;;8766:2:1;11737:64:0;;;8748:21:1;8805:2;8785:18;;;8778:30;8844:34;8824:18;;;8817:62;-1:-1:-1;;;8895:18:1;;;8888:33;8938:19;;11737:64:0;8564:399:1;11737:64:0;11829:1;11820:6;:10;11812:64;;;;-1:-1:-1;;;11812:64:0;;9170:2:1;11812:64:0;;;9152:21:1;9209:2;9189:18;;;9182:30;9248:34;9228:18;;;9221:62;-1:-1:-1;;;9299:18:1;;;9292:39;9348:19;;11812:64:0;8968:405:1;11812:64:0;11887:17;6269:6;;-1:-1:-1;;;;;11921:15:0;;;6269:6;;11921:15;;;;:32;;-1:-1:-1;6242:7:0;6269:6;-1:-1:-1;;;;;11940:13:0;;;6269:6;;11940:13;;11921:32;11917:1751;;;-1:-1:-1;;;;;11979:10:0;;;;;;:4;:10;;;;;;;;11978:11;:24;;;;-1:-1:-1;;;;;;11994:8:0;;;;;;:4;:8;;;;;;;;11993:9;11978:24;11970:33;;;;;;12030:76;12102:3;12030:67;12052:15;;12042:9;;:25;12041:55;;12082:14;;12041:55;;;12069:12;;12041:55;12030:6;;:10;:67::i;:::-;:71;;:76::i;:::-;12127:20;;12018:88;;-1:-1:-1;12127:20:0;;12123:508;;;12188:15;;-1:-1:-1;;;;;12174:30:0;;;12188:15;;12174:30;;;;:62;;-1:-1:-1;12222:13:0;;-1:-1:-1;;;;;12208:28:0;;;12222:13;;12208:28;;12174:62;12170:444;;;12328:9;12299:39;;;;:28;:39;;;;;;12372:12;-1:-1:-1;12263:250:0;;;;-1:-1:-1;;;12263:250:0;;9580:2:1;12263:250:0;;;9562:21:1;9619:2;9599:18;;;9592:30;9658:34;9638:18;;;9631:62;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:19:1;;;9773:40;9830:19;;12263:250:0;9378:477:1;12263:250:0;12567:9;12538:39;;;;:28;:39;;;;;12580:12;12538:54;;12170:444;12659:13;;-1:-1:-1;;;;;12651:21:0;;;12659:13;;12651:21;:55;;;;-1:-1:-1;12690:15:0;;-1:-1:-1;;;;;12676:30:0;;;12690:15;;12676:30;;12651:55;:83;;;;-1:-1:-1;;;;;;12712:22:0;;;;;;:18;:22;;;;;;;;12710:24;12651:83;12647:313;;;12774:12;;12764:6;:22;;12756:60;;;;-1:-1:-1;;;12756:60:0;;10062:2:1;12756:60:0;;;10044:21:1;10101:2;10081:18;;;10074:30;10140:27;10120:18;;;10113:55;10185:18;;12756:60:0;9860:349:1;12756:60:0;12869:14;;12859:6;12843:13;12853:2;-1:-1:-1;;;;;10385:18:0;10358:7;10385:18;;;:9;:18;;;;;;;10292:119;12843:13;:22;;;;:::i;:::-;:40;;12835:79;;;;-1:-1:-1;;;12835:79:0;;10546:2:1;12835:79:0;;;10528:21:1;10585:2;10565:18;;;10558:30;10624:28;10604:18;;;10597:56;10670:18;;12835:79:0;10344:350:1;12835:79:0;12933:9;:11;;;:9;:11;;;:::i;:::-;;;;;;12647:313;12985:13;;-1:-1:-1;;;;;12979:19:0;;;12985:13;;12979:19;:43;;;;-1:-1:-1;;;;;;13002:20:0;;13017:4;13002:20;;12979:43;12976:174;;;13055:79;13130:3;13055:70;13077:16;;13067:9;;:26;13066:58;;13109:15;;13066:58;;;13095:13;;13055:6;;:10;:70::i;:79::-;13043:91;;12976:174;13215:4;13166:28;10385:18;;;:9;:18;;;;;;13241:6;;-1:-1:-1;;;13241:6:0;;;;13240:7;:32;;;;-1:-1:-1;13259:13:0;;-1:-1:-1;;;;;13251:21:0;;;13259:13;;13251:21;13240:32;:47;;;;-1:-1:-1;13276:11:0;;-1:-1:-1;;;13276:11:0;;;;13240:47;:89;;;;;13312:17;;13291:20;:38;13240:89;:121;;;;;13343:18;;13333:9;;:28;13240:121;13236:421;;;13382:67;13399:49;13403:6;13410:37;13414:20;13435:11;;13410:3;:37::i;:::-;13399:3;:49::i;:::-;13382:16;:67::i;:::-;13497:21;13540:22;;13537:105;;13587:35;13600:21;13587:12;:35::i;:::-;13363:294;13236:421;11955:1713;11917:1751;13683:11;;13680:161;;13751:4;13733:24;;;;:9;:24;;;;;;:39;;13762:9;13733:28;:39::i;:::-;13726:4;13708:24;;;;:9;:24;;;;;;;:64;;;;13790:39;;-1:-1:-1;;;;;13790:39:0;;;;;;;13819:9;1361:25:1;;1349:2;1334:18;;1215:177;13790:39:0;;;;;;;;13680:161;-1:-1:-1;;;;;13867:15:0;;;;;;:9;:15;;;;;;:27;;13887:6;13867:19;:27::i;:::-;-1:-1:-1;;;;;13851:15:0;;;;;;:9;:15;;;;;:43;13919:40;13937:21;:6;13948:9;13937:10;:21::i;:::-;-1:-1:-1;;;;;13919:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;13905:13:0;;;;;;;:9;:13;;;;;:54;;;;13975:41;;;13994:21;:6;14005:9;13994:10;:21::i;:::-;13975:41;;1361:25:1;;;1349:2;1334:18;13975:41:0;;;;;;;11647:2377;11578:2446;;;:::o;5096:190::-;5182:7;5218:12;5210:6;;;;5202:29;;;;-1:-1:-1;;;5202:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5242:9:0;5254:5;5258:1;5254;:5;:::i;:::-;5242:17;5096:190;-1:-1:-1;;;;;5096:190:0:o;14140:483::-;9521:6;:13;;-1:-1:-1;;;;9521:13:0;-1:-1:-1;;;9521:13:0;;;14242:16:::1;::::0;;14256:1:::1;14242:16:::0;;;;;::::1;::::0;;-1:-1:-1;;14242:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;14242:16:0::1;14218:40;;14287:4;14269;14274:1;14269:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14269:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;14313:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;14313:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;14269:7;;14313:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14303:4;14308:1;14303:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14303:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;14378:15:::1;::::0;14346:62:::1;::::0;14363:4:::1;::::0;14378:15:::1;14396:11:::0;14346:8:::1;:62::i;:::-;14419:15;::::0;:196:::1;::::0;-1:-1:-1;;;14419:196:0;;-1:-1:-1;;;;;14419:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;14500:11;;14419:15:::1;::::0;14542:4;;14569::::1;::::0;14589:15:::1;::::0;14419:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9557:6:0;:14;;-1:-1:-1;;;;9557:14:0;;;-1:-1:-1;;;;14140:483:0:o;14835:92::-;14892:10;;:27;;:10;;;;-1:-1:-1;;;;;14892:10:0;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;5294:246;5352:7;5376:1;5381;5376:6;5372:47;;-1:-1:-1;5406:1:0;5399:8;;5372:47;5429:9;5441:5;5445:1;5441;:5;:::i;:::-;5429:17;-1:-1:-1;5474:1:0;5465:5;5469:1;5429:17;5465:5;:::i;:::-;:10;5457:56;;;;-1:-1:-1;;;5457:56:0;;12645:2:1;5457:56:0;;;12627:21:1;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:1;;;12767:31;12815:19;;5457:56:0;12443:397:1;5457:56:0;5531:1;5294:246;-1:-1:-1;;;5294:246:0:o;5548:132::-;5606:7;5633:39;5637:1;5640;5633:39;;;;;;;;;;;;;;;;;:3;:39::i;14034:98::-;14091:7;14118:1;14116;:3;14115:9;;14123:1;14115:9;;;-1:-1:-1;14121:1:0;14034:98;-1:-1:-1;14034:98:0:o;4765:179::-;4823:7;;4855:5;4859:1;4855;:5;:::i;:::-;4843:17;;4884:1;4879;:6;;4871:46;;;;-1:-1:-1;;;4871:46:0;;13047:2:1;4871:46:0;;;13029:21:1;13086:2;13066:18;;;13059:30;13125:29;13105:18;;;13098:57;13172:18;;4871:46:0;12845:351:1;4952:136:0;5010:7;5037:43;5041:1;5044;5037:43;;;;;;;;;;;;;;;;;:3;:43::i;5688:189::-;5774:7;5809:12;5802:5;5794:28;;;;-1:-1:-1;;;5794:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5833:9:0;5845:5;5849:1;5845;: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;5301:251::-;5371:6;5424:2;5412:9;5403:7;5399:23;5395:32;5392:52;;;5440:1;5437;5430:12;5392:52;5472:9;5466:16;5491:31;5516:5;5491:31;:::i;6478:306::-;6566:6;6574;6582;6635:2;6623:9;6614:7;6610:23;6606:32;6603:52;;;6651:1;6648;6641:12;6603:52;6680:9;6674:16;6664:26;;6730:2;6719:9;6715:18;6709:25;6699:35;;6774:2;6763:9;6759:18;6753:25;6743:35;;6478:306;;;;;:::o;7068:277::-;7135:6;7188:2;7176:9;7167:7;7163:23;7159:32;7156:52;;;7204:1;7201;7194:12;7156:52;7236:9;7230:16;7289:5;7282:13;7275:21;7268:5;7265:32;7255:60;;7311:1;7308;7301:12;10214:125;10279:9;;;10300:10;;;10297:36;;;10313:18;;:::i;10699:135::-;10738:3;10759:17;;;10756:43;;10779:18;;:::i;:::-;-1:-1:-1;10826:1:1;10815:13;;10699:135::o;10839:128::-;10906:9;;;10927:11;;;10924:37;;;10941:18;;:::i;11104:127::-;11165:10;11160:3;11156:20;11153:1;11146:31;11196:4;11193:1;11186:15;11220:4;11217:1;11210:15;11236:980;11498:4;11546:3;11535:9;11531:19;11577:6;11566:9;11559:25;11603:2;11641:6;11636:2;11625:9;11621:18;11614:34;11684:3;11679:2;11668:9;11664:18;11657:31;11708:6;11743;11737:13;11774:6;11766;11759:22;11812:3;11801:9;11797:19;11790:26;;11851:2;11843:6;11839:15;11825:29;;11872:1;11882:195;11896:6;11893:1;11890:13;11882:195;;;11961:13;;-1:-1:-1;;;;;11957:39:1;11945:52;;12052:15;;;;12017:12;;;;11993:1;11911:9;11882:195;;;-1:-1:-1;;;;;;;12133:32:1;;;;12128:2;12113:18;;12106:60;-1:-1:-1;;;12197:3:1;12182:19;12175:35;12094:3;11236:980;-1:-1:-1;;;11236:980:1:o;12221:217::-;12261:1;12287;12277:132;;12331:10;12326:3;12322:20;12319:1;12312:31;12366:4;12363:1;12356:15;12394:4;12391:1;12384:15;12277:132;-1:-1:-1;12423:9:1;;12221:217::o

Swarm Source

ipfs://99529a83b573cfe7fed23104af103e81e736f672da0d74c0806e6b7ce9611641
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.