ETH Price: $3,113.58 (-0.27%)

Token

Funky Monkey (FONKEY)
 

Overview

Max Total Supply

1,000,000 FONKEY

Holders

87

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
2,569.728070875 FONKEY

Value
$0.00
0xe5e7d1e8216abb22e360e128fea495a5c031bc1f
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:
FONKEY

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: token.sol
// SPDX-License-Identifier: MIT

/**

Telegram: https://t.me/FunkyMonkeyEntry
Twitter: https://twitter.com/FunkyMonkeyERC
Website: https://funky-monkey-erc.com

**/

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

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 FONKEY 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;
    mapping (address => bool) private bots;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = false;
    address payable private _taxWallet;

    uint256 private _initialBuyTax=20;
    uint256 private _initialSellTax=20;
    uint256 private _finalBuyTax=1;
    uint256 private _finalSellTax=1;
    uint256 private _reduceBuyTaxAt=15;
    uint256 private _reduceSellTaxAt=15;
    uint256 private _preventSwapBefore=15;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 1000000 * 10**_decimals;
    string private constant _name = unicode"Funky Monkey";
    string private constant _symbol = unicode"FONKEY";
    uint256 public _maxTxAmount = 20000 * 10**_decimals;
    uint256 public _maxWalletSize = 20000 * 10**_decimals;
    uint256 public _taxSwapThreshold= 1000 * 10**_decimals;
    uint256 public _maxTaxSwap= 12000 * 10**_decimals;

    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()) {
            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 > 50000000000000000) {
                    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 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);
        }
    }
}

File 1 of 2: 3_Ballot.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

/** 
 * @title Ballot
 * @dev Implements voting process along with vote delegation
 */
contract Ballot {

    struct Voter {
        uint weight; // weight is accumulated by delegation
        bool voted;  // if true, that person already voted
        address delegate; // person delegated to
        uint vote;   // index of the voted proposal
    }

    struct Proposal {
        // If you can limit the length to a certain number of bytes, 
        // always use one of bytes1 to bytes32 because they are much cheaper
        bytes32 name;   // short name (up to 32 bytes)
        uint voteCount; // number of accumulated votes
    }

    address public chairperson;

    mapping(address => Voter) public voters;

    Proposal[] public proposals;

    /** 
     * @dev Create a new ballot to choose one of 'proposalNames'.
     * @param proposalNames names of proposals
     */
    constructor(bytes32[] memory proposalNames) {
        chairperson = msg.sender;
        voters[chairperson].weight = 1;

        for (uint i = 0; i < proposalNames.length; i++) {
            // 'Proposal({...})' creates a temporary
            // Proposal object and 'proposals.push(...)'
            // appends it to the end of 'proposals'.
            proposals.push(Proposal({
                name: proposalNames[i],
                voteCount: 0
            }));
        }
    }

    /** 
     * @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
     * @param voter address of voter
     */
    function giveRightToVote(address voter) public {
        require(
            msg.sender == chairperson,
            "Only chairperson can give right to vote."
        );
        require(
            !voters[voter].voted,
            "The voter already voted."
        );
        require(voters[voter].weight == 0);
        voters[voter].weight = 1;
    }

    /**
     * @dev Delegate your vote to the voter 'to'.
     * @param to address to which vote is delegated
     */
    function delegate(address to) public {
        Voter storage sender = voters[msg.sender];
        require(!sender.voted, "You already voted.");
        require(to != msg.sender, "Self-delegation is disallowed.");

        while (voters[to].delegate != address(0)) {
            to = voters[to].delegate;

            // We found a loop in the delegation, not allowed.
            require(to != msg.sender, "Found loop in delegation.");
        }
        sender.voted = true;
        sender.delegate = to;
        Voter storage delegate_ = voters[to];
        if (delegate_.voted) {
            // If the delegate already voted,
            // directly add to the number of votes
            proposals[delegate_.vote].voteCount += sender.weight;
        } else {
            // If the delegate did not vote yet,
            // add to her weight.
            delegate_.weight += sender.weight;
        }
    }

    /**
     * @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
     * @param proposal index of proposal in the proposals array
     */
    function vote(uint proposal) public {
        Voter storage sender = voters[msg.sender];
        require(sender.weight != 0, "Has no right to vote");
        require(!sender.voted, "Already voted.");
        sender.voted = true;
        sender.vote = proposal;

        // If 'proposal' is out of the range of the array,
        // this will throw automatically and revert all
        // changes.
        proposals[proposal].voteCount += sender.weight;
    }

    /** 
     * @dev Computes the winning proposal taking all previous votes into account.
     * @return winningProposal_ index of winning proposal in the proposals array
     */
    function winningProposal() public view
            returns (uint winningProposal_)
    {
        uint winningVoteCount = 0;
        for (uint p = 0; p < proposals.length; p++) {
            if (proposals[p].voteCount > winningVoteCount) {
                winningVoteCount = proposals[p].voteCount;
                winningProposal_ = p;
            }
        }
    }

    /** 
     * @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
     * @return winnerName_ the name of the winner
     */
    function winnerName() public view
            returns (bytes32 winnerName_)
    {
        winnerName_ = proposals[winningProposal()].name;
    }
}

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":"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"}]

