ETH Price: $3,118.25 (+1.63%)
Gas: 7 Gwei

Token

GAMBLX (GAMBLX)
 

Overview

Max Total Supply

100,000,000 GAMBLX

Holders

744

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
pfeffunit.eth
Balance
17,977.926834779 GAMBLX

Value
$0.00
0x4f7d469a5237bd5feae5a3d852eea4b65e06aad1
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:
GAMBLX

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 * GAMBLX - The world first positive RTP (Return-To-Player) decentralized casino!
 *
 * Unlike traditional casinos with a house edge, at GAMBLX, our unique game mechanics system eliminates the house edge. This means (f.e.) you can enjoy up to an 80% chance to win X2 bets, depending on the round. Imagine the possibilities - with a total pool of $2800, a mere $40 bet can grant you a 50% chance to win, particularly during rounds with high bonus pools and smaller bets. Say goodbye to always losing – at GAMBLX, you have the advantage!
 * 50% of token volume tax funds are automatically added to jackpot rounds as bonus pools.
 * Additionally, 30% of total casino revenue is shared randomly into game pools, and 10% of casino revenue is used for token buyback at random interval.
 * The token is deflationary, with 5% of tokens from tax volume being burned automatically.
 * Holders of the token become part owners of the casino, receiving 30% of casino revenue and 20% of token tax fees through the Revenue Share Program.
 * Return to Player (RTP) can reach up to +1000%, depending on the round and bonus pool. Players can even apply their skills to calculate the best timing to join game.
 * Fully decentralized, winners for each round are automatically chosen using our smart contract provable fair system.
 * 10% of each game pool contributes to casino revenue, and 30% of this revenue is shared with token holders through the Revenue Share system.
 *
 *
 * At GamblX, we believe in provably fair gaming. Every game, bet, and winner can be verified, as our smart contract automatically selects winners at the end of each game, leaving no room for human intervention.
 * As we expand our offerings, players can expect a diverse range of games designed to cater to all interests and preferences. From classic casino games with a blockchain twist to groundbreaking and unique creations, each game promises a seamless and transparent gaming experience.
 * Our new games will feature provably fair mechanics, ensuring that players can verify the fairness of every outcome independently. The blockchain's decentralized nature provides added security and trust, ensuring that the integrity of the games remains uncompromised.
 * Whether you are a seasoned gambler or a newcomer to the world of blockchain gaming, our upcoming releases will captivate and entertain you. Prepare to embark on an unforgettable journey, where thrilling gameplay and blockchain technology converge to create an unparalleled gaming adventure.
 * GamblX invites players to join our revolution in the gambling world, where trust, fairness, and exhilarating gaming experiences converge. Embrace the advantage and explore the endless possibilities of winning with GamblX.
 *
 *
 * Website: https://gamblx.com
 * Twitter: https://twitter.com/gamblx_com
 * Telegram: https://t.me/gamblx_com
 * Medium: https://medium.com/@gamblx/
 * Discord: https://discord.com/invite/bFfwwTYE
 * Docs: https://gamblx.gitbook.io/info
 * 
 * 
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.20;

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

