ETH Price: $3,092.37 (+1.95%)
Gas: 3 Gwei

Token

BRKToken (BRK)
 

Overview

Max Total Supply

650,000,000,000 BRK

Holders

1,812

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
JPEX: Deposits 1
Balance
2,021,737,759.83904984 BRK

Value
$0.00
0x50c85e5587d5611cf5cdfba23640bc18b3571665
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:
BRKToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-09
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @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 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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    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");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

contract BRKToken is ERC20, Pausable, Ownable  {
    constructor() ERC20("BRKToken", "BRK") {
        _mint(msg.sender, 650000000000 * (10 ** uint256(decimals())));
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }

}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f42524b546f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f42524b0000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620003ca565b508060049080519060200190620000af929190620003ca565b5050506000600560006101000a81548160ff0219169083151502179055506000620000df620001c860201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001c23362000193620001d060201b60201c565b60ff16600a620001a4919062000603565b64975704e400620001b6919062000740565b620001d960201b60201c565b6200089e565b600033905090565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024390620004fb565b60405180910390fd5b62000260600083836200033e60201b60201c565b80600260008282546200027491906200054b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cb91906200054b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033291906200051d565b60405180910390a35050565b6200034e620003ae60201b60201c565b1562000391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038890620004d9565b60405180910390fd5b620003a9838383620003c560201b62000c671760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620003d890620007ab565b90600052602060002090601f016020900481019282620003fc576000855562000448565b82601f106200041757805160ff191683800117855562000448565b8280016001018555821562000448579182015b82811115620004475782518255916020019190600101906200042a565b5b5090506200045791906200045b565b5090565b5b80821115620004765760008160009055506001016200045c565b5090565b6000620004896010836200053a565b915062000496826200084c565b602082019050919050565b6000620004b0601f836200053a565b9150620004bd8262000875565b602082019050919050565b620004d381620007a1565b82525050565b60006020820190508181036000830152620004f4816200047a565b9050919050565b600060208201905081810360008301526200051681620004a1565b9050919050565b6000602082019050620005346000830184620004c8565b92915050565b600082825260208201905092915050565b60006200055882620007a1565b91506200056583620007a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200059d576200059c620007e1565b5b828201905092915050565b6000808291508390505b6001851115620005fa57808604811115620005d257620005d1620007e1565b5b6001851615620005e25780820291505b8081029050620005f2856200083f565b9450620005b2565b94509492505050565b60006200061082620007a1565b91506200061d83620007a1565b92506200064c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000654565b905092915050565b60008262000666576001905062000739565b8162000676576000905062000739565b81600181146200068f57600281146200069a57620006d0565b600191505062000739565b60ff841115620006af57620006ae620007e1565b5b8360020a915084821115620006c957620006c8620007e1565b5b5062000739565b5060208310610133831016604e8410600b84101617156200070a5782820a905083811115620007045762000703620007e1565b5b62000739565b620007198484846001620005a8565b92509050818404811115620007335762000732620007e1565b5b81810290505b9392505050565b60006200074d82620007a1565b91506200075a83620007a1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007965762000795620007e1565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620007c457607f821691505b60208210811415620007db57620007da62000810565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611c7f80620008ae6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906115a1565b60405180910390f35b61014860048036038101906101439190611339565b6103e0565b6040516101559190611586565b60405180910390f35b6101666103fe565b6040516101739190611723565b60405180910390f35b610196600480360381019061019191906112ea565b610408565b6040516101a39190611586565b60405180910390f35b6101b4610509565b6040516101c1919061173e565b60405180910390f35b6101e460048036038101906101df9190611339565b610512565b6040516101f19190611586565b60405180910390f35b6102026105be565b005b61020c610644565b6040516102199190611586565b60405180910390f35b61023c60048036038101906102379190611285565b61065b565b6040516102499190611723565b60405180910390f35b61025a6106a3565b005b6102646107e0565b005b61026e610866565b60405161027b919061156b565b60405180910390f35b61028c610890565b60405161029991906115a1565b60405180910390f35b6102bc60048036038101906102b79190611339565b610922565b6040516102c99190611586565b60405180910390f35b6102ec60048036038101906102e79190611339565b610a16565b6040516102f99190611586565b60405180910390f35b61031c600480360381019061031791906112ae565b610a34565b6040516103299190611723565b60405180910390f35b61034c60048036038101906103479190611285565b610abb565b005b60606003805461035d90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611887565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b60006103f46103ed610c6c565b8484610c74565b6001905092915050565b6000600254905090565b6000610415848484610e3f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610460610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d790611683565b60405180910390fd5b6104fd856104ec610c6c565b85846104f891906117cb565b610c74565b60019150509392505050565b60006012905090565b60006105b461051f610c6c565b84846001600061052d610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105af9190611775565b610c74565b6001905092915050565b6105c6610c6c565b73ffffffffffffffffffffffffffffffffffffffff166105e4610866565b73ffffffffffffffffffffffffffffffffffffffff161461063a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610631906116a3565b60405180910390fd5b6106426110be565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610c6c565b73ffffffffffffffffffffffffffffffffffffffff166106c9610866565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610716906116a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6107e8610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610806610866565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610853906116a3565b60405180910390fd5b610864611160565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611887565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611887565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b60008060016000610931610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590611703565b60405180910390fd5b610a0b6109f9610c6c565b858584610a0691906117cb565b610c74565b600191505092915050565b6000610a2a610a23610c6c565b8484610e3f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ac3610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610866565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906116a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611603565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906116e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611623565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e329190611723565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea6906116c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906115c3565b60405180910390fd5b610f2a838383611203565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790611643565b60405180910390fd5b8181610fbc91906117cb565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104c9190611775565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b09190611723565b60405180910390a350505050565b6110c6610644565b611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906115e3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611149610c6c565b604051611156919061156b565b60405180910390a1565b611168610644565b156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90611663565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111ec610c6c565b6040516111f9919061156b565b60405180910390a1565b61120b610644565b1561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290611663565b60405180910390fd5b611256838383610c67565b505050565b60008135905061126a81611c1b565b92915050565b60008135905061127f81611c32565b92915050565b60006020828403121561129757600080fd5b60006112a58482850161125b565b91505092915050565b600080604083850312156112c157600080fd5b60006112cf8582860161125b565b92505060206112e08582860161125b565b9150509250929050565b6000806000606084860312156112ff57600080fd5b600061130d8682870161125b565b935050602061131e8682870161125b565b925050604061132f86828701611270565b9150509250925092565b6000806040838503121561134c57600080fd5b600061135a8582860161125b565b925050602061136b85828601611270565b9150509250929050565b61137e816117ff565b82525050565b61138d81611811565b82525050565b600061139e82611759565b6113a88185611764565b93506113b8818560208601611854565b6113c181611917565b840191505092915050565b60006113d9602383611764565b91506113e482611928565b604082019050919050565b60006113fc601483611764565b915061140782611977565b602082019050919050565b600061141f602683611764565b915061142a826119a0565b604082019050919050565b6000611442602283611764565b915061144d826119ef565b604082019050919050565b6000611465602683611764565b915061147082611a3e565b604082019050919050565b6000611488601083611764565b915061149382611a8d565b602082019050919050565b60006114ab602883611764565b91506114b682611ab6565b604082019050919050565b60006114ce602083611764565b91506114d982611b05565b602082019050919050565b60006114f1602583611764565b91506114fc82611b2e565b604082019050919050565b6000611514602483611764565b915061151f82611b7d565b604082019050919050565b6000611537602583611764565b915061154282611bcc565b604082019050919050565b6115568161183d565b82525050565b61156581611847565b82525050565b60006020820190506115806000830184611375565b92915050565b600060208201905061159b6000830184611384565b92915050565b600060208201905081810360008301526115bb8184611393565b905092915050565b600060208201905081810360008301526115dc816113cc565b9050919050565b600060208201905081810360008301526115fc816113ef565b9050919050565b6000602082019050818103600083015261161c81611412565b9050919050565b6000602082019050818103600083015261163c81611435565b9050919050565b6000602082019050818103600083015261165c81611458565b9050919050565b6000602082019050818103600083015261167c8161147b565b9050919050565b6000602082019050818103600083015261169c8161149e565b9050919050565b600060208201905081810360008301526116bc816114c1565b9050919050565b600060208201905081810360008301526116dc816114e4565b9050919050565b600060208201905081810360008301526116fc81611507565b9050919050565b6000602082019050818103600083015261171c8161152a565b9050919050565b6000602082019050611738600083018461154d565b92915050565b6000602082019050611753600083018461155c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117808261183d565b915061178b8361183d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117c0576117bf6118b9565b5b828201905092915050565b60006117d68261183d565b91506117e18361183d565b9250828210156117f4576117f36118b9565b5b828203905092915050565b600061180a8261181d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611872578082015181840152602081019050611857565b83811115611881576000848401525b50505050565b6000600282049050600182168061189f57607f821691505b602082108114156118b3576118b26118e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c24816117ff565b8114611c2f57600080fd5b50565b611c3b8161183d565b8114611c4657600080fd5b5056fea26469706673582212204edc320ecdb3cc790a2490638d421edaa79bdfac856935d7794ce078020e263e64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610284578063a457c2d7146102a2578063a9059cbb146102d2578063dd62ed3e14610302578063f2fde38b146103325761010b565b806370a0823114610222578063715018a6146102525780638456cb591461025c5780638da5cb5b146102665761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633f4ba83a146101fa5780635c975abb146102045761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b61011861034e565b60405161012591906115a1565b60405180910390f35b61014860048036038101906101439190611339565b6103e0565b6040516101559190611586565b60405180910390f35b6101666103fe565b6040516101739190611723565b60405180910390f35b610196600480360381019061019191906112ea565b610408565b6040516101a39190611586565b60405180910390f35b6101b4610509565b6040516101c1919061173e565b60405180910390f35b6101e460048036038101906101df9190611339565b610512565b6040516101f19190611586565b60405180910390f35b6102026105be565b005b61020c610644565b6040516102199190611586565b60405180910390f35b61023c60048036038101906102379190611285565b61065b565b6040516102499190611723565b60405180910390f35b61025a6106a3565b005b6102646107e0565b005b61026e610866565b60405161027b919061156b565b60405180910390f35b61028c610890565b60405161029991906115a1565b60405180910390f35b6102bc60048036038101906102b79190611339565b610922565b6040516102c99190611586565b60405180910390f35b6102ec60048036038101906102e79190611339565b610a16565b6040516102f99190611586565b60405180910390f35b61031c600480360381019061031791906112ae565b610a34565b6040516103299190611723565b60405180910390f35b61034c60048036038101906103479190611285565b610abb565b005b60606003805461035d90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461038990611887565b80156103d65780601f106103ab576101008083540402835291602001916103d6565b820191906000526020600020905b8154815290600101906020018083116103b957829003601f168201915b5050505050905090565b60006103f46103ed610c6c565b8484610c74565b6001905092915050565b6000600254905090565b6000610415848484610e3f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610460610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d790611683565b60405180910390fd5b6104fd856104ec610c6c565b85846104f891906117cb565b610c74565b60019150509392505050565b60006012905090565b60006105b461051f610c6c565b84846001600061052d610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105af9190611775565b610c74565b6001905092915050565b6105c6610c6c565b73ffffffffffffffffffffffffffffffffffffffff166105e4610866565b73ffffffffffffffffffffffffffffffffffffffff161461063a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610631906116a3565b60405180910390fd5b6106426110be565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610c6c565b73ffffffffffffffffffffffffffffffffffffffff166106c9610866565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610716906116a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6107e8610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610806610866565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610853906116a3565b60405180910390fd5b610864611160565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611887565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611887565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b60008060016000610931610c6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e590611703565b60405180910390fd5b610a0b6109f9610c6c565b858584610a0691906117cb565b610c74565b600191505092915050565b6000610a2a610a23610c6c565b8484610e3f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ac3610c6c565b73ffffffffffffffffffffffffffffffffffffffff16610ae1610866565b73ffffffffffffffffffffffffffffffffffffffff1614610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e906116a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90611603565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906116e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4b90611623565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e329190611723565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea6906116c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906115c3565b60405180910390fd5b610f2a838383611203565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa790611643565b60405180910390fd5b8181610fbc91906117cb565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104c9190611775565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b09190611723565b60405180910390a350505050565b6110c6610644565b611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc906115e3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611149610c6c565b604051611156919061156b565b60405180910390a1565b611168610644565b156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90611663565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586111ec610c6c565b6040516111f9919061156b565b60405180910390a1565b61120b610644565b1561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290611663565b60405180910390fd5b611256838383610c67565b505050565b60008135905061126a81611c1b565b92915050565b60008135905061127f81611c32565b92915050565b60006020828403121561129757600080fd5b60006112a58482850161125b565b91505092915050565b600080604083850312156112c157600080fd5b60006112cf8582860161125b565b92505060206112e08582860161125b565b9150509250929050565b6000806000606084860312156112ff57600080fd5b600061130d8682870161125b565b935050602061131e8682870161125b565b925050604061132f86828701611270565b9150509250925092565b6000806040838503121561134c57600080fd5b600061135a8582860161125b565b925050602061136b85828601611270565b9150509250929050565b61137e816117ff565b82525050565b61138d81611811565b82525050565b600061139e82611759565b6113a88185611764565b93506113b8818560208601611854565b6113c181611917565b840191505092915050565b60006113d9602383611764565b91506113e482611928565b604082019050919050565b60006113fc601483611764565b915061140782611977565b602082019050919050565b600061141f602683611764565b915061142a826119a0565b604082019050919050565b6000611442602283611764565b915061144d826119ef565b604082019050919050565b6000611465602683611764565b915061147082611a3e565b604082019050919050565b6000611488601083611764565b915061149382611a8d565b602082019050919050565b60006114ab602883611764565b91506114b682611ab6565b604082019050919050565b60006114ce602083611764565b91506114d982611b05565b602082019050919050565b60006114f1602583611764565b91506114fc82611b2e565b604082019050919050565b6000611514602483611764565b915061151f82611b7d565b604082019050919050565b6000611537602583611764565b915061154282611bcc565b604082019050919050565b6115568161183d565b82525050565b61156581611847565b82525050565b60006020820190506115806000830184611375565b92915050565b600060208201905061159b6000830184611384565b92915050565b600060208201905081810360008301526115bb8184611393565b905092915050565b600060208201905081810360008301526115dc816113cc565b9050919050565b600060208201905081810360008301526115fc816113ef565b9050919050565b6000602082019050818103600083015261161c81611412565b9050919050565b6000602082019050818103600083015261163c81611435565b9050919050565b6000602082019050818103600083015261165c81611458565b9050919050565b6000602082019050818103600083015261167c8161147b565b9050919050565b6000602082019050818103600083015261169c8161149e565b9050919050565b600060208201905081810360008301526116bc816114c1565b9050919050565b600060208201905081810360008301526116dc816114e4565b9050919050565b600060208201905081810360008301526116fc81611507565b9050919050565b6000602082019050818103600083015261171c8161152a565b9050919050565b6000602082019050611738600083018461154d565b92915050565b6000602082019050611753600083018461155c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006117808261183d565b915061178b8361183d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117c0576117bf6118b9565b5b828201905092915050565b60006117d68261183d565b91506117e18361183d565b9250828210156117f4576117f36118b9565b5b828203905092915050565b600061180a8261181d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611872578082015181840152602081019050611857565b83811115611881576000848401525b50505050565b6000600282049050600182168061189f57607f821691505b602082108114156118b3576118b26118e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611c24816117ff565b8114611c2f57600080fd5b50565b611c3b8161183d565b8114611c4657600080fd5b5056fea26469706673582212204edc320ecdb3cc790a2490638d421edaa79bdfac856935d7794ce078020e263e64736f6c63430008040033