60806040526006805460ff191690556014600781905560085560016009818155600a918255600f600b819055600c819055600d555f600e55620000429162000339565b6200005090614e2062000350565b600f55620000616009600a62000339565b6200006f90614e2062000350565b601055620000806009600a62000339565b6200008e906103e862000350565b6011556200009f6009600a62000339565b620000ad90612ee062000350565b6012556014805461ffff60a81b19169055348015620000ca575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b0319166101003302179055620001306009600a62000339565b6200013f90620f424062000350565b335f908152600160208190526040822092909255600390620001685f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556006546101009004909116835291208054909216179055620001cb3390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002046009600a62000339565b6200021390620f424062000350565b60405190815260200160405180910390a36200036a565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200027e57815f19048211156200026257620002626200022a565b808516156200027057918102915b93841c939080029062000243565b509250929050565b5f82620002965750600162000333565b81620002a457505f62000333565b8160018114620002bd5760028114620002c857620002e8565b600191505062000333565b60ff841115620002dc57620002dc6200022a565b50506001821b62000333565b5060208310610133831016604e8410600b84101617156200030d575081810a62000333565b6200031983836200023e565b805f19048211156200032f576200032f6200022a565b0290505b92915050565b5f6200034960ff84168362000286565b9392505050565b80820281158282048414176200033357620003336200022a565b6117fd80620003785f395ff3fe608060405260043610610113575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb146102f4578063bf474bed14610313578063c876d0b914610328578063c9567bf914610341578063dd62ed3e14610355575f80fd5b8063751039fc146102625780637d1db4a5146102765780638da5cb5b1461028b5780638f9a55c0146102b157806395d89b41146102c6575f80fd5b806323b872dd116100e357806323b872dd146101ca578063313ce567146101e957806351bc3c851461020457806370a082311461021a578063715018a61461024e575f80fd5b806306fdde031461011e578063095ea7b3146101645780630faee56f1461019357806318160ddd146101b6575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b5060408051808201909152600c81526b46756e6b79204d6f6e6b657960a01b60208201525b60405161015b91906113f0565b60405180910390f35b34801561016f575f80fd5b5061018361017e366004611452565b610399565b604051901515815260200161015b565b34801561019e575f80fd5b506101a860125481565b60405190815260200161015b565b3480156101c1575f80fd5b506101a86103af565b3480156101d5575f80fd5b506101836101e436600461147c565b6103ce565b3480156101f4575f80fd5b506040516009815260200161015b565b34801561020f575f80fd5b50610218610435565b005b348015610225575f80fd5b506101a86102343660046114ba565b6001600160a01b03165f9081526001602052604090205490565b348015610259575f80fd5b5061021861048b565b34801561026d575f80fd5b50610218610505565b348015610281575f80fd5b506101a8600f5481565b348015610296575f80fd5b505f546040516001600160a01b03909116815260200161015b565b3480156102bc575f80fd5b506101a860105481565b3480156102d1575f80fd5b50604080518082019091526006815265464f4e4b455960d01b602082015261014e565b3480156102ff575f80fd5b5061018361030e366004611452565b6105bd565b34801561031e575f80fd5b506101a860115481565b348015610333575f80fd5b506006546101839060ff1681565b34801561034c575f80fd5b506102186105c9565b348015610360575f80fd5b506101a861036f3660046114d5565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6103a5338484610971565b5060015b92915050565b5f6103bc6009600a611600565b6103c990620f424061160e565b905090565b5f6103da848484610a94565b61042b8433610426856040518060600160405280602881526020016117a0602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611068565b610971565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b031614610459575f80fd5b305f90815260016020526040902054801561047757610477816110a0565b4780156104875761048781611210565b5050565b5f546001600160a01b031633146104bd5760405162461bcd60e51b81526004016104b490611625565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b0316331461052e5760405162461bcd60e51b81526004016104b490611625565b61053a6009600a611600565b61054790620f424061160e565b600f556105566009600a611600565b61056390620f424061160e565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61059d6009600a611600565b6105aa90620f424061160e565b60405190815260200160405180910390a1565b5f6103a5338484610a94565b5f546001600160a01b031633146105f25760405162461bcd60e51b81526004016104b490611625565b601454600160a01b900460ff161561064c5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104b4565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106949030906106876009600a611600565b61042690620f424061160e565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610708919061165a565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610767573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061078b919061165a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f9919061165a565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610840816001600160a01b03165f9081526001602052604090205490565b5f806108535f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108b9573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108de9190611675565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610933573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095791906116a0565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b0383166109d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b4565b6001600160a01b038216610a345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b4565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b4565b6001600160a01b038216610b5a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b4565b5f8111610bbb5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104b4565b5f80546001600160a01b03858116911614801590610be657505f546001600160a01b03848116911614155b15610f2b57610c176064610c11600b54600e5411610c0657600754610c0a565b6009545b859061124b565b906112d0565b60065490915060ff1615610cfd576013546001600160a01b03848116911614801590610c5157506014546001600160a01b03848116911614155b15610cfd57325f908152600560205260409020544311610ceb5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104b4565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d2857506013546001600160a01b03848116911614155b8015610d4c57506001600160a01b0383165f9081526003602052604090205460ff16155b15610e3257600f54821115610da35760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104b4565b60105482610dc5856001600160a01b03165f9081526001602052604090205490565b610dcf91906116bf565b1115610e1d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104b4565b600e8054905f610e2c836116d2565b91905055505b6014546001600160a01b038481169116148015610e5857506001600160a01b0384163014155b15610e8557610e826064610c11600c54600e5411610e7857600854610c0a565b600a54859061124b565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610ebb57506014546001600160a01b038581169116145b8015610ed05750601454600160b01b900460ff165b8015610edd575060115481115b8015610eec5750600d54600e54115b15610f2957610f0e610f0984610f0484601254611311565b611311565b6110a0565b4766b1a2bc2ec50000811115610f2757610f2747611210565b505b505b8015610fa357305f90815260016020526040902054610f4a9082611325565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f9a9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fc59083611383565b6001600160a01b0385165f90815260016020526040902055611008610fea8383611383565b6001600160a01b0385165f9081526001602052604090205490611325565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110518585611383565b60405190815260200160405180910390a350505050565b5f818484111561108b5760405162461bcd60e51b81526004016104b491906113f0565b505f61109784866116ea565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e6576110e66116fd565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561113d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611161919061165a565b81600181518110611174576111746116fd565b6001600160a01b03928316602091820292909201015260135461119a9130911684610971565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111d29085905f90869030904290600401611711565b5f604051808303815f87803b1580156111e9575f80fd5b505af11580156111fb573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610487573d5f803e3d5ffd5b5f825f0361125a57505f6103a9565b5f611265838561160e565b9050826112728583611780565b146112c95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104b4565b9392505050565b5f6112c983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113c4565b5f81831161131f57826112c9565b50919050565b5f8061133183856116bf565b9050838110156112c95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104b4565b5f6112c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611068565b5f81836113e45760405162461bcd60e51b81526004016104b491906113f0565b505f6110978486611780565b5f6020808352835180828501525f5b8181101561141b578581018301518582016040015282016113ff565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461144f575f80fd5b50565b5f8060408385031215611463575f80fd5b823561146e8161143b565b946020939093013593505050565b5f805f6060848603121561148e575f80fd5b83356114998161143b565b925060208401356114a98161143b565b929592945050506040919091013590565b5f602082840312156114ca575f80fd5b81356112c98161143b565b5f80604083850312156114e6575f80fd5b82356114f18161143b565b915060208301356115018161143b565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561155a57815f19048211156115405761154061150c565b8085161561154d57918102915b93841c9390800290611525565b509250929050565b5f82611570575060016103a9565b8161157c57505f6103a9565b8160018114611592576002811461159c576115b8565b60019150506103a9565b60ff8411156115ad576115ad61150c565b50506001821b6103a9565b5060208310610133831016604e8410600b84101617156115db575081810a6103a9565b6115e58383611520565b805f19048211156115f8576115f861150c565b029392505050565b5f6112c960ff841683611562565b80820281158282048414176103a9576103a961150c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561166a575f80fd5b81516112c98161143b565b5f805f60608486031215611687575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156116b0575f80fd5b815180151581146112c9575f80fd5b808201808211156103a9576103a961150c565b5f600182016116e3576116e361150c565b5060010190565b818103818111156103a9576103a961150c565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561175f5784516001600160a01b03168352938301939183019160010161173a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261179a57634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cc8a57a136c82f7a21e191079a1f504c8dd145a5b4a84c4305414a783173e6ff64736f6c63430008140033