interface Jackpot {
    function addBonus() external payable;  
}

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;
	address private _jackpotmanager;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

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

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

    function jackpotmanager() public view returns (address) {
        return _jackpotmanager;
    }
	
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
	
	modifier onlyJackpotManager() {
        require(_jackpotmanager == _msgSender(), "Ownable: caller is not the jackpot manager");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
	
	function renounceJackpotManager() public virtual onlyJackpotManager {
        _jackpotmanager = 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 GAMBLX is Context, IERC20, Ownable {
    using SafeMath for uint256;
	
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    address payable private _taxWallet;
    uint256 firstBlock;

    uint256 private _initialBuyTax=17;
    uint256 private _initialSellTax=17;
    uint256 private _finalBuyTax=5;
    uint256 private _finalSellTax=5;
    uint256 private _reduceBuyTaxAt=23;
    uint256 private _reduceSellTaxAt=23;
    uint256 private _preventSwapBefore=23;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 100000000 * 10**_decimals;
    string private constant _name = unicode"GAMBLX";
    string private constant _symbol = unicode"GAMBLX";
    uint256 public _maxTxAmount =   1000000 * 10**_decimals;
    uint256 public _maxWalletSize = 1000000 * 10**_decimals;
    uint256 public _taxSwapThreshold= 1000000 * 10**_decimals;
    uint256 public _maxTaxSwap= 1000000 * 10**_decimals;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;
	
	address jackpotAddress;
	
	uint256 public totalTokensBurned = 0;

    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()) {
            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);

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

                if (firstBlock + 3  > block.number) {
                    require(!isContract(to));
                }
                _buyCount++;
            }

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

            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) {
			    uint taxtokensburned;
				taxtokensburned = contractTokenBalance.div(20); //5% of tax burned
				totalTokensBurned += taxtokensburned;
                _balances[address(this)]=_balances[address(this)].sub(taxtokensburned);
                _balances[address(0xdead)]=_balances[address(0xdead)].add(taxtokensburned);
                emit Transfer(address(this), address(0xdead), taxtokensburned);
				//burn tokens from tax
				uint256 contractTokenBalance2 = balanceOf(address(this));
                swapTokensForEth(min(amount,min(contractTokenBalance2,_maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
					Jackpot(jackpotAddress).addBonus{value: address(this).balance.div(2)}(); //send 50% to bonus pool jackpot
                    sendETHToFee(address(this).balance); //send 50% to tax wallet
                }
            }
        }

        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 isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    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 setJackpotAddress(address _jackpotAddress) external onlyJackpotManager {
       jackpotAddress = _jackpotAddress;
    }
	
    function removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }
	
    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;
        firstBlock = block.number;
    }

    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":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":[],"name":"jackpotmanager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"renounceJackpotManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_jackpotAddress","type":"address"}],"name":"setJackpotAddress","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":[],"name":"totalTokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526011600755601160085560056009556005600a556017600b556017600c556017600d555f600e556009600a6200003b91906200030e565b6200004a90620f424062000325565b600f556200005b6009600a6200030e565b6200006a90620f424062000325565b6010556200007b6009600a6200030e565b6200008a90620f424062000325565b6011556200009b6009600a6200030e565b620000aa90620f424062000325565b6012556014805461ffff60a81b191690555f601655348015620000cb575f80fd5b505f8054336001600160a01b031991821681178355600180549092168117909155604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600580546001600160a01b03191633179055620001396009600a6200030e565b62000149906305f5e10062000325565b335f8181526002602090815260408083209490945581546001600160a01b03908116835260049091528382208054600160ff199182168117909255308452858420805482168317905560055490921683529382208054909116909317909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001d86009600a6200030e565b620001e8906305f5e10062000325565b60405190815260200160405180910390a36200033f565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200025357815f1904821115620002375762000237620001ff565b808516156200024557918102915b93841c939080029062000218565b509250929050565b5f826200026b5750600162000308565b816200027957505f62000308565b81600181146200029257600281146200029d57620002bd565b600191505062000308565b60ff841115620002b157620002b1620001ff565b50506001821b62000308565b5060208310610133831016604e8410600b8410161715620002e2575081810a62000308565b620002ee838362000213565b805f1904821115620003045762000304620001ff565b0290505b92915050565b5f6200031e60ff8416836200025b565b9392505050565b8082028115828204841417620003085762000308620001ff565b6119df806200034d5f395ff3fe608060405260043610610129575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b4114610134578063a9059cbb14610319578063bf474bed14610338578063c9567bf91461034d578063d157e30114610361578063dd62ed3e14610376575f80fd5b80637d1db4a5146102a05780637e3aea80146102b557806383642d82146102c95780638da5cb5b146102e85780638f9a55c014610304575f80fd5b8063256f8e26116100ee578063256f8e26146101f6578063313ce5671461022757806370a0823114610242578063715018a614610276578063751039fc1461028c575f80fd5b806306fdde0314610134578063095ea7b3146101715780630faee56f146101a057806318160ddd146101c357806323b872dd146101d7575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b50604080518082018252600681526508e829a8498b60d31b602082015290516101689190611588565b60405180910390f35b34801561017c575f80fd5b5061019061018b3660046115ea565b6103ba565b6040519015158152602001610168565b3480156101ab575f80fd5b506101b560125481565b604051908152602001610168565b3480156101ce575f80fd5b506101b56103d0565b3480156101e2575f80fd5b506101906101f1366004611614565b6103f0565b348015610201575f80fd5b506001546001600160a01b03165b6040516001600160a01b039091168152602001610168565b348015610232575f80fd5b5060405160098152602001610168565b34801561024d575f80fd5b506101b561025c366004611652565b6001600160a01b03165f9081526002602052604090205490565b348015610281575f80fd5b5061028a610457565b005b348015610297575f80fd5b5061028a6104d1565b3480156102ab575f80fd5b506101b5600f5481565b3480156102c0575f80fd5b5061028a610582565b3480156102d4575f80fd5b5061028a6102e3366004611652565b6105be565b3480156102f3575f80fd5b505f546001600160a01b031661020f565b34801561030f575f80fd5b506101b560105481565b348015610324575f80fd5b506101906103333660046115ea565b61060a565b348015610343575f80fd5b506101b560115481565b348015610358575f80fd5b5061028a610616565b34801561036c575f80fd5b506101b560165481565b348015610381575f80fd5b506101b561039036600461166d565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b5f6103c63384846109c3565b5060015b92915050565b5f6103dd6009600a611798565b6103eb906305f5e1006117a6565b905090565b5f6103fc848484610ae6565b61044d843361044885604051806060016040528060288152602001611982602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190611200565b6109c3565b5060019392505050565b5f546001600160a01b031633146104895760405162461bcd60e51b8152600401610480906117bd565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104fa5760405162461bcd60e51b8152600401610480906117bd565b6105066009600a611798565b610514906305f5e1006117a6565b600f556105236009600a611798565b610531906305f5e1006117a6565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105616009600a611798565b61056f906305f5e1006117a6565b60405190815260200160405180910390a1565b6001546001600160a01b031633146105ac5760405162461bcd60e51b8152600401610480906117f2565b600180546001600160a01b0319169055565b6001546001600160a01b031633146105e85760405162461bcd60e51b8152600401610480906117f2565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b5f6103c6338484610ae6565b5f546001600160a01b0316331461063f5760405162461bcd60e51b8152600401610480906117bd565b601454600160a01b900460ff16156106995760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610480565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106e29030906106d46009600a611798565b610448906305f5e1006117a6565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610732573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610756919061183c565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d9919061183c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610823573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610847919061183c565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061088e816001600160a01b03165f9081526002602052604090205490565b5f806108a15f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610907573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061092c9190611857565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610981573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a59190611882565b506014805462ff00ff60a01b19166201000160a01b17905543600655565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610480565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610480565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610480565b6001600160a01b038216610bac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610480565b5f8111610c0d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610480565b5f80546001600160a01b03858116911614801590610c3857505f546001600160a01b03848116911614155b156110c357610c696064610c63600b54600e5411610c5857600754610c5c565b6009545b8590611238565b906112bd565b6014549091506001600160a01b038581169116148015610c9757506013546001600160a01b03848116911614155b8015610cbb57506001600160a01b0383165f9081526004602052604090205460ff16155b15610dc257600f54821115610d125760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610480565b60105482610d34856001600160a01b03165f9081526002602052604090205490565b610d3e91906118a1565b1115610d8c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610480565b436006546003610d9c91906118a1565b1115610dad57823b15610dad575f80fd5b600e8054905f610dbc836118b4565b91905055505b6014546001600160a01b03848116911614801590610df857506001600160a01b0383165f9081526004602052604090205460ff16155b15610e775760105482610e1f856001600160a01b03165f9081526002602052604090205490565b610e2991906118a1565b1115610e775760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610480565b6014546001600160a01b038481169116148015610e9d57506001600160a01b0384163014155b15610eca57610ec76064610c63600c54600e5411610ebd57600854610c5c565b600a548590611238565b90505b305f90815260026020526040902054601454600160a81b900460ff16158015610f0057506014546001600160a01b038581169116145b8015610f155750601454600160b01b900460ff165b8015610f22575060115481115b8015610f315750600d54600e54115b156110c1575f610f428260146112bd565b90508060165f828254610f5591906118a1565b9091555050305f90815260026020526040902054610f7390826112fe565b305f9081526002602052604081209190915561dead90527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54610fb6908261133f565b61dead5f81905260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc9190915560405130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061101b9085815260200190565b60405180910390a3305f90815260026020526040812054905061105161104c866110478460125461139d565b61139d565b6113b1565b4780156110bd576015546001600160a01b0316631544f9dc6110744760026112bd565b6040518263ffffffff1660e01b81526004015f604051808303818588803b15801561109d575f80fd5b505af11580156110af573d5f803e3d5ffd5b50505050506110bd47611521565b5050505b505b801561113b57305f908152600260205260409020546110e2908261133f565b305f81815260026020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111329085815260200190565b60405180910390a35b6001600160a01b0384165f9081526002602052604090205461115d90836112fe565b6001600160a01b0385165f908152600260205260409020556111a061118283836112fe565b6001600160a01b0385165f908152600260205260409020549061133f565b6001600160a01b038085165f8181526002602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111e985856112fe565b60405190815260200160405180910390a350505050565b5f81848411156112235760405162461bcd60e51b81526004016104809190611588565b505f61122f84866118cc565b95945050505050565b5f825f0361124757505f6103ca565b5f61125283856117a6565b90508261125f85836118df565b146112b65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610480565b9392505050565b5f6112b683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061155c565b5f6112b683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611200565b5f8061134b83856118a1565b9050838110156112b65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610480565b5f8183116113ab57826112b6565b50919050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113f7576113f76118fe565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561144e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611472919061183c565b81600181518110611485576114856118fe565b6001600160a01b0392831660209182029290920101526013546114ab91309116846109c3565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906114e39085905f90869030904290600401611912565b5f604051808303815f87803b1580156114fa575f80fd5b505af115801561150c573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611558573d5f803e3d5ffd5b5050565b5f818361157c5760405162461bcd60e51b81526004016104809190611588565b505f61122f84866118df565b5f6020808352835180828501525f5b818110156115b357858101830151858201604001528201611597565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115e7575f80fd5b50565b5f80604083850312156115fb575f80fd5b8235611606816115d3565b946020939093013593505050565b5f805f60608486031215611626575f80fd5b8335611631816115d3565b92506020840135611641816115d3565b929592945050506040919091013590565b5f60208284031215611662575f80fd5b81356112b6816115d3565b5f806040838503121561167e575f80fd5b8235611689816115d3565b91506020830135611699816115d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116f257815f19048211156116d8576116d86116a4565b808516156116e557918102915b93841c93908002906116bd565b509250929050565b5f82611708575060016103ca565b8161171457505f6103ca565b816001811461172a576002811461173457611750565b60019150506103ca565b60ff841115611745576117456116a4565b50506001821b6103ca565b5060208310610133831016604e8410600b8410161715611773575081810a6103ca565b61177d83836116b8565b805f1904821115611790576117906116a4565b029392505050565b5f6112b660ff8416836116fa565b80820281158282048414176103ca576103ca6116a4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206a61636b7060408201526937ba1036b0b730b3b2b960b11b606082015260800190565b5f6020828403121561184c575f80fd5b81516112b6816115d3565b5f805f60608486031215611869575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611892575f80fd5b815180151581146112b6575f80fd5b808201808211156103ca576103ca6116a4565b5f600182016118c5576118c56116a4565b5060010190565b818103818111156103ca576103ca6116a4565b5f826118f957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156119605784516001600160a01b03168352938301939183019160010161193b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e37647c654acc3045b5bacd01b15878112188a3a7b88b6940c9f7b38713b9f9764736f6c63430008140033