Deployed Bytecode Sourcemap

19330:527:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10559:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12726:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11679:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13377:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11521:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14208:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19580:65;;;:::i;:::-;;4144:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11850:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:148;;;:::i;:::-;;19511:61;;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10778:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14926:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12190:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12428:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2909:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10559:100;10613:13;10646:5;10639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10559:100;:::o;12726:169::-;12809:4;12826:39;12835:12;:10;:12::i;:::-;12849:7;12858:6;12826:8;:39::i;:::-;12883:4;12876:11;;12726:169;;;;:::o;11679:108::-;11740:7;11767:12;;11760:19;;11679:108;:::o;13377:422::-;13483:4;13500:36;13510:6;13518:9;13529:6;13500:9;:36::i;:::-;13549:24;13576:11;:19;13588:6;13576:19;;;;;;;;;;;;;;;:33;13596:12;:10;:12::i;:::-;13576:33;;;;;;;;;;;;;;;;13549:60;;13648:6;13628:16;:26;;13620:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13710:57;13719:6;13727:12;:10;:12::i;:::-;13760:6;13741:16;:25;;;;:::i;:::-;13710:8;:57::i;:::-;13787:4;13780:11;;;13377:422;;;;;:::o;11521:93::-;11579:5;11604:2;11597:9;;11521:93;:::o;14208:215::-;14296:4;14313:80;14322:12;:10;:12::i;:::-;14336:7;14382:10;14345:11;:25;14357:12;:10;:12::i;:::-;14345:25;;;;;;;;;;;;;;;:34;14371:7;14345:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14313:8;:80::i;:::-;14411:4;14404:11;;14208:215;;;;:::o;19580:65::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19627:10:::1;:8;:10::i;:::-;19580:65::o:0;4144:86::-;4191:4;4215:7;;;;;;;;;;;4208:14;;4144:86;:::o;11850:127::-;11924:7;11951:9;:18;11961:7;11951:18;;;;;;;;;;;;;;;;11944:25;;11850:127;;;:::o;2606:148::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2713:1:::1;2676:40;;2697:6;;;;;;;;;;;2676:40;;;;;;;;;;;;2744:1;2727:6;;:19;;;;;;;;;;;;;;;;;;2606:148::o:0;19511:61::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19556:8:::1;:6;:8::i;:::-;19511:61::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;10778:104::-;10834:13;10867:7;10860:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10778:104;:::o;14926:377::-;15019:4;15036:24;15063:11;:25;15075:12;:10;:12::i;:::-;15063:25;;;;;;;;;;;;;;;:34;15089:7;15063:34;;;;;;;;;;;;;;;;15036:61;;15136:15;15116:16;:35;;15108:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15204:67;15213:12;:10;:12::i;:::-;15227:7;15255:15;15236:16;:34;;;;:::i;:::-;15204:8;:67::i;:::-;15291:4;15284:11;;;14926:377;;;;:::o;12190:175::-;12276:4;12293:42;12303:12;:10;:12::i;:::-;12317:9;12328:6;12293:9;:42::i;:::-;12353:4;12346:11;;12190:175;;;;:::o;12428:151::-;12517:7;12544:11;:18;12556:5;12544:18;;;;;;;;;;;;;;;:27;12563:7;12544:27;;;;;;;;;;;;;;;;12537:34;;12428:151;;;;:::o;2909:244::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3018:1:::1;2998:22;;:8;:22;;;;2990:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3108:8;3079:38;;3100:6;;;;;;;;;;;3079:38;;;;;;;;;;;;3137:8;3128:6;;:17;;;;;;;;;;;;;;;;;;2909:244:::0;:::o;19231:92::-;;;;:::o;599:98::-;652:7;679:10;672:17;;599:98;:::o;18282:346::-;18401:1;18384:19;;:5;:19;;;;18376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18482:1;18463:21;;:7;:21;;;;18455:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18566:6;18536:11;:18;18548:5;18536:18;;;;;;;;;;;;;;;:27;18555:7;18536:27;;;;;;;;;;;;;;;:36;;;;18604:7;18588:32;;18597:5;18588:32;;;18613:6;18588:32;;;;;;:::i;:::-;;;;;;;;18282:346;;;:::o;15793:604::-;15917:1;15899:20;;:6;:20;;;;15891:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16001:1;15980:23;;:9;:23;;;;15972:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16056:47;16077:6;16085:9;16096:6;16056:20;:47::i;:::-;16116:21;16140:9;:17;16150:6;16140:17;;;;;;;;;;;;;;;;16116:41;;16193:6;16176:13;:23;;16168:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16289:6;16273:13;:22;;;;:::i;:::-;16253:9;:17;16263:6;16253:17;;;;;;;;;;;;;;;:42;;;;16330:6;16306:9;:20;16316:9;16306:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16371:9;16354:35;;16363:6;16354:35;;;16382:6;16354:35;;;;;;:::i;:::-;;;;;;;;15793:604;;;;:::o;5203:120::-;4747:8;:6;:8::i;:::-;4739:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5272:5:::1;5262:7;;:15;;;;;;;;;;;;;;;;;;5293:22;5302:12;:10;:12::i;:::-;5293:22;;;;;;:::i;:::-;;;;;;;;5203:120::o:0;4944:118::-;4470:8;:6;:8::i;:::-;4469:9;4461:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5014:4:::1;5004:7;;:14;;;;;;;;;;;;;;;;;;5034:20;5041:12;:10;:12::i;:::-;5034:20;;;;;;:::i;:::-;;;;;;;;4944:118::o:0;19653:199::-;4470:8;:6;:8::i;:::-;4469:9;4461:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19800:44:::1;19827:4;19833:2;19837:6;19800:26;:44::i;:::-;19653:199:::0;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;2276:3;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:366::-;2700:3;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2797:93;2886:3;2797:93;:::i;:::-;2915:2;2910:3;2906:12;2899:19;;2704:220;;;:::o;2930:366::-;3072:3;3093:67;3157:2;3152:3;3093:67;:::i;:::-;3086:74;;3169:93;3258:3;3169:93;:::i;:::-;3287:2;3282:3;3278:12;3271:19;;3076:220;;;:::o;3302:366::-;3444:3;3465:67;3529:2;3524:3;3465:67;:::i;:::-;3458:74;;3541:93;3630:3;3541:93;:::i;:::-;3659:2;3654:3;3650:12;3643:19;;3448:220;;;:::o;3674:366::-;3816:3;3837:67;3901:2;3896:3;3837:67;:::i;:::-;3830:74;;3913:93;4002:3;3913:93;:::i;:::-;4031:2;4026:3;4022:12;4015:19;;3820:220;;;:::o;4046:366::-;4188:3;4209:67;4273:2;4268:3;4209:67;:::i;:::-;4202:74;;4285:93;4374:3;4285:93;:::i;:::-;4403:2;4398:3;4394:12;4387:19;;4192:220;;;:::o;4418:366::-;4560:3;4581:67;4645:2;4640:3;4581:67;:::i;:::-;4574:74;;4657:93;4746:3;4657:93;:::i;:::-;4775:2;4770:3;4766:12;4759:19;;4564:220;;;:::o;4790:366::-;4932:3;4953:67;5017:2;5012:3;4953:67;:::i;:::-;4946:74;;5029:93;5118:3;5029:93;:::i;:::-;5147:2;5142:3;5138:12;5131:19;;4936:220;;;:::o;5162:366::-;5304:3;5325:67;5389:2;5384:3;5325:67;:::i;:::-;5318:74;;5401:93;5490:3;5401:93;:::i;:::-;5519:2;5514:3;5510:12;5503:19;;5308:220;;;:::o;5534:366::-;5676:3;5697:67;5761:2;5756:3;5697:67;:::i;:::-;5690:74;;5773:93;5862:3;5773:93;:::i;:::-;5891:2;5886:3;5882:12;5875:19;;5680:220;;;:::o;5906:366::-;6048:3;6069:67;6133:2;6128:3;6069:67;:::i;:::-;6062:74;;6145:93;6234:3;6145:93;:::i;:::-;6263:2;6258:3;6254:12;6247:19;;6052:220;;;:::o;6278:366::-;6420:3;6441:67;6505:2;6500:3;6441:67;:::i;:::-;6434:74;;6517:93;6606:3;6517:93;:::i;:::-;6635:2;6630:3;6626:12;6619:19;;6424:220;;;:::o;6650:118::-;6737:24;6755:5;6737:24;:::i;:::-;6732:3;6725:37;6715:53;;:::o;6774:112::-;6857:22;6873:5;6857:22;:::i;:::-;6852:3;6845:35;6835:51;;:::o;6892:222::-;6985:4;7023:2;7012:9;7008:18;7000:26;;7036:71;7104:1;7093:9;7089:17;7080:6;7036:71;:::i;:::-;6990:124;;;;:::o;7120:210::-;7207:4;7245:2;7234:9;7230:18;7222:26;;7258:65;7320:1;7309:9;7305:17;7296:6;7258:65;:::i;:::-;7212:118;;;;:::o;7336:313::-;7449:4;7487:2;7476:9;7472:18;7464:26;;7536:9;7530:4;7526:20;7522:1;7511:9;7507:17;7500:47;7564:78;7637:4;7628:6;7564:78;:::i;:::-;7556:86;;7454:195;;;;:::o;7655:419::-;7821:4;7859:2;7848:9;7844:18;7836:26;;7908:9;7902:4;7898:20;7894:1;7883:9;7879:17;7872:47;7936:131;8062:4;7936:131;:::i;:::-;7928:139;;7826:248;;;:::o;8080:419::-;8246:4;8284:2;8273:9;8269:18;8261:26;;8333:9;8327:4;8323:20;8319:1;8308:9;8304:17;8297:47;8361:131;8487:4;8361:131;:::i;:::-;8353:139;;8251:248;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8676:248;;;:::o;8930:419::-;9096:4;9134:2;9123:9;9119:18;9111:26;;9183:9;9177:4;9173:20;9169:1;9158:9;9154:17;9147:47;9211:131;9337:4;9211:131;:::i;:::-;9203:139;;9101:248;;;:::o;9355:419::-;9521:4;9559:2;9548:9;9544:18;9536:26;;9608:9;9602:4;9598:20;9594:1;9583:9;9579:17;9572:47;9636:131;9762:4;9636:131;:::i;:::-;9628:139;;9526:248;;;:::o;9780:419::-;9946:4;9984:2;9973:9;9969:18;9961:26;;10033:9;10027:4;10023:20;10019:1;10008:9;10004:17;9997:47;10061:131;10187:4;10061:131;:::i;:::-;10053:139;;9951:248;;;:::o;10205:419::-;10371:4;10409:2;10398:9;10394:18;10386:26;;10458:9;10452:4;10448:20;10444:1;10433:9;10429:17;10422:47;10486:131;10612:4;10486:131;:::i;:::-;10478:139;;10376:248;;;:::o;10630:419::-;10796:4;10834:2;10823:9;10819:18;10811:26;;10883:9;10877:4;10873:20;10869:1;10858:9;10854:17;10847:47;10911:131;11037:4;10911:131;:::i;:::-;10903:139;;10801:248;;;:::o;11055:419::-;11221:4;11259:2;11248:9;11244:18;11236:26;;11308:9;11302:4;11298:20;11294:1;11283:9;11279:17;11272:47;11336:131;11462:4;11336:131;:::i;:::-;11328:139;;11226:248;;;:::o;11480:419::-;11646:4;11684:2;11673:9;11669:18;11661:26;;11733:9;11727:4;11723:20;11719:1;11708:9;11704:17;11697:47;11761:131;11887:4;11761:131;:::i;:::-;11753:139;;11651:248;;;:::o;11905:419::-;12071:4;12109:2;12098:9;12094:18;12086:26;;12158:9;12152:4;12148:20;12144:1;12133:9;12129:17;12122:47;12186:131;12312:4;12186:131;:::i;:::-;12178:139;;12076:248;;;:::o;12330:222::-;12423:4;12461:2;12450:9;12446:18;12438:26;;12474:71;12542:1;12531:9;12527:17;12518:6;12474:71;:::i;:::-;12428:124;;;;:::o;12558:214::-;12647:4;12685:2;12674:9;12670:18;12662:26;;12698:67;12762:1;12751:9;12747:17;12738:6;12698:67;:::i;:::-;12652:120;;;;:::o;12778:99::-;12830:6;12864:5;12858:12;12848:22;;12837:40;;;:::o;12883:169::-;12967:11;13001:6;12996:3;12989:19;13041:4;13036:3;13032:14;13017:29;;12979:73;;;;:::o;13058:305::-;13098:3;13117:20;13135:1;13117:20;:::i;:::-;13112:25;;13151:20;13169:1;13151:20;:::i;:::-;13146:25;;13305:1;13237:66;13233:74;13230:1;13227:81;13224:2;;;13311:18;;:::i;:::-;13224:2;13355:1;13352;13348:9;13341:16;;13102:261;;;;:::o;13369:191::-;13409:4;13429:20;13447:1;13429:20;:::i;:::-;13424:25;;13463:20;13481:1;13463:20;:::i;:::-;13458:25;;13502:1;13499;13496:8;13493:2;;;13507:18;;:::i;:::-;13493:2;13552:1;13549;13545:9;13537:17;;13414:146;;;;:::o;13566:96::-;13603:7;13632:24;13650:5;13632:24;:::i;:::-;13621:35;;13611:51;;;:::o;13668:90::-;13702:7;13745:5;13738:13;13731:21;13720:32;;13710:48;;;:::o;13764:126::-;13801:7;13841:42;13834:5;13830:54;13819:65;;13809:81;;;:::o;13896:77::-;13933:7;13962:5;13951:16;;13941:32;;;:::o;13979:86::-;14014:7;14054:4;14047:5;14043:16;14032:27;;14022:43;;;:::o;14071:307::-;14139:1;14149:113;14163:6;14160:1;14157:13;14149:113;;;14248:1;14243:3;14239:11;14233:18;14229:1;14224:3;14220:11;14213:39;14185:2;14182:1;14178:10;14173:15;;14149:113;;;14280:6;14277:1;14274:13;14271:2;;;14360:1;14351:6;14346:3;14342:16;14335:27;14271:2;14120:258;;;;:::o;14384:320::-;14428:6;14465:1;14459:4;14455:12;14445:22;;14512:1;14506:4;14502:12;14533:18;14523:2;;14589:4;14581:6;14577:17;14567:27;;14523:2;14651;14643:6;14640:14;14620:18;14617:38;14614:2;;;14670:18;;:::i;:::-;14614:2;14435:269;;;;:::o;14710:180::-;14758:77;14755:1;14748:88;14855:4;14852:1;14845:15;14879:4;14876:1;14869:15;14896:180;14944:77;14941:1;14934:88;15041:4;15038:1;15031:15;15065:4;15062:1;15055:15;15082:102;15123:6;15174:2;15170:7;15165:2;15158:5;15154:14;15150:28;15140:38;;15130:54;;;:::o;15190:222::-;15330:34;15326:1;15318:6;15314:14;15307:58;15399:5;15394:2;15386:6;15382:15;15375:30;15296:116;:::o;15418:170::-;15558:22;15554:1;15546:6;15542:14;15535:46;15524:64;:::o;15594:225::-;15734:34;15730:1;15722:6;15718:14;15711:58;15803:8;15798:2;15790:6;15786:15;15779:33;15700:119;:::o;15825:221::-;15965:34;15961:1;15953:6;15949:14;15942:58;16034:4;16029:2;16021:6;16017:15;16010:29;15931:115;:::o;16052:225::-;16192:34;16188:1;16180:6;16176:14;16169:58;16261:8;16256:2;16248:6;16244:15;16237:33;16158:119;:::o;16283:166::-;16423:18;16419:1;16411:6;16407:14;16400:42;16389:60;:::o;16455:227::-;16595:34;16591:1;16583:6;16579:14;16572:58;16664:10;16659:2;16651:6;16647:15;16640:35;16561:121;:::o;16688:182::-;16828:34;16824:1;16816:6;16812:14;16805:58;16794:76;:::o;16876:224::-;17016:34;17012:1;17004:6;17000:14;16993:58;17085:7;17080:2;17072:6;17068:15;17061:32;16982:118;:::o;17106:223::-;17246:34;17242:1;17234:6;17230:14;17223:58;17315:6;17310:2;17302:6;17298:15;17291:31;17212:117;:::o;17335:224::-;17475:34;17471:1;17463:6;17459:14;17452:58;17544:7;17539:2;17531:6;17527:15;17520:32;17441:118;:::o;17565:122::-;17638:24;17656:5;17638:24;:::i;:::-;17631:5;17628:35;17618:2;;17677:1;17674;17667:12;17618:2;17608:79;:::o;17693:122::-;17766:24;17784:5;17766:24;:::i;:::-;17759:5;17756:35;17746:2;;17805:1;17802;17795:12;17746:2;17736:79;:::o

Swarm Source

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