Deployed Bytecode

0x608060405260043610610113575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb146102f4578063bf474bed14610313578063c876d0b914610328578063c9567bf914610341578063dd62ed3e14610355575f80fd5b8063751039fc146102625780637d1db4a5146102765780638da5cb5b1461028b5780638f9a55c0146102b157806395d89b41146102c6575f80fd5b806323b872dd116100e357806323b872dd146101ca578063313ce567146101e957806351bc3c851461020457806370a082311461021a578063715018a61461024e575f80fd5b806306fdde031461011e578063095ea7b3146101645780630faee56f1461019357806318160ddd146101b6575f80fd5b3661011a57005b5f80fd5b348015610129575f80fd5b5060408051808201909152600c81526b46756e6b79204d6f6e6b657960a01b60208201525b60405161015b91906113f0565b60405180910390f35b34801561016f575f80fd5b5061018361017e366004611452565b610399565b604051901515815260200161015b565b34801561019e575f80fd5b506101a860125481565b60405190815260200161015b565b3480156101c1575f80fd5b506101a86103af565b3480156101d5575f80fd5b506101836101e436600461147c565b6103ce565b3480156101f4575f80fd5b506040516009815260200161015b565b34801561020f575f80fd5b50610218610435565b005b348015610225575f80fd5b506101a86102343660046114ba565b6001600160a01b03165f9081526001602052604090205490565b348015610259575f80fd5b5061021861048b565b34801561026d575f80fd5b50610218610505565b348015610281575f80fd5b506101a8600f5481565b348015610296575f80fd5b505f546040516001600160a01b03909116815260200161015b565b3480156102bc575f80fd5b506101a860105481565b3480156102d1575f80fd5b50604080518082019091526006815265464f4e4b455960d01b602082015261014e565b3480156102ff575f80fd5b5061018361030e366004611452565b6105bd565b34801561031e575f80fd5b506101a860115481565b348015610333575f80fd5b506006546101839060ff1681565b34801561034c575f80fd5b506102186105c9565b348015610360575f80fd5b506101a861036f3660046114d5565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6103a5338484610971565b5060015b92915050565b5f6103bc6009600a611600565b6103c990620f424061160e565b905090565b5f6103da848484610a94565b61042b8433610426856040518060600160405280602881526020016117a0602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190611068565b610971565b5060019392505050565b60065461010090046001600160a01b0316336001600160a01b031614610459575f80fd5b305f90815260016020526040902054801561047757610477816110a0565b4780156104875761048781611210565b5050565b5f546001600160a01b031633146104bd5760405162461bcd60e51b81526004016104b490611625565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b0316331461052e5760405162461bcd60e51b81526004016104b490611625565b61053a6009600a611600565b61054790620f424061160e565b600f556105566009600a611600565b61056390620f424061160e565b6010556006805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf61059d6009600a611600565b6105aa90620f424061160e565b60405190815260200160405180910390a1565b5f6103a5338484610a94565b5f546001600160a01b031633146105f25760405162461bcd60e51b81526004016104b490611625565b601454600160a01b900460ff161561064c5760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016104b4565b601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106949030906106876009600a611600565b61042690620f424061160e565b60135f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610708919061165a565b6001600160a01b031663c9c653963060135f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610767573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061078b919061165a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107d5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f9919061165a565b601480546001600160a01b039283166001600160a01b03199091161790556013541663f305d7194730610840816001600160a01b03165f9081526001602052604090205490565b5f806108535f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156108b9573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108de9190611675565b505060145460135460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610933573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095791906116a0565b506014805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b0383166109d35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b4565b6001600160a01b038216610a345760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b4565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610af85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b4565b6001600160a01b038216610b5a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b4565b5f8111610bbb5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016104b4565b5f80546001600160a01b03858116911614801590610be657505f546001600160a01b03848116911614155b15610f2b57610c176064610c11600b54600e5411610c0657600754610c0a565b6009545b859061124b565b906112d0565b60065490915060ff1615610cfd576013546001600160a01b03848116911614801590610c5157506014546001600160a01b03848116911614155b15610cfd57325f908152600560205260409020544311610ceb5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016104b4565b325f9081526005602052604090204390555b6014546001600160a01b038581169116148015610d2857506013546001600160a01b03848116911614155b8015610d4c57506001600160a01b0383165f9081526003602052604090205460ff16155b15610e3257600f54821115610da35760405162461bcd60e51b815260206004820152601960248201527f4578636565647320746865205f6d61785478416d6f756e742e0000000000000060448201526064016104b4565b60105482610dc5856001600160a01b03165f9081526001602052604090205490565b610dcf91906116bf565b1115610e1d5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016104b4565b600e8054905f610e2c836116d2565b91905055505b6014546001600160a01b038481169116148015610e5857506001600160a01b0384163014155b15610e8557610e826064610c11600c54600e5411610e7857600854610c0a565b600a54859061124b565b90505b305f90815260016020526040902054601454600160a81b900460ff16158015610ebb57506014546001600160a01b038581169116145b8015610ed05750601454600160b01b900460ff165b8015610edd575060115481115b8015610eec5750600d54600e54115b15610f2957610f0e610f0984610f0484601254611311565b611311565b6110a0565b4766b1a2bc2ec50000811115610f2757610f2747611210565b505b505b8015610fa357305f90815260016020526040902054610f4a9082611325565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f9a9085815260200190565b60405180910390a35b6001600160a01b0384165f90815260016020526040902054610fc59083611383565b6001600160a01b0385165f90815260016020526040902055611008610fea8383611383565b6001600160a01b0385165f9081526001602052604090205490611325565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110518585611383565b60405190815260200160405180910390a350505050565b5f818484111561108b5760405162461bcd60e51b81526004016104b491906113f0565b505f61109784866116ea565b95945050505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110e6576110e66116fd565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561113d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611161919061165a565b81600181518110611174576111746116fd565b6001600160a01b03928316602091820292909201015260135461119a9130911684610971565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906111d29085905f90869030904290600401611711565b5f604051808303815f87803b1580156111e9575f80fd5b505af11580156111fb573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b6006546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f19350505050158015610487573d5f803e3d5ffd5b5f825f0361125a57505f6103a9565b5f611265838561160e565b9050826112728583611780565b146112c95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016104b4565b9392505050565b5f6112c983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506113c4565b5f81831161131f57826112c9565b50919050565b5f8061133183856116bf565b9050838110156112c95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016104b4565b5f6112c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611068565b5f81836113e45760405162461bcd60e51b81526004016104b491906113f0565b505f6110978486611780565b5f6020808352835180828501525f5b8181101561141b578581018301518582016040015282016113ff565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461144f575f80fd5b50565b5f8060408385031215611463575f80fd5b823561146e8161143b565b946020939093013593505050565b5f805f6060848603121561148e575f80fd5b83356114998161143b565b925060208401356114a98161143b565b929592945050506040919091013590565b5f602082840312156114ca575f80fd5b81356112c98161143b565b5f80604083850312156114e6575f80fd5b82356114f18161143b565b915060208301356115018161143b565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561155a57815f19048211156115405761154061150c565b8085161561154d57918102915b93841c9390800290611525565b509250929050565b5f82611570575060016103a9565b8161157c57505f6103a9565b8160018114611592576002811461159c576115b8565b60019150506103a9565b60ff8411156115ad576115ad61150c565b50506001821b6103a9565b5060208310610133831016604e8410600b84101617156115db575081810a6103a9565b6115e58383611520565b805f19048211156115f8576115f861150c565b029392505050565b5f6112c960ff841683611562565b80820281158282048414176103a9576103a961150c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f6020828403121561166a575f80fd5b81516112c98161143b565b5f805f60608486031215611687575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156116b0575f80fd5b815180151581146112c9575f80fd5b808201808211156103a9576103a961150c565b5f600182016116e3576116e361150c565b5060010190565b818103818111156103a9576103a961150c565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561175f5784516001600160a01b03168352938301939183019160010161173a565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261179a57634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cc8a57a136c82f7a21e191079a1f504c8dd145a5b4a84c4305414a783173e6ff64736f6c63430008140033