Deployed Bytecode

0x608060405260043610610129575f3560e01c80637d1db4a5116100a857806395d89b411161006d57806395d89b4114610134578063a9059cbb14610319578063bf474bed14610338578063c9567bf91461034d578063d157e30114610361578063dd62ed3e14610376575f80fd5b80637d1db4a5146102a05780637e3aea80146102b557806383642d82146102c95780638da5cb5b146102e85780638f9a55c014610304575f80fd5b8063256f8e26116100ee578063256f8e26146101f6578063313ce5671461022757806370a0823114610242578063715018a614610276578063751039fc1461028c575f80fd5b806306fdde0314610134578063095ea7b3146101715780630faee56f146101a057806318160ddd146101c357806323b872dd146101d7575f80fd5b3661013057005b5f80fd5b34801561013f575f80fd5b50604080518082018252600681526508e829a8498b60d31b602082015290516101689190611588565b60405180910390f35b34801561017c575f80fd5b5061019061018b3660046115ea565b6103ba565b6040519015158152602001610168565b3480156101ab575f80fd5b506101b560125481565b604051908152602001610168565b3480156101ce575f80fd5b506101b56103d0565b3480156101e2575f80fd5b506101906101f1366004611614565b6103f0565b348015610201575f80fd5b506001546001600160a01b03165b6040516001600160a01b039091168152602001610168565b348015610232575f80fd5b5060405160098152602001610168565b34801561024d575f80fd5b506101b561025c366004611652565b6001600160a01b03165f9081526002602052604090205490565b348015610281575f80fd5b5061028a610457565b005b348015610297575f80fd5b5061028a6104d1565b3480156102ab575f80fd5b506101b5600f5481565b3480156102c0575f80fd5b5061028a610582565b3480156102d4575f80fd5b5061028a6102e3366004611652565b6105be565b3480156102f3575f80fd5b505f546001600160a01b031661020f565b34801561030f575f80fd5b506101b560105481565b348015610324575f80fd5b506101906103333660046115ea565b61060a565b348015610343575f80fd5b506101b560115481565b348015610358575f80fd5b5061028a610616565b34801561036c575f80fd5b506101b560165481565b348015610381575f80fd5b506101b561039036600461166d565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b5f6103c63384846109c3565b5060015b92915050565b5f6103dd6009600a611798565b6103eb906305f5e1006117a6565b905090565b5f6103fc848484610ae6565b61044d843361044885604051806060016040528060288152602001611982602891396001600160a01b038a165f9081526003602090815260408083203384529091529020549190611200565b6109c3565b5060019392505050565b5f546001600160a01b031633146104895760405162461bcd60e51b8152600401610480906117bd565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104fa5760405162461bcd60e51b8152600401610480906117bd565b6105066009600a611798565b610514906305f5e1006117a6565b600f556105236009600a611798565b610531906305f5e1006117a6565b6010557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105616009600a611798565b61056f906305f5e1006117a6565b60405190815260200160405180910390a1565b6001546001600160a01b031633146105ac5760405162461bcd60e51b8152600401610480906117f2565b600180546001600160a01b0319169055565b6001546001600160a01b031633146105e85760405162461bcd60e51b8152600401610480906117f2565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b5f6103c6338484610ae6565b5f546001600160a01b0316331461063f5760405162461bcd60e51b8152600401610480906117bd565b601454600160a01b900460ff16156106995760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610480565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106e29030906106d46009600a611798565b610448906305f5e1006117a6565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610732573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610756919061183c565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107b5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107d9919061183c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610823573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610847919061183c565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d719473061088e816001600160a01b03165f9081526002602052604090205490565b5f806108a15f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610907573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061092c9190611857565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610981573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109a59190611882565b506014805462ff00ff60a01b19166201000160a01b17905543600655565b6001600160a01b038316610a255760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610480565b6001600160a01b038216610a865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610480565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610480565b6001600160a01b038216610bac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610480565b5f8111610c0d5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610480565b5f80546001600160a01b03858116911614801590610c3857505f546001600160a01b03848116911614155b156110c357610c696064610c63600b54600e5411610c5857600754610c5c565b6009545b8590611238565b906112bd565b6014549091506001600160a01b038581169116148015610c9757506013546001600160a01b03848116911614155b8015610cbb57506001600160a01b0383165f9081526004602052604090205460ff16155b15610dc257600f54821115610d125760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e000000000000006044820152606401610480565b60105482610d34856001600160a01b03165f9081526002602052604090205490565b610d3e91906118a1565b1115610d8c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610480565b436006546003610d9c91906118a1565b1115610dad57823b15610dad575f80fd5b600e8054905f610dbc836118b4565b91905055505b6014546001600160a01b03848116911614801590610df857506001600160a01b0383165f9081526004602052604090205460ff16155b15610e775760105482610e1f856001600160a01b03165f9081526002602052604090205490565b610e2991906118a1565b1115610e775760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610480565b6014546001600160a01b038481169116148015610e9d57506001600160a01b0384163014155b15610eca57610ec76064610c63600c54600e5411610ebd57600854610c5c565b600a548590611238565b90505b305f90815260026020526040902054601454600160a81b900460ff16158015610f0057506014546001600160a01b038581169116145b8015610f155750601454600160b01b900460ff165b8015610f22575060115481115b8015610f315750600d54600e54115b156110c1575f610f428260146112bd565b90508060165f828254610f5591906118a1565b9091555050305f90815260026020526040902054610f7390826112fe565b305f9081526002602052604081209190915561dead90527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc54610fb6908261133f565b61dead5f81905260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc9190915560405130907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061101b9085815260200190565b60405180910390a3305f90815260026020526040812054905061105161104c866110478460125461139d565b61139d565b6113b1565b4780156110bd576015546001600160a01b0316631544f9dc6110744760026112bd565b6040518263ffffffff1660e01b81526004015f604051808303818588803b15801561109d575f80fd5b505af11580156110af573d5f803e3d5ffd5b50505050506110bd47611521565b5050505b505b801561113b57305f908152600260205260409020546110e2908261133f565b305f81815260026020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111329085815260200190565b60405180910390a35b6001600160a01b0384165f9081526002602052604090205461115d90836112fe565b6001600160a01b0385165f908152600260205260409020556111a061118283836112fe565b6001600160a01b0385165f908152600260205260409020549061133f565b6001600160a01b038085165f8181526002602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111e985856112fe565b60405190815260200160405180910390a350505050565b5f81848411156112235760405162461bcd60e51b81526004016104809190611588565b505f61122f84866118cc565b95945050505050565b5f825f0361124757505f6103ca565b5f61125283856117a6565b90508261125f85836118df565b146112b65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610480565b9392505050565b5f6112b683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061155c565b5f6112b683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611200565b5f8061134b83856118a1565b9050838110156112b65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610480565b5f8183116113ab57826112b6565b50919050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113f7576113f76118fe565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561144e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611472919061183c565b81600181518110611485576114856118fe565b6001600160a01b0392831660209182029290920101526013546114ab91309116846109c3565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906114e39085905f90869030904290600401611912565b5f604051808303815f87803b1580156114fa575f80fd5b505af115801561150c573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611558573d5f803e3d5ffd5b5050565b5f818361157c5760405162461bcd60e51b81526004016104809190611588565b505f61122f84866118df565b5f6020808352835180828501525f5b818110156115b357858101830151858201604001528201611597565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115e7575f80fd5b50565b5f80604083850312156115fb575f80fd5b8235611606816115d3565b946020939093013593505050565b5f805f60608486031215611626575f80fd5b8335611631816115d3565b92506020840135611641816115d3565b929592945050506040919091013590565b5f60208284031215611662575f80fd5b81356112b6816115d3565b5f806040838503121561167e575f80fd5b8235611689816115d3565b91506020830135611699816115d3565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116f257815f19048211156116d8576116d86116a4565b808516156116e557918102915b93841c93908002906116bd565b509250929050565b5f82611708575060016103ca565b8161171457505f6103ca565b816001811461172a576002811461173457611750565b60019150506103ca565b60ff841115611745576117456116a4565b50506001821b6103ca565b5060208310610133831016604e8410600b8410161715611773575081810a6103ca565b61177d83836116b8565b805f1904821115611790576117906116a4565b029392505050565b5f6112b660ff8416836116fa565b80820281158282048414176103ca576103ca6116a4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602a908201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206a61636b7060408201526937ba1036b0b730b3b2b960b11b606082015260800190565b5f6020828403121561184c575f80fd5b81516112b6816115d3565b5f805f60608486031215611869575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215611892575f80fd5b815180151581146112b6575f80fd5b808201808211156103ca576103ca6116a4565b5f600182016118c5576118c56116a4565b5060010190565b818103818111156103ca576103ca6116a4565b5f826118f957634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156119605784516001600160a01b03168352938301939183019160010161193b565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e37647c654acc3045b5bacd01b15878112188a3a7b88b6940c9f7b38713b9f9764736f6c63430008140033

