ETH Price: $3,885.02 (-1.00%)

Token

ERC-20: Arcane (ACN)
 

Overview

Max Total Supply

1,000,000 ACN

Holders

95

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
defialloddssimp.eth
Balance
640.727462334716615661 ACN

Value
$0.00
0x6CFE0f1Cfc110be97C4D5Cc838F26c8f5Ca08f17
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:
ACN

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/**

Website:   https://arcane.bargains
Telegram:  https://t.me/arcanebargains
Twitter:   https://twitter.com/arcanebargains
 
*/

pragma solidity ^0.8.15;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Returns the address of the current owner.
     * @return The address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

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

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

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

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

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

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

    string private constant _name = unicode"Arcane";
    string private constant _symbol = unicode"ACN";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 1000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _hasNoFees;
    mapping (address => bool) private _isExcluded;

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

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

    address payable private _marketingWallet;

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

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

    constructor () {
        _marketingWallet = payable(0xCe1187e1d0e664D09C819848bBD89f61D50c8Fd7);
        _balances[_msgSender()] = _totalSupply;
        _isExcluded[_marketingWallet] = true;
        _hasNoFees[owner()] = true;
        _hasNoFees[address(this)] = true;

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

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

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

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

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

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

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

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

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

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

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

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

        uint256 taxAmount = 0;

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

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

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

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

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

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function updateFee(uint256 _fee) external onlyOwner {
        require(_fee <= 10, "Tax should be less than or equal to 10");
        _buyFee = _fee;
        _sellFee = _fee;        
    }
    
    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function removeLimits() external onlyOwner {
        _maxTxLimit = _totalSupply;
        _maxWalletTokens = _totalSupply;
    }

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

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

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

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

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

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

        swapEnabled = true;
        tradingOpen = true;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600f60068190556007556103e86200001f6012600a62000366565b6200002e90620f42406200037d565b6200003b9060146200037d565b62000047919062000397565b6008556103e86200005b6012600a62000366565b6200006a90620f42406200037d565b620000779060146200037d565b62000083919062000397565b600955620f4240620000986012600a62000366565b620000a790620f42406200037d565b620000b49060086200037d565b620000c0919062000397565b600a556103e86012600a620000d6919062000366565b620000e590620f42406200037d565b620000f29060086200037d565b620000fe919062000397565b600b55600d805462ff00ff60a01b191690553480156200011c575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b03191673ce1187e1d0e664d09c819848bbd89f61d50c8fd7179055620001916012600a62000366565b620001a090620f42406200037d565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002316012600a62000366565b6200024090620f42406200037d565b60405190815260200160405180910390a3620003b7565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620002ab57815f19048211156200028f576200028f62000257565b808516156200029d57918102915b93841c939080029062000270565b509250929050565b5f82620002c35750600162000360565b81620002d157505f62000360565b8160018114620002ea5760028114620002f55762000315565b600191505062000360565b60ff84111562000309576200030962000257565b50506001821b62000360565b5060208310610133831016604e8410600b84101617156200033a575081810a62000360565b6200034683836200026b565b805f19048211156200035c576200035c62000257565b0290505b92915050565b5f6200037660ff841683620002b3565b9392505050565b808202811582820484141762000360576200036062000257565b5f82620003b257634e487b7160e01b5f52601260045260245ffd5b500490565b61170b80620003c55f395ff3fe608060405260043610610108575f3560e01c80638da5cb5b11610092578063a9059cbb11610062578063a9059cbb146102d6578063bf474bed146102f5578063c9567bf91461030a578063dd62ed3e1461031e578063f8f3c5a914610362575f80fd5b80638da5cb5b146102515780639012c4a81461027757806395d89b4114610296578063996d3161146102c1575f80fd5b8063313ce567116100d8578063313ce567146101c357806361e8029f146101de57806370a08231146101f3578063715018a614610227578063751039fc1461023d575f80fd5b806306fdde0314610113578063095ea7b31461015357806318160ddd1461018257806323b872dd146101a4575f80fd5b3661010f57005b5f80fd5b34801561011e575f80fd5b50604080518082019091526006815265417263616e6560d01b60208201525b60405161014a91906112ff565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004611361565b610377565b604051901515815260200161014a565b34801561018d575f80fd5b5061019661038d565b60405190815260200161014a565b3480156101af575f80fd5b506101726101be36600461138b565b6103ac565b3480156101ce575f80fd5b506040516012815260200161014a565b3480156101e9575f80fd5b50610196600a5481565b3480156101fe575f80fd5b5061019661020d3660046113c9565b6001600160a01b03165f9081526003602052604090205490565b348015610232575f80fd5b5061023b610413565b005b348015610248575f80fd5b5061023b61048d565b34801561025c575f80fd5b505f546040516001600160a01b03909116815260200161014a565b348015610282575f80fd5b5061023b6102913660046113e4565b6104f0565b3480156102a1575f80fd5b5060408051808201909152600381526220a1a760e91b602082015261013d565b3480156102cc575f80fd5b5061019660095481565b3480156102e1575f80fd5b506101726102f0366004611361565b610583565b348015610300575f80fd5b50610196600b5481565b348015610315575f80fd5b5061023b61058f565b348015610329575f80fd5b506101966103383660046113fb565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561036d575f80fd5b5061019660085481565b5f610383338484610941565b5060015b92915050565b5f61039a6012600a611526565b6103a790620f4240611534565b905090565b5f6103b8848484610a64565b6104098433610404856040518060600160405280602881526020016116ae602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610fc6565b610941565b5060019392505050565b5f546001600160a01b031633146104455760405162461bcd60e51b815260040161043c9061154b565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104b65760405162461bcd60e51b815260040161043c9061154b565b6104c26012600a611526565b6104cf90620f4240611534565b6008556104de6012600a611526565b6104eb90620f4240611534565b600955565b5f546001600160a01b031633146105195760405162461bcd60e51b815260040161043c9061154b565b600a8111156105795760405162461bcd60e51b815260206004820152602660248201527f5461782073686f756c64206265206c657373207468616e206f7220657175616c604482015265020746f2031360d41b606482015260840161043c565b6006819055600755565b5f610383338484610a64565b5f546001600160a01b031633146105b85760405162461bcd60e51b815260040161043c9061154b565b600d54600160a81b900460ff161561061e5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b606482015260840161043c565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106669030906106596012600a611526565b61040490620f4240611534565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106da9190611580565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075d9190611580565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cb9190611580565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610812816001600160a01b03165f9081526003602052604090205490565b5f806108255f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561088b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108b0919061159b565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610905573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092991906115c6565b50600d805461ffff60a81b191661010160a81b179055565b6001600160a01b0383166109a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161043c565b6001600160a01b038216610a045760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161043c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ac85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161043c565b6001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161043c565b5f8111610b965760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b606482015260840161043c565b5f80546001600160a01b03858116911614801590610bc157505f546001600160a01b03848116911614155b15610e8957600d546001600160a01b038581169116148015610bf157506001546001600160a01b03848116911614155b8015610c1557506001600160a01b0383165f9081526004602052604090205460ff16155b15610d2257610c3a6064610c3460065485610ffe90919063ffffffff16565b90611083565b9050600854821115610c9a5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b606482015260840161043c565b60095482610cbc856001600160a01b03165f9081526003602052604090205490565b610cc691906115e5565b1115610d225760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b606482015260840161043c565b600d546001600160a01b038481169116148015610d4857506001600160a01b0384163014155b15610dc6576001600160a01b0384165f9081526005602052604090205460ff1615610da957610d7782826110c4565b6001600160a01b0384165f9081526003602052604081208054909190610d9e9084906115e5565b909155505050505050565b610dc36064610c3460075485610ffe90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610dfc5750600d546001600160a01b038581169116145b8015610e115750600d54600160b01b900460ff165b8015610e1e5750600a5483115b15610e8757600b548110610e3c57610e37600b54611105565b610e4f565b600a54811115610e4f57610e4f81611105565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610e85573d5f803e3d5ffd5b505b505b8015610f0157305f90815260036020526040902054610ea89082611275565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ef89085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610f2390836110c4565b6001600160a01b0385165f90815260036020526040902055610f66610f4883836110c4565b6001600160a01b0385165f9081526003602052604090205490611275565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610faf85856110c4565b60405190815260200160405180910390a350505050565b5f8184841115610fe95760405162461bcd60e51b815260040161043c91906112ff565b505f610ff584866115f8565b95945050505050565b5f825f0361100d57505f610387565b5f6110188385611534565b905082611025858361160b565b1461107c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161043c565b9392505050565b5f61107c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112d3565b5f61107c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fc6565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061114b5761114b61162a565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c69190611580565b816001815181106111d9576111d961162a565b6001600160a01b0392831660209182029290920101526001546111ff9130911684610941565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906112379085905f9086903090429060040161163e565b5f604051808303815f87803b15801561124e575f80fd5b505af1158015611260573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f8061128183856115e5565b90508381101561107c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161043c565b5f81836112f35760405162461bcd60e51b815260040161043c91906112ff565b505f610ff5848661160b565b5f6020808352835180828501525f5b8181101561132a5785810183015185820160400152820161130e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135e575f80fd5b50565b5f8060408385031215611372575f80fd5b823561137d8161134a565b946020939093013593505050565b5f805f6060848603121561139d575f80fd5b83356113a88161134a565b925060208401356113b88161134a565b929592945050506040919091013590565b5f602082840312156113d9575f80fd5b813561107c8161134a565b5f602082840312156113f4575f80fd5b5035919050565b5f806040838503121561140c575f80fd5b82356114178161134a565b915060208301356114278161134a565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561148057815f190482111561146657611466611432565b8085161561147357918102915b93841c939080029061144b565b509250929050565b5f8261149657506001610387565b816114a257505f610387565b81600181146114b857600281146114c2576114de565b6001915050610387565b60ff8411156114d3576114d3611432565b50506001821b610387565b5060208310610133831016604e8410600b8410161715611501575081810a610387565b61150b8383611446565b805f190482111561151e5761151e611432565b029392505050565b5f61107c60ff841683611488565b808202811582820484141761038757610387611432565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611590575f80fd5b815161107c8161134a565b5f805f606084860312156115ad575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156115d6575f80fd5b8151801515811461107c575f80fd5b8082018082111561038757610387611432565b8181038181111561038757610387611432565b5f8261162557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561168c5784516001600160a01b031683529383019391830191600101611667565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220931008aec2e92ecad5839cca26d069e774f731b014137f95dff8e0cf77ca69e464736f6c63430008140033

Deployed Bytecode

0x608060405260043610610108575f3560e01c80638da5cb5b11610092578063a9059cbb11610062578063a9059cbb146102d6578063bf474bed146102f5578063c9567bf91461030a578063dd62ed3e1461031e578063f8f3c5a914610362575f80fd5b80638da5cb5b146102515780639012c4a81461027757806395d89b4114610296578063996d3161146102c1575f80fd5b8063313ce567116100d8578063313ce567146101c357806361e8029f146101de57806370a08231146101f3578063715018a614610227578063751039fc1461023d575f80fd5b806306fdde0314610113578063095ea7b31461015357806318160ddd1461018257806323b872dd146101a4575f80fd5b3661010f57005b5f80fd5b34801561011e575f80fd5b50604080518082019091526006815265417263616e6560d01b60208201525b60405161014a91906112ff565b60405180910390f35b34801561015e575f80fd5b5061017261016d366004611361565b610377565b604051901515815260200161014a565b34801561018d575f80fd5b5061019661038d565b60405190815260200161014a565b3480156101af575f80fd5b506101726101be36600461138b565b6103ac565b3480156101ce575f80fd5b506040516012815260200161014a565b3480156101e9575f80fd5b50610196600a5481565b3480156101fe575f80fd5b5061019661020d3660046113c9565b6001600160a01b03165f9081526003602052604090205490565b348015610232575f80fd5b5061023b610413565b005b348015610248575f80fd5b5061023b61048d565b34801561025c575f80fd5b505f546040516001600160a01b03909116815260200161014a565b348015610282575f80fd5b5061023b6102913660046113e4565b6104f0565b3480156102a1575f80fd5b5060408051808201909152600381526220a1a760e91b602082015261013d565b3480156102cc575f80fd5b5061019660095481565b3480156102e1575f80fd5b506101726102f0366004611361565b610583565b348015610300575f80fd5b50610196600b5481565b348015610315575f80fd5b5061023b61058f565b348015610329575f80fd5b506101966103383660046113fb565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b34801561036d575f80fd5b5061019660085481565b5f610383338484610941565b5060015b92915050565b5f61039a6012600a611526565b6103a790620f4240611534565b905090565b5f6103b8848484610a64565b6104098433610404856040518060600160405280602881526020016116ae602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610fc6565b610941565b5060019392505050565b5f546001600160a01b031633146104455760405162461bcd60e51b815260040161043c9061154b565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146104b65760405162461bcd60e51b815260040161043c9061154b565b6104c26012600a611526565b6104cf90620f4240611534565b6008556104de6012600a611526565b6104eb90620f4240611534565b600955565b5f546001600160a01b031633146105195760405162461bcd60e51b815260040161043c9061154b565b600a8111156105795760405162461bcd60e51b815260206004820152602660248201527f5461782073686f756c64206265206c657373207468616e206f7220657175616c604482015265020746f2031360d41b606482015260840161043c565b6006819055600755565b5f610383338484610a64565b5f546001600160a01b031633146105b85760405162461bcd60e51b815260040161043c9061154b565b600d54600160a81b900460ff161561061e5760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b606482015260840161043c565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106669030906106596012600a611526565b61040490620f4240611534565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106b6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106da9190611580565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610739573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075d9190611580565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156107a7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107cb9190611580565b600d80546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610812816001600160a01b03165f9081526003602052604090205490565b5f806108255f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561088b573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906108b0919061159b565b5050600d5460015460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610905573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061092991906115c6565b50600d805461ffff60a81b191661010160a81b179055565b6001600160a01b0383166109a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161043c565b6001600160a01b038216610a045760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161043c565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610ac85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161043c565b6001600160a01b038216610b2a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161043c565b5f8111610b965760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b606482015260840161043c565b5f80546001600160a01b03858116911614801590610bc157505f546001600160a01b03848116911614155b15610e8957600d546001600160a01b038581169116148015610bf157506001546001600160a01b03848116911614155b8015610c1557506001600160a01b0383165f9081526004602052604090205460ff16155b15610d2257610c3a6064610c3460065485610ffe90919063ffffffff16565b90611083565b9050600854821115610c9a5760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b606482015260840161043c565b60095482610cbc856001600160a01b03165f9081526003602052604090205490565b610cc691906115e5565b1115610d225760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b606482015260840161043c565b600d546001600160a01b038481169116148015610d4857506001600160a01b0384163014155b15610dc6576001600160a01b0384165f9081526005602052604090205460ff1615610da957610d7782826110c4565b6001600160a01b0384165f9081526003602052604081208054909190610d9e9084906115e5565b909155505050505050565b610dc36064610c3460075485610ffe90919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610dfc5750600d546001600160a01b038581169116145b8015610e115750600d54600160b01b900460ff165b8015610e1e5750600a5483115b15610e8757600b548110610e3c57610e37600b54611105565b610e4f565b600a54811115610e4f57610e4f81611105565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610e85573d5f803e3d5ffd5b505b505b8015610f0157305f90815260036020526040902054610ea89082611275565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ef89085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610f2390836110c4565b6001600160a01b0385165f90815260036020526040902055610f66610f4883836110c4565b6001600160a01b0385165f9081526003602052604090205490611275565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610faf85856110c4565b60405190815260200160405180910390a350505050565b5f8184841115610fe95760405162461bcd60e51b815260040161043c91906112ff565b505f610ff584866115f8565b95945050505050565b5f825f0361100d57505f610387565b5f6110188385611534565b905082611025858361160b565b1461107c5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161043c565b9392505050565b5f61107c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506112d3565b5f61107c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fc6565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061114b5761114b61162a565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111c69190611580565b816001815181106111d9576111d961162a565b6001600160a01b0392831660209182029290920101526001546111ff9130911684610941565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906112379085905f9086903090429060040161163e565b5f604051808303815f87803b15801561124e575f80fd5b505af1158015611260573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f8061128183856115e5565b90508381101561107c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161043c565b5f81836112f35760405162461bcd60e51b815260040161043c91906112ff565b505f610ff5848661160b565b5f6020808352835180828501525f5b8181101561132a5785810183015185820160400152820161130e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461135e575f80fd5b50565b5f8060408385031215611372575f80fd5b823561137d8161134a565b946020939093013593505050565b5f805f6060848603121561139d575f80fd5b83356113a88161134a565b925060208401356113b88161134a565b929592945050506040919091013590565b5f602082840312156113d9575f80fd5b813561107c8161134a565b5f602082840312156113f4575f80fd5b5035919050565b5f806040838503121561140c575f80fd5b82356114178161134a565b915060208301356114278161134a565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111561148057815f190482111561146657611466611432565b8085161561147357918102915b93841c939080029061144b565b509250929050565b5f8261149657506001610387565b816114a257505f610387565b81600181146114b857600281146114c2576114de565b6001915050610387565b60ff8411156114d3576114d3611432565b50506001821b610387565b5060208310610133831016604e8410600b8410161715611501575081810a610387565b61150b8383611446565b805f190482111561151e5761151e611432565b029392505050565b5f61107c60ff841683611488565b808202811582820484141761038757610387611432565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611590575f80fd5b815161107c8161134a565b5f805f606084860312156115ad575f80fd5b8351925060208401519150604084015190509250925092565b5f602082840312156115d6575f80fd5b8151801515811461107c575f80fd5b8082018082111561038757610387611432565b8181038181111561038757610387611432565b5f8261162557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561168c5784516001600160a01b031683529383019391830191600101611667565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220931008aec2e92ecad5839cca26d069e774f731b014137f95dff8e0cf77ca69e464736f6c63430008140033

Deployed Bytecode Sourcemap

9888:10415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11550:83;;;;;;;;;;-1:-1:-1;11620:5:0;;;;;;;;;;;;-1:-1:-1;;;11620:5:0;;;;11550:83;;;;;;;:::i;:::-;;;;;;;;13754:161;;;;;;;;;;-1:-1:-1;13754:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13754:161:0;1023:187:1;12149:100:0;;;;;;;;;;;;;:::i;:::-;;;1361:25:1;;;1349:2;1334:18;12149:100:0;1215:177:1;14274:313:0;;;;;;;;;;-1:-1:-1;14274:313:0;;;;;:::i;:::-;;:::i;11957:83::-;;;;;;;;;;-1:-1:-1;11957:83:0;;10162:2;2000:36:1;;1988:2;1973:18;11957:83:0;1858:184:1;10675:60:0;;;;;;;;;;;;;;;;12445:119;;;;;;;;;;-1:-1:-1;12445:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12538:18:0;12511:7;12538:18;;;:9;:18;;;;;;;12445:119;7159:148;;;;;;;;;;;;;:::i;:::-;;18910:130;;;;;;;;;;;;;:::i;6609:79::-;;;;;;;;;;-1:-1:-1;6647:7:0;6674:6;6609:79;;-1:-1:-1;;;;;6674:6:0;;;2445:51:1;;2433:2;2418:18;6609:79:0;2299:203:1;18483:191:0;;;;;;;;;;-1:-1:-1;18483:191:0;;;;;:::i;:::-;;:::i;11743:87::-;;;;;;;;;;-1:-1:-1;11815:7:0;;;;;;;;;;;;-1:-1:-1;;;11815:7:0;;;;11743:87;;10610:58;;;;;;;;;;;;;;;;12846:167;;;;;;;;;;-1:-1:-1;12846:167:0;;;;;:::i;:::-;;:::i;10742:58::-;;;;;;;;;;;;;;;;19048:1102;;;;;;;;;;;;;:::i;13304:143::-;;;;;;;;;;-1:-1:-1;13304:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13412:18:0;;;13385:7;13412:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13304:143;10550:53;;;;;;;;;;;;;;;;13754:161;13829:4;13846:39;588:10;13869:7;13878:6;13846:8;:39::i;:::-;-1:-1:-1;13903:4:0;13754:161;;;;;:::o;12149:100::-;12202:7;10221:13;10162:2;10221;:13;:::i;:::-;10211:23;;:7;:23;:::i;:::-;12222:19;;12149:100;:::o;14274:313::-;14372:4;14389:36;14399:6;14407:9;14418:6;14389:9;:36::i;:::-;14436:121;14445:6;588:10;14467:89;14505:6;14467:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14467:19:0;;;;;;:11;:19;;;;;;;;588:10;14467:33;;;;;;;;;;:37;:89::i;:::-;14436:8;:121::i;:::-;-1:-1:-1;14575:4:0;14274:313;;;;;:::o;7159:148::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;;;;;;;;;7266:1:::1;7250:6:::0;;7229:40:::1;::::0;-1:-1:-1;;;;;7250:6:0;;::::1;::::0;7229:40:::1;::::0;7266:1;;7229:40:::1;7297:1;7280:19:::0;;-1:-1:-1;;;;;;7280:19:0::1;::::0;;7159:148::o;18910:130::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;10221:13:::1;10162:2;10221;:13;:::i;:::-;10211:23;::::0;:7:::1;:23;:::i;:::-;18964:11;:26:::0;10221:13:::1;10162:2;10221;:13;:::i;:::-;10211:23;::::0;:7:::1;:23;:::i;:::-;19001:16;:31:::0;18910:130::o;18483:191::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;18562:2:::1;18554:4;:10;;18546:61;;;::::0;-1:-1:-1;;;18546:61:0;;5336:2:1;18546:61:0::1;::::0;::::1;5318:21:1::0;5375:2;5355:18;;;5348:30;5414:34;5394:18;;;5387:62;-1:-1:-1;;;5465:18:1;;;5458:36;5511:19;;18546:61:0::1;5134:402:1::0;18546:61:0::1;18618:7;:14:::0;;;18643:8:::1;:15:::0;18483:191::o;12846:167::-;12924:4;12941:42;588:10;12965:9;12976:6;12941:9;:42::i;19048:1102::-;6821:6;;-1:-1:-1;;;;;6821:6:0;588:10;6821:22;6813:67;;;;-1:-1:-1;;;6813:67:0;;;;;;;:::i;:::-;19114:11:::1;::::0;-1:-1:-1;;;19114:11:0;::::1;;;19113:12;19105:61;;;::::0;-1:-1:-1;;;19105:61:0;;5743:2:1;19105:61:0::1;::::0;::::1;5725:21:1::0;5782:2;5762:18;;;5755:30;5821:34;5801:18;;;5794:62;-1:-1:-1;;;5872:18:1;;;5865:34;5916:19;;19105:61:0::1;5541:400:1::0;19105:61:0::1;19221:15;:104:::0;;-1:-1:-1;;;;;;19221:104:0::1;19272:42;19221:104:::0;;::::1;::::0;;;19408:63:::1;::::0;19425:4:::1;::::0;10221:13:::1;10162:2;10221;:13;:::i;:::-;10211:23;::::0;:7:::1;:23;:::i;19408:63::-;19554:15;;;;;;;;;-1:-1:-1::0;;;;;19554:15:0::1;-1:-1:-1::0;;;;;19554:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19536:55:0::1;;19600:4;19607:15;;;;;;;;;-1:-1:-1::0;;;;;19607:15:0::1;-1:-1:-1::0;;;;;19607:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19536:94;::::0;-1:-1:-1;;;;;;19536:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6432:15:1;;;19536:94:0::1;::::0;::::1;6414:34:1::0;6484:15;;6464:18;;;6457:43;6349:18;;19536:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19520:13;:110:::0;;-1:-1:-1;;;;;19520:110:0;;::::1;-1:-1:-1::0;;;;;;19520:110:0;;::::1;;::::0;;;19689:15;::::1;:31;19742:21;19797:4;19817:24;19797:4:::0;-1:-1:-1;;;;;12538:18:0;12511:7;12538:18;;;:9;:18;;;;;;;12445:119;19817:24:::1;19856:1;19872::::0;19888:7:::1;6647::::0;6674:6;-1:-1:-1;;;;;6674:6:0;;6609:79;19888:7:::1;19689:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19689:247:0;;;-1:-1:-1;;;;;6870:15:1;;;19689:247:0::1;::::0;::::1;6852:34:1::0;6902:18;;;6895:34;;;;6945:18;;;6938:34;;;;6988:18;;;6981:34;7052:15;;;7031:19;;;7024:44;19910:15:0::1;7084:19:1::0;;;7077:35;6786:19;;19689:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;20018:13:0::1;::::0;;20049:15;20011:71:::1;::::0;-1:-1:-1;;;20011:71:0;;-1:-1:-1;;;;;20049:15:0;;::::1;20011:71;::::0;::::1;7608:51:1::0;-1:-1:-1;;7675:18:1;;;7668:34;20018:13:0;::::1;::::0;-1:-1:-1;20011:29:0::1;::::0;7581:18:1;;20011:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;20095:11:0::1;:18:::0;;-1:-1:-1;;;;20124:18:0;-1:-1:-1;;;20124:18:0;;;19048:1102::o;14894:335::-;-1:-1:-1;;;;;14987:19:0;;14979:68;;;;-1:-1:-1;;;14979:68:0;;8197:2:1;14979:68:0;;;8179:21:1;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;-1:-1:-1;;;8326:18:1;;;8319:34;8370:19;;14979:68:0;7995:400:1;14979:68:0;-1:-1:-1;;;;;15066:21:0;;15058:68;;;;-1:-1:-1;;;15058:68:0;;8602:2:1;15058:68:0;;;8584:21:1;8641:2;8621:18;;;8614:30;8680:34;8660:18;;;8653:62;-1:-1:-1;;;8731:18:1;;;8724:32;8773:19;;15058:68:0;8400:398:1;15058:68:0;-1:-1:-1;;;;;15137:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15189:32;;1361:25:1;;;15189:32:0;;1334:18:1;15189:32:0;;;;;;;14894:335;;;:::o;15507:2347::-;-1:-1:-1;;;;;15595:18:0;;15587:68;;;;-1:-1:-1;;;15587:68:0;;9005:2:1;15587:68:0;;;8987:21:1;9044:2;9024:18;;;9017:30;9083:34;9063:18;;;9056:62;-1:-1:-1;;;9134:18:1;;;9127:35;9179:19;;15587:68:0;8803:401:1;15587:68:0;-1:-1:-1;;;;;15674:16:0;;15666:64;;;;-1:-1:-1;;;15666:64:0;;9411:2:1;15666:64:0;;;9393:21:1;9450:2;9430:18;;;9423:30;9489:34;9469:18;;;9462:62;-1:-1:-1;;;9540:18:1;;;9533:33;9583:19;;15666:64:0;9209:399:1;15666:64:0;15758:1;15749:6;:10;15741:75;;;;-1:-1:-1;;;15741:75:0;;9815:2:1;15741:75:0;;;9797:21:1;9854:2;9834:18;;;9827:30;9893:34;9873:18;;;9866:62;-1:-1:-1;;;9944:18:1;;;9937:50;10004:19;;15741:75:0;9613:416:1;15741:75:0;15829:17;6674:6;;-1:-1:-1;;;;;15956:15:0;;;6674:6;;15956:15;;;;:32;;-1:-1:-1;6647:7:0;6674:6;-1:-1:-1;;;;;15975:13:0;;;6674:6;;15975:13;;15956:32;15952:1410;;;16104:13;;-1:-1:-1;;;;;16096:21:0;;;16104:13;;16096:21;:55;;;;-1:-1:-1;16135:15:0;;-1:-1:-1;;;;;16121:30:0;;;16135:15;;16121:30;;16096:55;:74;;;;-1:-1:-1;;;;;;16156:14:0;;;;;;:10;:14;;;;;;;;16155:15;16096:74;16092:354;;;16203:28;16227:3;16203:19;16214:7;;16203:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;16191:40;;16268:11;;16258:6;:21;;16250:69;;;;-1:-1:-1;;;16250:69:0;;10236:2:1;16250:69:0;;;10218:21:1;10275:2;10255:18;;;10248:30;10314:34;10294:18;;;10287:62;-1:-1:-1;;;10365:18:1;;;10358:33;10408:19;;16250:69:0;10034:399:1;16250:69:0;16372:16;;16362:6;16346:13;16356:2;-1:-1:-1;;;;;12538:18:0;12511:7;12538:18;;;:9;:18;;;;;;;12445:119;16346:13;:22;;;;:::i;:::-;:42;;16338:92;;;;-1:-1:-1;;;16338:92:0;;10770:2:1;16338:92:0;;;10752:21:1;10809:2;10789:18;;;10782:30;10848:34;10828:18;;;10821:62;-1:-1:-1;;;10899:18:1;;;10892:35;10944:19;;16338:92:0;10568:401:1;16338:92:0;16558:13;;-1:-1:-1;;;;;16552:19:0;;;16558:13;;16552:19;:44;;;;-1:-1:-1;;;;;;16575:21:0;;16591:4;16575:21;;16552:44;16548:216;;;-1:-1:-1;;;;;16620:17:0;;;;;;:11;:17;;;;;;;;16617:72;;;16658:21;:6;16669:9;16658:10;:21::i;:::-;-1:-1:-1;;;;;16641:13:0;;;;;;:9;:13;;;;;:38;;:13;;;:38;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15507:2347:0:o;16617:72::-;16719:29;16744:3;16719:20;16730:8;;16719:6;:10;;:20;;;;:::i;:29::-;16707:41;;16548:216;16893:4;16844:28;12538:18;;;:9;:18;;;;;;16919:6;;-1:-1:-1;;;16919:6:0;;;;16918:7;:30;;;;-1:-1:-1;16935:13:0;;-1:-1:-1;;;;;16929:19:0;;;16935:13;;16929:19;16918:30;:45;;;;-1:-1:-1;16952:11:0;;-1:-1:-1;;;16952:11:0;;;;16918:45;:74;;;;;16976:16;;16967:6;:25;16918:74;16914:437;;;17041:17;;17017:20;:41;17013:256;;17083:35;17100:17;;17083:16;:35::i;:::-;17013:256;;;17170:16;;17147:20;:39;17144:125;;;17211:38;17228:20;17211:16;:38::i;:::-;17287:16;;:48;;-1:-1:-1;;;;;17287:16:0;;;;17313:21;17287:48;;;;;:16;:48;:16;:48;17313:21;17287:16;:48;;;;;;;;;;;;;;;;;;;;;16914:437;15990:1372;15952:1410;17449:13;;17445:172;;17524:4;17506:24;;;;:9;:24;;;;;;:39;;17535:9;17506:28;:39::i;:::-;17497:4;17479:24;;;;:9;:24;;;;;;;:66;;;;17565:40;;-1:-1:-1;;;;;17565:40:0;;;;;;;17595:9;1361:25:1;;1349:2;1334:18;;1215:177;17565:40:0;;;;;;;;17445:172;-1:-1:-1;;;;;17695:15:0;;;;;;:9;:15;;;;;;:27;;17715:6;17695:19;:27::i;:::-;-1:-1:-1;;;;;17677:15:0;;;;;;:9;:15;;;;;:45;17749:40;17767:21;:6;17778:9;17767:10;:21::i;:::-;-1:-1:-1;;;;;17749:13:0;;;;;;:9;:13;;;;;;;:17;:40::i;:::-;-1:-1:-1;;;;;17733:13:0;;;;;;;:9;:13;;;;;:56;;;;17805:41;;;17824:21;:6;17835:9;17824:10;:21::i;:::-;17805:41;;1361:25:1;;;1349:2;1334:18;17805:41:0;;;;;;;15576:2278;15507:2347;;;:::o;4508:190::-;4594:7;4630:12;4622:6;;;;4614:29;;;;-1:-1:-1;;;4614:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4654:9:0;4666:5;4670:1;4666;:5;:::i;:::-;4654:17;4508:190;-1:-1:-1;;;;;4508:190:0:o;4938:246::-;4996:7;5020:1;5025;5020:6;5016:47;;-1:-1:-1;5050:1:0;5043:8;;5016:47;5073:9;5085:5;5089:1;5085;:5;:::i;:::-;5073:17;-1:-1:-1;5118:1:0;5109:5;5113:1;5073:17;5109:5;:::i;:::-;:10;5101:56;;;;-1:-1:-1;;;5101:56:0;;11531:2:1;5101:56:0;;;11513:21:1;11570:2;11550:18;;;11543:30;11609:34;11589:18;;;11582:62;-1:-1:-1;;;11660:18:1;;;11653:31;11701:19;;5101:56:0;11329:397:1;5101:56:0;5175:1;4938:246;-1:-1:-1;;;4938:246:0:o;5390:132::-;5448:7;5475:39;5479:1;5482;5475:39;;;;;;;;;;;;;;;;;:3;:39::i;4033:136::-;4091:7;4118:43;4122:1;4125;4118:43;;;;;;;;;;;;;;;;;:3;:43::i;17992:483::-;11032:6;:13;;-1:-1:-1;;;;11032:13:0;-1:-1:-1;;;11032:13:0;;;18094:16:::1;::::0;;18108:1:::1;18094:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18094:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18094:16:0::1;18070:40;;18139:4;18121;18126:1;18121:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18121:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18165:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18165:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18121:7;;18165:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18155:4;18160:1;18155:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18155:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18230:15:::1;::::0;18198:62:::1;::::0;18215:4:::1;::::0;18230:15:::1;18248:11:::0;18198:8:::1;:62::i;:::-;18271:15;::::0;:196:::1;::::0;-1:-1:-1;;;18271:196:0;;-1:-1:-1;;;;;18271:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18352:11;;18271:15:::1;::::0;18394:4;;18421::::1;::::0;18441:15:::1;::::0;18271:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11068:6:0;:14;;-1:-1:-1;;;;11068:14:0;;;-1:-1:-1;;;;17992:483:0:o;3597:179::-;3655:7;;3687:5;3691:1;3687;:5;:::i;:::-;3675:17;;3716:1;3711;:6;;3703:46;;;;-1:-1:-1;;;3703:46:0;;13182:2:1;3703:46:0;;;13164:21:1;13221:2;13201:18;;;13194:30;13260:29;13240:18;;;13233:57;13307:18;;3703:46:0;12980:351:1;5810:189:0;5896:7;5931:12;5924:5;5916:28;;;;-1:-1:-1;;;5916:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5955:9:0;5967:5;5971:1;5967;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2507:180::-;2566:6;2619:2;2607:9;2598:7;2594:23;2590:32;2587:52;;;2635:1;2632;2625:12;2587:52;-1:-1:-1;2658:23:1;;2507:180;-1:-1:-1;2507:180:1:o;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:127::-;3146:10;3141:3;3137:20;3134:1;3127:31;3177:4;3174:1;3167:15;3201:4;3198:1;3191:15;3217:422;3306:1;3349:5;3306:1;3363:270;3384:7;3374:8;3371:21;3363:270;;;3443:4;3439:1;3435:6;3431:17;3425:4;3422:27;3419:53;;;3452:18;;:::i;:::-;3502:7;3492:8;3488:22;3485:55;;;3522:16;;;;3485:55;3601:22;;;;3561:15;;;;3363:270;;;3367:3;3217:422;;;;;:::o;3644:806::-;3693:5;3723:8;3713:80;;-1:-1:-1;3764:1:1;3778:5;;3713:80;3812:4;3802:76;;-1:-1:-1;3849:1:1;3863:5;;3802:76;3894:4;3912:1;3907:59;;;;3980:1;3975:130;;;;3887:218;;3907:59;3937:1;3928:10;;3951:5;;;3975:130;4012:3;4002:8;3999:17;3996:43;;;4019:18;;:::i;:::-;-1:-1:-1;;4075:1:1;4061:16;;4090:5;;3887:218;;4189:2;4179:8;4176:16;4170:3;4164:4;4161:13;4157:36;4151:2;4141:8;4138:16;4133:2;4127:4;4124:12;4120:35;4117:77;4114:159;;;-1:-1:-1;4226:19:1;;;4258:5;;4114:159;4305:34;4330:8;4324:4;4305:34;:::i;:::-;4375:6;4371:1;4367:6;4363:19;4354:7;4351:32;4348:58;;;4386:18;;:::i;:::-;4424:20;;3644:806;-1:-1:-1;;;3644:806:1:o;4455:140::-;4513:5;4542:47;4583:4;4573:8;4569:19;4563:4;4542:47;:::i;4600:168::-;4673:9;;;4704;;4721:15;;;4715:22;;4701:37;4691:71;;4742:18;;:::i;4773:356::-;4975:2;4957:21;;;4994:18;;;4987:30;5053:34;5048:2;5033:18;;5026:62;5120:2;5105:18;;4773:356::o;5946:251::-;6016:6;6069:2;6057:9;6048:7;6044:23;6040:32;6037:52;;;6085:1;6082;6075:12;6037:52;6117:9;6111:16;6136:31;6161:5;6136:31;:::i;7123:306::-;7211:6;7219;7227;7280:2;7268:9;7259:7;7255:23;7251:32;7248:52;;;7296:1;7293;7286:12;7248:52;7325:9;7319:16;7309:26;;7375:2;7364:9;7360:18;7354:25;7344:35;;7419:2;7408:9;7404:18;7398:25;7388:35;;7123:306;;;;;:::o;7713:277::-;7780:6;7833:2;7821:9;7812:7;7808:23;7804:32;7801:52;;;7849:1;7846;7839:12;7801:52;7881:9;7875:16;7934:5;7927:13;7920:21;7913:5;7910:32;7900:60;;7956:1;7953;7946:12;10438:125;10503:9;;;10524:10;;;10521:36;;;10537:18;;:::i;10974:128::-;11041:9;;;11062:11;;;11059:37;;;11076:18;;:::i;11107:217::-;11147:1;11173;11163:132;;11217:10;11212:3;11208:20;11205:1;11198:31;11252:4;11249:1;11242:15;11280:4;11277:1;11270:15;11163:132;-1:-1:-1;11309:9:1;;11107:217::o;11863:127::-;11924:10;11919:3;11915:20;11912:1;11905:31;11955:4;11952:1;11945:15;11979:4;11976:1;11969:15;11995:980;12257:4;12305:3;12294:9;12290:19;12336:6;12325:9;12318:25;12362:2;12400:6;12395:2;12384:9;12380:18;12373:34;12443:3;12438:2;12427:9;12423:18;12416:31;12467:6;12502;12496:13;12533:6;12525;12518:22;12571:3;12560:9;12556:19;12549:26;;12610:2;12602:6;12598:15;12584:29;;12631:1;12641:195;12655:6;12652:1;12649:13;12641:195;;;12720:13;;-1:-1:-1;;;;;12716:39:1;12704:52;;12811:15;;;;12776:12;;;;12752:1;12670:9;12641:195;;;-1:-1:-1;;;;;;;12892:32:1;;;;12887:2;12872:18;;12865:60;-1:-1:-1;;;12956:3:1;12941:19;12934:35;12853:3;11995:980;-1:-1:-1;;;11995:980:1:o

Swarm Source

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