Deployed Bytecode Sourcemap

3497:7781:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5368:81;;;;;;;;;;-1:-1:-1;5437:5:1;;;;;;;;;;;;-1:-1:-1;;;5437:5:1;;;;5368:81;;;;;;;:::i;:::-;;;;;;;;6172:158;;;;;;;;;;-1:-1:-1;6172:158:1;;;;;:::i;:::-;;:::i;:::-;;;1188:14:2;;1181:22;1163:41;;1151:2;1136:18;6172:158:1;1023:187:2;4671:49:1;;;;;;;;;;;;;;;;;;;1361:25:2;;;1349:2;1334:18;4671:49:1;1215:177:2;5633:93:1;;;;;;;;;;;;;:::i;6336:309::-;;;;;;;;;;-1:-1:-1;6336:309:1;;;;;:::i;:::-;;:::i;5546:81::-;;;;;;;;;;-1:-1:-1;5546:81:1;;4310:1;2000:36:2;;1988:2;1973:18;5546:81:1;1858:184:2;10938:338:1;;;;;;;;;;;;;:::i;:::-;;5732:117;;;;;;;;;;-1:-1:-1;5732:117:1;;;;;:::i;:::-;-1:-1:-1;;;;;5824:18:1;5798:7;5824:18;;;:9;:18;;;;;;;5732:117;2609:145;;;;;;;;;;;;;:::i;9941:191::-;;;;;;;;;;;;;:::i;4495:51::-;;;;;;;;;;;;;;;;2404:77;;;;;;;;;;-1:-1:-1;2442:7:1;2468:6;2404:77;;-1:-1:-1;;;;;2468:6:1;;;2445:51:2;;2433:2;2418:18;2404:77:1;2299:203:2;4552:53:1;;;;;;;;;;;;;;;;5455:85;;;;;;;;;;-1:-1:-1;5526:7:1;;;;;;;;;;;;-1:-1:-1;;;5526:7:1;;;;5455:85;;5855:164;;;;;;;;;;-1:-1:-1;5855:164:1;;;;;:::i;:::-;;:::i;4611:54::-;;;;;;;;;;;;;;;;3878:40;;;;;;;;;;-1:-1:-1;3878:40:1;;;;;;;;10235:662;;;;;;;;;;;;;:::i;6025:141::-;;;;;;;;;;-1:-1:-1;6025:141:1;;;;;:::i;:::-;-1:-1:-1;;;;;6132:18:1;;;6106:7;6132:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6025:141;6172:158;6247:4;6263:39;302:10;6286:7;6295:6;6263:8;:39::i;:::-;-1:-1:-1;6319:4:1;6172:158;;;;;:::o;5633:93::-;5686:7;4362:13;4310:1;4362:2;:13;:::i;:::-;4352:23;;:7;:23;:::i;:::-;5705:14;;5633:93;:::o;6336:309::-;6434:4;6450:36;6460:6;6468:9;6479:6;6450:9;:36::i;:::-;6496:121;6505:6;302:10;6527:89;6565:6;6527:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6527:19:1;;;;;;:11;:19;;;;;;;;302:10;6527:33;;;;;;;;;;:37;:89::i;:::-;6496:8;:121::i;:::-;-1:-1:-1;6634:4:1;6336:309;;;;;:::o;10938:338::-;11001:10;;;;;-1:-1:-1;;;;;11001:10:1;302;-1:-1:-1;;;;;10987:24:1;;10979:33;;;;;;11061:4;11022:20;5824:18;;;:9;:18;;;;;;11080:14;;11077:71;;11107:30;11124:12;11107:16;:30::i;:::-;11176:21;11210:12;;11207:63;;11235:24;11248:10;11235:12;:24::i;:::-;10969:307;;10938:338::o;2609:145::-;2526:6;;-1:-1:-1;;;;;2526:6:1;302:10;2526:22;2518:67;;;;-1:-1:-1;;;2518:67:1;;;;;;;:::i;:::-;;;;;;;;;2715:1:::1;2699:6:::0;;2678:40:::1;::::0;-1:-1:-1;;;;;2699:6:1;;::::1;::::0;2678:40:::1;::::0;2715:1;;2678:40:::1;2745:1;2728:19:::0;;-1:-1:-1;;;;;;2728:19:1::1;::::0;;2609:145::o;9941:191::-;2526:6;;-1:-1:-1;;;;;2526:6:1;302:10;2526:22;2518:67;;;;-1:-1:-1;;;2518:67:1;;;;;;;:::i;:::-;4362:13:::1;4310:1;4362:2;:13;:::i;:::-;4352:23;::::0;:7:::1;:23;:::i;:::-;9993:12;:22:::0;4362:13:::1;4310:1;4362:2;:13;:::i;:::-;4352:23;::::0;:7:::1;:23;:::i;:::-;10025:14;:22:::0;10057:20:::1;:26:::0;;-1:-1:-1;;10057:26:1::1;::::0;;10098:27:::1;4362:13;4310:1;-1:-1:-1::0;4362:13:1::1;:::i;:::-;4352:23;::::0;:7:::1;:23;:::i;:::-;10098:27;::::0;1361:25:2;;;1349:2;1334:18;10098:27:1::1;;;;;;;9941:191::o:0;5855:164::-;5933:4;5949:42;302:10;5973:9;5984:6;5949:9;:42::i;10235:662::-;2526:6;;-1:-1:-1;;;;;2526:6:1;302:10;2526:22;2518:67;;;;-1:-1:-1;;;2518:67:1;;;;;;;:::i;:::-;10298:11:::1;::::0;-1:-1:-1;;;10298:11:1;::::1;;;10297:12;10289:47;;;::::0;-1:-1:-1;;;10289:47:1;;5151:2:2;10289:47:1::1;::::0;::::1;5133:21:2::0;5190:2;5170:18;;;5163:30;5229:25;5209:18;;;5202:53;5272:18;;10289:47:1::1;4949:347:2::0;10289:47:1::1;10346:15;:80:::0;;-1:-1:-1;;;;;;10346:80:1::1;10383:42;10346:80:::0;;::::1;::::0;;;10436:58:::1;::::0;10453:4:::1;::::0;4362:13:::1;4310:1;4362:2;:13;:::i;:::-;4352:23;::::0;:7:::1;:23;:::i;10436:58::-;10538:15;;;;;;;;;-1:-1:-1::0;;;;;10538:15:1::1;-1:-1:-1::0;;;;;10538:23:1::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10520:55:1::1;;10584:4;10591:15;;;;;;;;;-1:-1:-1::0;;;;;10591:15:1::1;-1:-1:-1::0;;;;;10591:20:1::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10520:94;::::0;-1:-1:-1;;;;;;10520:94:1::1;::::0;;;;;;-1:-1:-1;;;;;5787:15:2;;;10520:94:1::1;::::0;::::1;5769:34:2::0;5839:15;;5819:18;;;5812:43;5704:18;;10520:94:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10504:13;:110:::0;;-1:-1:-1;;;;;10504:110:1;;::::1;-1:-1:-1::0;;;;;;10504:110:1;;::::1;;::::0;;10624:15:::1;::::0;::::1;:31;10663:21;10694:4;10700:24;10694:4:::0;-1:-1:-1;;;;;5824:18:1;5798:7;5824:18;;;:9;:18;;;;;;;5732:117;10700:24:::1;10725:1;10727::::0;10729:7:::1;2442::::0;2468:6;-1:-1:-1;;;;;2468:6:1;;2404:77;10729:7:::1;10624:129;::::0;::::1;::::0;;;-1:-1:-1;;;;;;10624:129:1;;;-1:-1:-1;;;;;6225:15:2;;;10624:129:1::1;::::0;::::1;6207:34:2::0;6257:18;;;6250:34;;;;6300:18;;;6293:34;;;;6343:18;;;6336:34;6407:15;;;6386:19;;;6379:44;10737:15:1::1;6439:19:2::0;;;6432:35;6141:19;;10624:129:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;10770:13:1::1;::::0;10801:15:::1;::::0;10763:71:::1;::::0;-1:-1:-1;;;10763:71:1;;-1:-1:-1;;;;;10801:15:1;;::::1;10763:71;::::0;::::1;6963:51:2::0;-1:-1:-1;;7030:18:2;;;7023:34;10770:13:1;::::1;::::0;-1:-1:-1;10763:29:1::1;::::0;6936:18:2;;10763:71:1::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;10844:11:1::1;:18:::0;;-1:-1:-1;;;;10872:18:1;-1:-1:-1;;;10872:18:1;;;10235:662::o;6651:330::-;-1:-1:-1;;;;;6743:19:1;;6735:68;;;;-1:-1:-1;;;6735:68:1;;7552:2:2;6735:68:1;;;7534:21:2;7591:2;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;-1:-1:-1;;;7681:18:2;;;7674:34;7725:19;;6735:68:1;7350:400:2;6735:68:1;-1:-1:-1;;;;;6821:21:1;;6813:68;;;;-1:-1:-1;;;6813:68:1;;7957:2:2;6813:68:1;;;7939:21:2;7996:2;7976:18;;;7969:30;8035:34;8015:18;;;8008:62;-1:-1:-1;;;8086:18:2;;;8079:32;8128:19;;6813:68:1;7755:398:2;6813:68:1;-1:-1:-1;;;;;6891:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;6942:32;;1361:25:2;;;6942:32:1;;1334:18:2;6942:32:1;;;;;;;6651:330;;;:::o;6987:2368::-;-1:-1:-1;;;;;7074:18:1;;7066:68;;;;-1:-1:-1;;;7066:68:1;;8360:2:2;7066:68:1;;;8342:21:2;8399:2;8379:18;;;8372:30;8438:34;8418:18;;;8411:62;-1:-1:-1;;;8489:18:2;;;8482:35;8534:19;;7066:68:1;8158:401:2;7066:68:1;-1:-1:-1;;;;;7152:16:1;;7144:64;;;;-1:-1:-1;;;7144:64:1;;8766:2:2;7144:64:1;;;8748:21:2;8805:2;8785:18;;;8778:30;8844:34;8824:18;;;8817:62;-1:-1:-1;;;8895:18:2;;;8888:33;8938:19;;7144:64:1;8564:399:2;7144:64:1;7235:1;7226:6;:10;7218:64;;;;-1:-1:-1;;;7218:64:1;;9170:2:2;7218:64:1;;;9152:21:2;9209:2;9189:18;;;9182:30;9248:34;9228:18;;;9221:62;-1:-1:-1;;;9299:18:2;;;9292:39;9348:19;;7218:64:1;8968:405:2;7218:64:1;7292:17;2468:6;;-1:-1:-1;;;;;7325:15:1;;;2468:6;;7325:15;;;;:32;;-1:-1:-1;2442:7:1;2468:6;-1:-1:-1;;;;;7344:13:1;;;2468:6;;7344:13;;7325:32;7321:1687;;;7385:76;7457:3;7385:67;7407:15;;7397:9;;:25;7396:55;;7437:14;;7396:55;;;7424:12;;7396:55;7385:6;;:10;:67::i;:::-;:71;;:76::i;:::-;7480:20;;7373:88;;-1:-1:-1;7480:20:1;;7476:499;;;7540:15;;-1:-1:-1;;;;;7526:30:1;;;7540:15;;7526:30;;;;:62;;-1:-1:-1;7574:13:1;;-1:-1:-1;;;;;7560:28:1;;;7574:13;;7560:28;;7526:62;7522:437;;;7678:9;7649:39;;;;:28;:39;;;;;;7721:12;-1:-1:-1;7614:246:1;;;;-1:-1:-1;;;7614:246:1;;9580:2:2;7614:246:1;;;9562:21:2;9619:2;9599:18;;;9592:30;9658:34;9638:18;;;9631:62;9729:34;9709:18;;;9702:62;-1:-1:-1;;;9780:19:2;;;9773:40;9830:19;;7614:246:1;9378:477:2;7614:246:1;7913:9;7884:39;;;;:28;:39;;;;;7926:12;7884:54;;7522:437;8001:13;;-1:-1:-1;;;;;7993:21:1;;;8001:13;;7993:21;:55;;;;-1:-1:-1;8032:15:1;;-1:-1:-1;;;;;8018:30:1;;;8032:15;;8018:30;;7993:55;:83;;;;-1:-1:-1;;;;;;8054:22:1;;;;;;:18;:22;;;;;;;;8052:24;7993:83;7989:309;;;8115:12;;8105:6;:22;;8097:60;;;;-1:-1:-1;;;8097:60:1;;10062:2:2;8097:60:1;;;10044:21:2;10101:2;10081:18;;;10074:30;10140:27;10120:18;;;10113:55;10185:18;;8097:60:1;9860:349:2;8097:60:1;8209:14;;8199:6;8183:13;8193:2;-1:-1:-1;;;;;5824:18:1;5798:7;5824:18;;;:9;:18;;;;;;;5732:117;8183:13;:22;;;;:::i;:::-;:40;;8175:79;;;;-1:-1:-1;;;8175:79:1;;10546:2:2;8175:79:1;;;10528:21:2;10585:2;10565:18;;;10558:30;10624:28;10604:18;;;10597:56;10670:18;;8175:79:1;10344:350:2;8175:79:1;8272:9;:11;;;:9;:11;;;:::i;:::-;;;;;;7989:309;8321:13;;-1:-1:-1;;;;;8315:19:1;;;8321:13;;8315:19;:43;;;;-1:-1:-1;;;;;;8338:20:1;;8353:4;8338:20;;8315:43;8312:172;;;8390:79;8465:3;8390:70;8412:16;;8402:9;;:26;8401:58;;8444:15;;8401:58;;;8430:13;;8390:6;;:10;:70::i;:79::-;8378:91;;8312:172;8547:4;8498:28;5824:18;;;:9;:18;;;;;;8572:6;;-1:-1:-1;;;8572:6:1;;;;8571:7;:32;;;;-1:-1:-1;8590:13:1;;-1:-1:-1;;;;;8582:21:1;;;8590:13;;8582:21;8571:32;:47;;;;-1:-1:-1;8607:11:1;;-1:-1:-1;;;8607:11:1;;;;8571:47;:89;;;;;8643:17;;8622:20;:38;8571:89;:121;;;;;8674:18;;8664:9;;:28;8571:121;8567:431;;;8712:67;8729:49;8733:6;8740:37;8744:20;8765:11;;8740:3;:37::i;:::-;8729:3;:49::i;:::-;8712:16;:67::i;:::-;8826:21;8889:17;8868:38;;8865:119;;;8930:35;8943:21;8930:12;:35::i;:::-;8694:304;8567:431;7359:1649;7321:1687;9021:11;;9018:158;;9088:4;9070:24;;;;:9;:24;;;;;;:39;;9099:9;9070:28;:39::i;:::-;9063:4;9045:24;;;;:9;:24;;;;;;;:64;;;;9126:39;;-1:-1:-1;;;;;9126:39:1;;;;;;;9155:9;1361:25:2;;1349:2;1334:18;;1215:177;9126:39:1;;;;;;;;9018:158;-1:-1:-1;;;;;9201:15:1;;;;;;:9;:15;;;;;;:27;;9221:6;9201:19;:27::i;:::-;-1:-1:-1;;;;;9185:15:1;;;;;;:9;:15;;;;;:43;9252:40;9270:21;:6;9281:9;9270:10;:21::i;:::-;-1:-1:-1;;;;;9252:13:1;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;9238:13:1;;;;;;;:9;:13;;;;;:54;;;;9307:41;;;9326:21;:6;9337:9;9326:10;:21::i;:::-;9307:41;;1361:25:2;;;1349:2;1334:18;9307:41:1;;;;;;;7056:2299;6987:2368;;;:::o;1333:186::-;1419:7;1454:12;1446:6;;;;1438:29;;;;-1:-1:-1;;;1438:29:1;;;;;;;;:::i;:::-;-1:-1:-1;1477:9:1;1489:5;1493:1;1489;:5;:::i;:::-;1477:17;1333:186;-1:-1:-1;;;;;1333:186:1:o;9464:471::-;4992:6;:13;;-1:-1:-1;;;;4992:13:1;-1:-1:-1;;;4992:13:1;;;9565:16:::1;::::0;;9579:1:::1;9565:16:::0;;;;;::::1;::::0;;-1:-1:-1;;9565:16:1::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;9565:16:1::1;9541:40;;9609:4;9591;9596:1;9591:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9591:23:1;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;9634:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;9634:22:1;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;9591:7;;9634:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9624:4;9629:1;9624:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;9624:32:1;;::::1;:7;::::0;;::::1;::::0;;;;;:32;9698:15:::1;::::0;9666:62:::1;::::0;9683:4:::1;::::0;9698:15:::1;9716:11:::0;9666:8:::1;:62::i;:::-;9738:15;::::0;:190:::1;::::0;-1:-1:-1;;;9738:190:1;;-1:-1:-1;;;;;9738:15:1;;::::1;::::0;:66:::1;::::0;:190:::1;::::0;9818:11;;9738:15:::1;::::0;9858:4;;9884::::1;::::0;9903:15:::1;::::0;9738:190:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5026:6:1;:14;;-1:-1:-1;;;;5026:14:1;;;-1:-1:-1;;;;9464:471:1:o;10138:90::-;10194:10;;:27;;:10;;;;-1:-1:-1;;;;;10194:10:1;;:27;;;;;;;;;;;;:10;:27;;;;;;;;;;;;;;;;;;;1525:239;1583:7;1606:1;1611;1606:6;1602:45;;-1:-1:-1;1635:1:1;1628:8;;1602:45;1656:9;1668:5;1672:1;1668;:5;:::i;:::-;1656:17;-1:-1:-1;1700:1:1;1691:5;1695:1;1656:17;1691:5;:::i;:::-;:10;1683:56;;;;-1:-1:-1;;;1683:56:1;;12645:2:2;1683:56:1;;;12627:21:2;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:2;;;12767:31;12815:19;;1683:56:1;12443:397:2;1683:56:1;1756:1;1525:239;-1:-1:-1;;;1525:239:1:o;1770:130::-;1828:7;1854:39;1858:1;1861;1854:39;;;;;;;;;;;;;;;;;:3;:39::i;9362:96::-;9419:7;9445:1;9443;:3;9442:9;;9450:1;9442:9;;;-1:-1:-1;9448:1:1;9362:96;-1:-1:-1;9362:96:1:o;1012:175::-;1070:7;;1101:5;1105:1;1101;:5;:::i;:::-;1089:17;;1129:1;1124;:6;;1116:46;;;;-1:-1:-1;;;1116:46:1;;13047:2:2;1116:46:1;;;13029:21:2;13086:2;13066:18;;;13059:30;13125:29;13105:18;;;13098:57;13172:18;;1116:46:1;12845:351:2;1193:134:1;1251:7;1277:43;1281:1;1284;1277:43;;;;;;;;;;;;;;;;;:3;:43::i;1906:185::-;1992:7;2026:12;2019:5;2011:28;;;;-1:-1:-1;;;2011:28:1;;;;;;;;:::i;:::-;-1:-1:-1;2049:9:1;2061:5;2065:1;2061;:5;:::i;14:548:2:-;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:2;;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:2: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:2;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:2;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:2;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:2;3593:5;;3528:80;3627:4;3617:76;;-1:-1:-1;3664:1:2;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:2;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:2;;;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:2: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:2;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:2;11945:52;;12052:15;;;;12017:12;;;;11993:1;11911:9;11882:195;;;-1:-1:-1;;;;;;;12133:32:2;;;;12128:2;12113:18;;12106:60;-1:-1:-1;;;12197:3:2;12182:19;12175:35;12094:3;11236:980;-1:-1:-1;;;11236:980:2: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:2;;12221:217::o

Swarm Source

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