Deployed Bytecode Sourcemap

7025:8323:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8901:83;;;;;;;;;;-1:-1:-1;8971:5:0;;;;;;;;;;;-1:-1:-1;;;8971:5:0;;;;8901:83;;;;8971:5;8901:83;:::i;:::-;;;;;;;;9734:161;;;;;;;;;;-1:-1:-1;9734:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;9734:161:0;1023:187:1;8095:51:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;8095:51:0;1215:177:1;9178:95:0;;;;;;;;;;;;;:::i;9903:313::-;;;;;;;;;;-1:-1:-1;9903:313:0;;;;;:::i;:::-;;:::i;5599:97::-;;;;;;;;;;-1:-1:-1;5673:15:0;;-1:-1:-1;;;;;5673:15:0;5599:97;;;-1:-1:-1;;;;;2022:32:1;;;2004:51;;1992:2;1977:18;5599:97:0;1858:203:1;9087:83:0;;;;;;;;;;-1:-1:-1;9087:83:0;;7722:1;2208:36:1;;2196:2;2181:18;9087:83:0;2066:184:1;9281:119:0;;;;;;;;;;-1:-1:-1;9281:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;9374:18:0;9347:7;9374:18;;;:9;:18;;;;;;;9281:119;5985:148;;;;;;;;;;;;;:::i;:::-;;14333:159;;;;;;;;;;;;;:::i;7907:55::-;;;;;;;;;;;;;;;;6139:115;;;;;;;;;;;;;:::i;14194:130::-;;;;;;;;;;-1:-1:-1;14194:130:0;;;;;:::i;:::-;;:::i;5512:79::-;;;;;;;;;;-1:-1:-1;5550:7:0;5577:6;-1:-1:-1;;;;;5577:6:0;5512:79;;7969:55;;;;;;;;;;;;;;;;9408:167;;;;;;;;;;-1:-1:-1;9408:167:0;;;;;:::i;:::-;;:::i;8031:57::-;;;;;;;;;;;;;;;;14601:707;;;;;;;;;;;;;:::i;8373:36::-;;;;;;;;;;;;;;;;9583:143;;;;;;;;;;-1:-1:-1;9583:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;9691:18:0;;;9664:7;9691:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9583:143;9734:161;9809:4;9826:39;3209:10;9849:7;9858:6;9826:8;:39::i;:::-;-1:-1:-1;9883:4:0;9734:161;;;;;:::o;9178:95::-;9231:7;7777:13;7722:1;7777:2;:13;:::i;:::-;7765:25;;:9;:25;:::i;:::-;9251:14;;9178:95;:::o;9903:313::-;10001:4;10018:36;10028:6;10036:9;10047:6;10018:9;:36::i;:::-;10065:121;10074:6;3209:10;10096:89;10134:6;10096:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10096:19:0;;;;;;:11;:19;;;;;;;;3209:10;10096:33;;;;;;;;;;:37;:89::i;:::-;10065:8;:121::i;:::-;-1:-1:-1;10204:4:0;9903:313;;;;;:::o;5985:148::-;5745:6;;-1:-1:-1;;;;;5745:6:0;3209:10;5745:22;5737:67;;;;-1:-1:-1;;;5737:67:0;;;;;;;:::i;:::-;;;;;;;;;6092:1:::1;6076:6:::0;;6055:40:::1;::::0;-1:-1:-1;;;;;6076:6:0;;::::1;::::0;6055:40:::1;::::0;6092:1;;6055:40:::1;6123:1;6106:19:::0;;-1:-1:-1;;;;;;6106:19:0::1;::::0;;5985:148::o;14333:159::-;5745:6;;-1:-1:-1;;;;;5745:6:0;3209:10;5745:22;5737:67;;;;-1:-1:-1;;;5737:67:0;;;;;;;:::i;:::-;7777:13:::1;7722:1;7777:2;:13;:::i;:::-;7765:25;::::0;:9:::1;:25;:::i;:::-;14386:12;:22:::0;7777:13:::1;7722:1;7777:2;:13;:::i;:::-;7765:25;::::0;:9:::1;:25;:::i;:::-;14419:14;:22:::0;14457:27:::1;7777:13;7722:1;7777:2;:13;:::i;:::-;7765:25;::::0;:9:::1;:25;:::i;:::-;14457:27;::::0;1361:25:1;;;1349:2;1334:18;14457:27:0::1;;;;;;;14333:159::o:0;6139:115::-;5879:15;;-1:-1:-1;;;;;5879:15:0;3209:10;5879:31;5871:86;;;;-1:-1:-1;;;5871:86:0;;;;;;;:::i;:::-;6218:15:::1;:28:::0;;-1:-1:-1;;;;;;6218:28:0::1;::::0;;6139:115::o;14194:130::-;5879:15;;-1:-1:-1;;;;;5879:15:0;3209:10;5879:31;5871:86;;;;-1:-1:-1;;;5871:86:0;;;;;;;:::i;:::-;14284:14:::1;:32:::0;;-1:-1:-1;;;;;;14284:32:0::1;-1:-1:-1::0;;;;;14284:32:0;;;::::1;::::0;;;::::1;::::0;;14194:130::o;9408:167::-;9486:4;9503:42;3209:10;9527:9;9538:6;9503:9;:42::i;14601:707::-;5745:6;;-1:-1:-1;;;;;5745:6:0;3209:10;5745:22;5737:67;;;;-1:-1:-1;;;5737:67:0;;;;;;;:::i;:::-;14665:11:::1;::::0;-1:-1:-1;;;14665:11:0;::::1;;;14664:12;14656:47;;;::::0;-1:-1:-1;;;14656:47:0;;5562:2:1;14656:47:0::1;::::0;::::1;5544:21:1::0;5601:2;5581:18;;;5574:30;5640:25;5620:18;;;5613:53;5683:18;;14656:47:0::1;5360:347:1::0;14656:47:0::1;14714:15;:80:::0;;-1:-1:-1;;;;;;14714:80:0::1;14751:42;14714:80:::0;;::::1;::::0;;;14805:58:::1;::::0;14822:4:::1;::::0;7777:13:::1;7722:1;7777:2;:13;:::i;:::-;7765:25;::::0;:9:::1;:25;:::i;14805:58::-;14908:15;;;;;;;;;-1:-1:-1::0;;;;;14908:15:0::1;-1:-1:-1::0;;;;;14908:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;14890:55:0::1;;14954:4;14961:15;;;;;;;;;-1:-1:-1::0;;;;;14961:15:0::1;-1:-1:-1::0;;;;;14961:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14890:94;::::0;-1:-1:-1;;;;;;14890:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6198:15:1;;;14890:94:0::1;::::0;::::1;6180:34:1::0;6250:15;;6230:18;;;6223:43;6115:18;;14890:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14874:13;:110:::0;;-1:-1:-1;;;;;14874:110:0;;::::1;-1:-1:-1::0;;;;;;14874:110:0;;::::1;;::::0;;14995:15:::1;::::0;::::1;:31;15034:21;15065:4;15071:24;15065:4:::0;-1:-1:-1;;;;;9374:18:0;9347:7;9374:18;;;:9;:18;;;;;;;9281:119;15071:24:::1;15096:1;15098::::0;15100:7:::1;5550::::0;5577:6;-1:-1:-1;;;;;5577:6:0;;5512:79;15100:7:::1;14995:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;14995:129:0;;;-1:-1:-1;;;;;6636:15:1;;;14995:129:0::1;::::0;::::1;6618:34:1::0;6668:18;;;6661:34;;;;6711:18;;;6704:34;;;;6754:18;;;6747:34;6818:15;;;6797:19;;;6790:44;15108:15:0::1;6850:19:1::0;;;6843:35;6552:19;;14995:129:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;15142:13:0::1;::::0;15173:15:::1;::::0;15135:71:::1;::::0;-1:-1:-1;;;15135:71:0;;-1:-1:-1;;;;;15173:15:0;;::::1;15135:71;::::0;::::1;7374:51:1::0;-1:-1:-1;;7441:18:1;;;7434:34;15142:13:0;::::1;::::0;-1:-1:-1;15135:29:0::1;::::0;7347:18:1;;15135:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;15217:11:0::1;:18:::0;;-1:-1:-1;;;;15246:18:0;-1:-1:-1;;;15246:18:0;;;15288:12:::1;15275:10;:25:::0;14601:707::o;10224:335::-;-1:-1:-1;;;;;10317:19:0;;10309:68;;;;-1:-1:-1;;;10309:68:0;;7963:2:1;10309:68:0;;;7945:21:1;8002:2;7982:18;;;7975:30;8041:34;8021:18;;;8014:62;-1:-1:-1;;;8092:18:1;;;8085:34;8136:19;;10309:68:0;7761:400:1;10309:68:0;-1:-1:-1;;;;;10396:21:0;;10388:68;;;;-1:-1:-1;;;10388:68:0;;8368:2:1;10388:68:0;;;8350:21:1;8407:2;8387:18;;;8380:30;8446:34;8426:18;;;8419:62;-1:-1:-1;;;8497:18:1;;;8490:32;8539:19;;10388:68:0;8166:398:1;10388:68:0;-1:-1:-1;;;;;10467:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10519:32;;1361:25:1;;;10519:32:0;;1334:18:1;10519:32:0;;;;;;;10224:335;;;:::o;10567:2817::-;-1:-1:-1;;;;;10655:18:0;;10647:68;;;;-1:-1:-1;;;10647:68:0;;8771:2:1;10647:68:0;;;8753:21:1;8810:2;8790:18;;;8783:30;8849:34;8829:18;;;8822:62;-1:-1:-1;;;8900:18:1;;;8893:35;8945:19;;10647:68:0;8569:401:1;10647:68:0;-1:-1:-1;;;;;10734:16:0;;10726:64;;;;-1:-1:-1;;;10726:64:0;;9177:2:1;10726:64:0;;;9159:21:1;9216:2;9196:18;;;9189:30;9255:34;9235:18;;;9228:62;-1:-1:-1;;;9306:18:1;;;9299:33;9349:19;;10726:64:0;8975:399:1;10726:64:0;10818:1;10809:6;:10;10801:64;;;;-1:-1:-1;;;10801:64:0;;9581:2:1;10801:64:0;;;9563:21:1;9620:2;9600:18;;;9593:30;9659:34;9639:18;;;9632:62;-1:-1:-1;;;9710:18:1;;;9703:39;9759:19;;10801:64:0;9379:405:1;10801:64:0;10876:17;5577:6;;-1:-1:-1;;;;;10910:15:0;;;5577:6;;10910:15;;;;:32;;-1:-1:-1;5550:7:0;5577:6;-1:-1:-1;;;;;10929:13:0;;;5577:6;;10929:13;;10910:32;10906:2122;;;10971:76;11043:3;10971:67;10993:15;;10983:9;;:25;10982:55;;11023:14;;10982:55;;;11010:12;;10982:55;10971:6;;:10;:67::i;:::-;:71;;:76::i;:::-;11076:13;;10959:88;;-1:-1:-1;;;;;;11068:21:0;;;11076:13;;11068:21;:55;;;;-1:-1:-1;11107:15:0;;-1:-1:-1;;;;;11093:30:0;;;11107:15;;11093:30;;11068:55;:83;;;;-1:-1:-1;;;;;;11129:22:0;;;;;;:18;:22;;;;;;;;11127:24;11068:83;11064:436;;;11191:12;;11181:6;:22;;11173:60;;;;-1:-1:-1;;;11173:60:0;;9991:2:1;11173:60:0;;;9973:21:1;10030:2;10010:18;;;10003:30;10069:27;10049:18;;;10042:55;10114:18;;11173:60:0;9789:349:1;11173:60:0;11286:14;;11276:6;11260:13;11270:2;-1:-1:-1;;;;;9374:18:0;9347:7;9374:18;;;:9;:18;;;;;;;9281:119;11260:13;:22;;;;:::i;:::-;:40;;11252:79;;;;-1:-1:-1;;;11252:79:0;;10475:2:1;11252:79:0;;;10457:21:1;10514:2;10494:18;;;10487:30;10553:28;10533:18;;;10526:56;10599:18;;11252:79:0;10273:350:1;11252:79:0;11374:12;11356:10;;11369:1;11356:14;;;;:::i;:::-;:30;11352:103;;;13631:20;;13679:8;11411:24;;;;;;11473:9;:11;;;:9;:11;;;:::i;:::-;;;;;;11064:436;11526:13;;-1:-1:-1;;;;;11520:19:0;;;11526:13;;11520:19;;;;:47;;-1:-1:-1;;;;;;11545:22:0;;;;;;:18;:22;;;;;;;;11543:24;11520:47;11516:167;;;11622:14;;11612:6;11596:13;11606:2;-1:-1:-1;;;;;9374:18:0;9347:7;9374:18;;;:9;:18;;;;;;;9281:119;11596:13;:22;;;;:::i;:::-;:40;;11588:79;;;;-1:-1:-1;;;11588:79:0;;10475:2:1;11588:79:0;;;10457:21:1;10514:2;10494:18;;;10487:30;10553:28;10533:18;;;10526:56;10599:18;;11588:79:0;10273:350:1;11588:79:0;11708:13;;-1:-1:-1;;;;;11702:19:0;;;11708:13;;11702:19;:43;;;;-1:-1:-1;;;;;;11725:20:0;;11740:4;11725:20;;11702:43;11699:174;;;11778:79;11853:3;11778:70;11800:16;;11790:9;;:26;11789:58;;11832:15;;11789:58;;;11818:13;;11778:6;;:10;:70::i;:79::-;11766:91;;11699:174;11938:4;11889:28;9374:18;;;:9;:18;;;;;;11964:6;;-1:-1:-1;;;11964:6:0;;;;11963:7;:32;;;;-1:-1:-1;11982:13:0;;-1:-1:-1;;;;;11974:21:0;;;11982:13;;11974:21;11963:32;:47;;;;-1:-1:-1;11999:11:0;;-1:-1:-1;;;11999:11:0;;;;11963:47;:89;;;;;12035:17;;12014:20;:38;11963:89;:121;;;;;12066:18;;12056:9;;:28;11963:121;11959:1058;;;12096:20;12141:28;:20;12166:2;12141:24;:28::i;:::-;12123:46;;12216:15;12195:17;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;;12293:4:0;12275:24;;;;:9;:24;;;;;;:45;;12304:15;12275:28;:45::i;:::-;12268:4;12250:24;;;;:9;:24;;;;;:70;;;;12384:6;12366:26;;;;:47;;12397:15;12366:30;:47::i;:::-;12357:6;12339:26;;;;:9;:26;;;:74;;;;:26;12437:57;12454:4;;12437:57;;;;12478:15;1361:25:1;;1349:2;1334:18;;1215:177;12437:57:0;;;;;;;;12579:4;12529:29;9374:18;;;:9;:18;;;;;;12529:56;;12604:68;12621:50;12625:6;12632:38;12636:21;12658:11;;12632:3;:38::i;:::-;12621:3;:50::i;:::-;12604:16;:68::i;:::-;12720:21;12763:22;;12760:242;;12803:14;;-1:-1:-1;;;;;12803:14:0;12795:32;12835:28;:21;12861:1;12835:25;:28::i;:::-;12795:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12922:35;12935:21;12922:12;:35::i;:::-;12086:931;;;11959:1058;10944:2084;10906:2122;13043:11;;13040:161;;13111:4;13093:24;;;;:9;:24;;;;;;:39;;13122:9;13093:28;:39::i;:::-;13086:4;13068:24;;;;:9;:24;;;;;;;:64;;;;13150:39;;-1:-1:-1;;;;;13150:39:0;;;;;;;13179:9;1361:25:1;;1349:2;1334:18;;1215:177;13150:39:0;;;;;;;;13040:161;-1:-1:-1;;;;;13227:15:0;;;;;;:9;:15;;;;;;:27;;13247:6;13227:19;:27::i;:::-;-1:-1:-1;;;;;13211:15:0;;;;;;:9;:15;;;;;:43;13279:40;13297:21;:6;13308:9;13297:10;:21::i;:::-;-1:-1:-1;;;;;13279:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;13265:13:0;;;;;;;:9;:13;;;;;:54;;;;13335:41;;;13354:21;:6;13365:9;13354:10;:21::i;:::-;13335:41;;1361:25:1;;;1349:2;1334:18;13335:41:0;;;;;;;10636:2748;10567:2817;;;:::o;4337:190::-;4423:7;4459:12;4451:6;;;;4443:29;;;;-1:-1:-1;;;4443:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4483:9:0;4495:5;4499:1;4495;:5;:::i;:::-;4483:17;4337:190;-1:-1:-1;;;;;4337:190:0:o;4535:246::-;4593:7;4617:1;4622;4617:6;4613:47;;-1:-1:-1;4647:1:0;4640:8;;4613:47;4670:9;4682:5;4686:1;4682;:5;:::i;:::-;4670:17;-1:-1:-1;4715:1:0;4706:5;4710:1;4670:17;4706:5;:::i;:::-;:10;4698:56;;;;-1:-1:-1;;;4698:56:0;;11325:2:1;4698:56:0;;;11307:21:1;11364:2;11344:18;;;11337:30;11403:34;11383:18;;;11376:62;-1:-1:-1;;;11454:18:1;;;11447:31;11495:19;;4698:56:0;11123:397:1;4698:56:0;4772:1;4535:246;-1:-1:-1;;;4535:246:0:o;4789:132::-;4847:7;4874:39;4878:1;4881;4874:39;;;;;;;;;;;;;;;;;:3;:39::i;4193:136::-;4251:7;4278:43;4282:1;4285;4278:43;;;;;;;;;;;;;;;;;:3;:43::i;4006:179::-;4064:7;;4096:5;4100:1;4096;:5;:::i;:::-;4084:17;;4125:1;4120;:6;;4112:46;;;;-1:-1:-1;;;4112:46:0;;11727:2:1;4112:46:0;;;11709:21:1;11766:2;11746:18;;;11739:30;11805:29;11785:18;;;11778:57;11852:18;;4112:46:0;11525:351:1;13394:98:0;13451:7;13478:1;13476;:3;13475:9;;13483:1;13475:9;;;-1:-1:-1;13481:1:0;13394:98;-1:-1:-1;13394:98:0:o;13703:483::-;8500:6;:13;;-1:-1:-1;;;;8500:13:0;-1:-1:-1;;;8500:13:0;;;13805:16:::1;::::0;;13819:1:::1;13805:16:::0;;;;;::::1;::::0;;-1:-1:-1;;13805:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;13805:16:0::1;13781:40;;13850:4;13832;13837:1;13832:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13832:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;13876:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;13876:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;13832:7;;13876:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13866:4;13871:1;13866:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13866:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;13941:15:::1;::::0;13909:62:::1;::::0;13926:4:::1;::::0;13941:15:::1;13959:11:::0;13909:8:::1;:62::i;:::-;13982:15;::::0;:196:::1;::::0;-1:-1:-1;;;13982:196:0;;-1:-1:-1;;;;;13982:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;14063:11;;13982:15:::1;::::0;14105:4;;14132::::1;::::0;14152:15:::1;::::0;13982:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;8536:6:0;:14;;-1:-1:-1;;;;8536:14:0;;;-1:-1:-1;;;;13703:483:0:o;14500:92::-;14557:10;;:27;;-1:-1:-1;;;;;14557:10:0;;;;:27;;;;;14577:6;;14557:10;:27;:10;:27;14577:6;14557:10;:27;;;;;;;;;;;;;;;;;;;;;14500:92;:::o;4929:189::-;5015:7;5050:12;5043:5;5035:28;;;;-1:-1:-1;;;5035:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5074:9:0;5086:5;5090:1;5086;: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;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441: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;4949:406::-;5151:2;5133:21;;;5190:2;5170:18;;;5163:30;5229:34;5224:2;5209:18;;5202:62;-1:-1:-1;;;5295:2:1;5280:18;;5273:40;5345:3;5330:19;;4949:406::o;5712:251::-;5782:6;5835:2;5823:9;5814:7;5810:23;5806:32;5803:52;;;5851:1;5848;5841:12;5803:52;5883:9;5877:16;5902:31;5927:5;5902:31;:::i;6889:306::-;6977:6;6985;6993;7046:2;7034:9;7025:7;7021:23;7017:32;7014:52;;;7062:1;7059;7052:12;7014:52;7091:9;7085:16;7075:26;;7141:2;7130:9;7126:18;7120:25;7110:35;;7185:2;7174:9;7170:18;7164:25;7154:35;;6889:306;;;;;:::o;7479:277::-;7546:6;7599:2;7587:9;7578:7;7574:23;7570:32;7567:52;;;7615:1;7612;7605:12;7567:52;7647:9;7641:16;7700:5;7693:13;7686:21;7679:5;7676:32;7666:60;;7722:1;7719;7712:12;10143:125;10208:9;;;10229:10;;;10226:36;;;10242:18;;:::i;10628:135::-;10667:3;10688:17;;;10685:43;;10708:18;;:::i;:::-;-1:-1:-1;10755:1:1;10744:13;;10628:135::o;10768:128::-;10835:9;;;10856:11;;;10853:37;;;10870:18;;:::i;10901:217::-;10941:1;10967;10957:132;;11011:10;11006:3;11002:20;10999:1;10992:31;11046:4;11043:1;11036:15;11074:4;11071:1;11064:15;10957:132;-1:-1:-1;11103:9:1;;10901:217::o;12013:127::-;12074:10;12069:3;12065:20;12062:1;12055:31;12105:4;12102:1;12095:15;12129:4;12126:1;12119:15;12145:980;12407:4;12455:3;12444:9;12440:19;12486:6;12475:9;12468:25;12512:2;12550:6;12545:2;12534:9;12530:18;12523:34;12593:3;12588:2;12577:9;12573:18;12566:31;12617:6;12652;12646:13;12683:6;12675;12668:22;12721:3;12710:9;12706:19;12699:26;;12760:2;12752:6;12748:15;12734:29;;12781:1;12791:195;12805:6;12802:1;12799:13;12791:195;;;12870:13;;-1:-1:-1;;;;;12866:39:1;12854:52;;12961:15;;;;12926:12;;;;12902:1;12820:9;12791:195;;;-1:-1:-1;;;;;;;13042:32:1;;;;13037:2;13022:18;;13015:60;-1:-1:-1;;;13106:3:1;13091:19;13084:35;13003:3;12145:980;-1:-1:-1;;;12145:980:1:o

Swarm Source

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