CRO Price: $0.08 (+2.99%)

Token

Bristols.finance (Bristols.finance)

Overview

Max Total Supply

1,000,000,000 Bristols.finance

Holders

6,691

Total Transfers

-

Market

Price

$0.00 @ 0.000000 CRO

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BristolsFinance

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-07-31
*/

// SPDX-License-Identifier: MIT


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _checkOwner();
        _;
    }

    /**
     * @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 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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:
     * 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 `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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 Contracts guidelines: functions revert
 * instead 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 default 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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);

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/Bristols.sol


pragma solidity ^0.8.4;




contract BristolsFinance is ERC20, ERC20Burnable, Ownable {
    IERC20 public  token_transfer;

     event Sent(address _token,address _targetAccount, uint256 _amount);
    constructor() ERC20("Bristols.finance", "Bristols.finance") {
        _mint(address(this), 1000000000 * 10 ** decimals());
    }
        function _multiSendToken(address payable _token, address[]  memory  _accounts, uint256[] memory _amounts) payable  public  {
            //require(token_transfer.balanceOf(address(this))>1000);
            token_transfer=IERC20(_token);
        for (uint256 _idx = 0; _idx < _accounts.length; _idx++) {
            token_transfer.transfer(payable(_accounts[_idx]), _amounts[_idx]);
            emit Sent(_token, _accounts[_idx], _amounts[_idx]);
        }
    }
}

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":"_token","type":"address"},{"indexed":false,"internalType":"address","name":"_targetAccount","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address payable","name":"_token","type":"address"},{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"_multiSendToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token_transfer","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b506040518060400160405280601081526020017f42726973746f6c732e66696e616e6365000000000000000000000000000000008152506040518060400160405280601081526020017f42726973746f6c732e66696e616e63650000000000000000000000000000000081525081600390805190602001906200009692919062000372565b508060049080519060200190620000af92919062000372565b505050620000d2620000c66200011860201b60201c565b6200012060201b60201c565b6200011230620000e7620001e660201b60201c565b600a620000f5919062000562565b633b9aca006200010691906200069f565b620001ef60201b60201c565b620007e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000259906200045a565b60405180910390fd5b62000276600083836200036860201b60201c565b80600260008282546200028a9190620004aa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002e19190620004aa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034891906200047c565b60405180910390a362000364600083836200036d60201b60201c565b5050565b505050565b505050565b828054620003809062000717565b90600052602060002090601f016020900481019282620003a45760008555620003f0565b82601f10620003bf57805160ff1916838001178555620003f0565b82800160010185558215620003f0579182015b82811115620003ef578251825591602001919060010190620003d2565b5b509050620003ff919062000403565b5090565b5b808211156200041e57600081600090555060010162000404565b5090565b600062000431601f8362000499565b91506200043e82620007b8565b602082019050919050565b620004548162000700565b82525050565b60006020820190508181036000830152620004758162000422565b9050919050565b600060208201905062000493600083018462000449565b92915050565b600082825260208201905092915050565b6000620004b78262000700565b9150620004c48362000700565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004fc57620004fb6200074d565b5b828201905092915050565b6000808291508390505b600185111562000559578086048111156200053157620005306200074d565b5b6001851615620005415780820291505b80810290506200055185620007ab565b945062000511565b94509492505050565b60006200056f8262000700565b91506200057c836200070a565b9250620005ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b3565b905092915050565b600082620005c5576001905062000698565b81620005d5576000905062000698565b8160018114620005ee5760028114620005f9576200062f565b600191505062000698565b60ff8411156200060e576200060d6200074d565b5b8360020a9150848211156200062857620006276200074d565b5b5062000698565b5060208310610133831016604e8410600b8410161715620006695782820a9050838111156200066357620006626200074d565b5b62000698565b62000678848484600162000507565b925090508184048111156200069257620006916200074d565b5b81810290505b9392505050565b6000620006ac8262000700565b9150620006b98362000700565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006f557620006f46200074d565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200073057607f821691505b602082108114156200074757620007466200077c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61219b80620007f16000396000f3fe6080604052600436106101095760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461036d578063a9059cbb146103aa578063db1850ec146103e7578063dd62ed3e14610403578063f2fde38b1461044057610109565b8063715018a6146102d757806379cc6790146102ee5780638da5cb5b1461031757806395d89b411461034257610109565b806323b872dd116100dc57806323b872dd146101cc578063313ce56714610209578063395093511461023457806342966c681461027157806370a082311461029a57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323a98bd7146101a1575b600080fd5b34801561011a57600080fd5b50610123610469565b60405161013091906118a6565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611547565b6104fb565b60405161016d9190611870565b60405180910390f35b34801561018257600080fd5b5061018b61051e565b6040516101989190611a28565b60405180910390f35b3480156101ad57600080fd5b506101b6610528565b6040516101c3919061188b565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906114f4565b61054e565b6040516102009190611870565b60405180910390f35b34801561021557600080fd5b5061021e61057d565b60405161022b9190611a43565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611547565b610586565b6040516102689190611870565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906115b4565b6105bd565b005b3480156102a657600080fd5b506102c160048036038101906102bc91906113fc565b6105d1565b6040516102ce9190611a28565b60405180910390f35b3480156102e357600080fd5b506102ec610619565b005b3480156102fa57600080fd5b5061031560048036038101906103109190611547565b61062d565b005b34801561032357600080fd5b5061032c61064d565b60405161033991906117f5565b60405180910390f35b34801561034e57600080fd5b50610357610677565b60405161036491906118a6565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190611547565b610709565b6040516103a19190611870565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190611547565b610780565b6040516103de9190611870565b60405180910390f35b61040160048036038101906103fc9190611429565b6107a3565b005b34801561040f57600080fd5b5061042a600480360381019061042591906114b4565b61095c565b6040516104379190611a28565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906113fc565b6109e3565b005b60606003805461047890611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546104a490611c63565b80156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600080610506610a67565b9050610513818585610a6f565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610559610a67565b9050610566858285610c3a565b610571858585610cc6565b60019150509392505050565b60006012905090565b600080610591610a67565b90506105b28185856105a3858961095c565b6105ad9190611af7565b610a6f565b600191505092915050565b6105ce6105c8610a67565b82610f47565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062161111e565b61062b600061119c565b565b61063f82610639610a67565b83610c3a565b6106498282610f47565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068690611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290611c63565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b600080610714610a67565b90506000610722828661095c565b905083811015610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90611a08565b60405180910390fd5b6107748286868403610a6f565b60019250505092915050565b60008061078b610a67565b9050610798818585610cc6565b600191505092915050565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b825181101561095657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84838151811061084157610840611d6d565b5b602002602001015184848151811061085c5761085b611d6d565b5b60200260200101516040518363ffffffff1660e01b8152600401610881929190611847565b602060405180830381600087803b15801561089b57600080fd5b505af11580156108af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d39190611587565b507f3990db2d31862302a685e8086b5755072a6e2b5b780af1ee81ece35ee3cd33458484838151811061090957610908611d6d565b5b602002602001015184848151811061092457610923611d6d565b5b602002602001015160405161093b93929190611810565b60405180910390a1808061094e90611cc6565b9150506107e7565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109eb61111e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290611908565b60405180910390fd5b610a648161119c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad6906119e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611928565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2d9190611a28565b60405180910390a3505050565b6000610c46848461095c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc05781811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611948565b60405180910390fd5b610cbf8484848403610a6f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906119c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906118c8565b60405180910390fd5b610db1838383611262565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90611968565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eca9190611af7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2e9190611a28565b60405180910390a3610f41848484611267565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906119a8565b60405180910390fd5b610fc382600083611262565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906118e8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110a09190611b4d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111059190611a28565b60405180910390a361111983600084611267565b505050565b611126610a67565b73ffffffffffffffffffffffffffffffffffffffff1661114461064d565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190611988565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600061127f61127a84611a83565b611a5e565b905080838252602082019050828560208602820111156112a2576112a1611dd0565b5b60005b858110156112d257816112b8888261134c565b8452602084019350602083019250506001810190506112a5565b5050509392505050565b60006112ef6112ea84611aaf565b611a5e565b9050808382526020820190508285602086028201111561131257611311611dd0565b5b60005b85811015611342578161132888826113e7565b845260208401935060208301925050600181019050611315565b5050509392505050565b60008135905061135b81612109565b92915050565b60008135905061137081612120565b92915050565b600082601f83011261138b5761138a611dcb565b5b813561139b84826020860161126c565b91505092915050565b600082601f8301126113b9576113b8611dcb565b5b81356113c98482602086016112dc565b91505092915050565b6000815190506113e181612137565b92915050565b6000813590506113f68161214e565b92915050565b60006020828403121561141257611411611dda565b5b60006114208482850161134c565b91505092915050565b60008060006060848603121561144257611441611dda565b5b600061145086828701611361565b935050602084013567ffffffffffffffff81111561147157611470611dd5565b5b61147d86828701611376565b925050604084013567ffffffffffffffff81111561149e5761149d611dd5565b5b6114aa868287016113a4565b9150509250925092565b600080604083850312156114cb576114ca611dda565b5b60006114d98582860161134c565b92505060206114ea8582860161134c565b9150509250929050565b60008060006060848603121561150d5761150c611dda565b5b600061151b8682870161134c565b935050602061152c8682870161134c565b925050604061153d868287016113e7565b9150509250925092565b6000806040838503121561155e5761155d611dda565b5b600061156c8582860161134c565b925050602061157d858286016113e7565b9150509250929050565b60006020828403121561159d5761159c611dda565b5b60006115ab848285016113d2565b91505092915050565b6000602082840312156115ca576115c9611dda565b5b60006115d8848285016113e7565b91505092915050565b6115ea81611be8565b82525050565b6115f981611b81565b82525050565b61160881611ba5565b82525050565b61161781611bfa565b82525050565b600061162882611adb565b6116328185611ae6565b9350611642818560208601611c30565b61164b81611ddf565b840191505092915050565b6000611663602383611ae6565b915061166e82611df0565b604082019050919050565b6000611686602283611ae6565b915061169182611e3f565b604082019050919050565b60006116a9602683611ae6565b91506116b482611e8e565b604082019050919050565b60006116cc602283611ae6565b91506116d782611edd565b604082019050919050565b60006116ef601d83611ae6565b91506116fa82611f2c565b602082019050919050565b6000611712602683611ae6565b915061171d82611f55565b604082019050919050565b6000611735602083611ae6565b915061174082611fa4565b602082019050919050565b6000611758602183611ae6565b915061176382611fcd565b604082019050919050565b600061177b602583611ae6565b91506117868261201c565b604082019050919050565b600061179e602483611ae6565b91506117a98261206b565b604082019050919050565b60006117c1602583611ae6565b91506117cc826120ba565b604082019050919050565b6117e081611bd1565b82525050565b6117ef81611bdb565b82525050565b600060208201905061180a60008301846115f0565b92915050565b600060608201905061182560008301866115e1565b61183260208301856115f0565b61183f60408301846117d7565b949350505050565b600060408201905061185c60008301856115e1565b61186960208301846117d7565b9392505050565b600060208201905061188560008301846115ff565b92915050565b60006020820190506118a0600083018461160e565b92915050565b600060208201905081810360008301526118c0818461161d565b905092915050565b600060208201905081810360008301526118e181611656565b9050919050565b6000602082019050818103600083015261190181611679565b9050919050565b600060208201905081810360008301526119218161169c565b9050919050565b60006020820190508181036000830152611941816116bf565b9050919050565b60006020820190508181036000830152611961816116e2565b9050919050565b6000602082019050818103600083015261198181611705565b9050919050565b600060208201905081810360008301526119a181611728565b9050919050565b600060208201905081810360008301526119c18161174b565b9050919050565b600060208201905081810360008301526119e18161176e565b9050919050565b60006020820190508181036000830152611a0181611791565b9050919050565b60006020820190508181036000830152611a21816117b4565b9050919050565b6000602082019050611a3d60008301846117d7565b92915050565b6000602082019050611a5860008301846117e6565b92915050565b6000611a68611a79565b9050611a748282611c95565b919050565b6000604051905090565b600067ffffffffffffffff821115611a9e57611a9d611d9c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611aca57611ac9611d9c565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611b0282611bd1565b9150611b0d83611bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4257611b41611d0f565b5b828201905092915050565b6000611b5882611bd1565b9150611b6383611bd1565b925082821015611b7657611b75611d0f565b5b828203905092915050565b6000611b8c82611bb1565b9050919050565b6000611b9e82611bb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611bf382611c0c565b9050919050565b6000611c0582611c0c565b9050919050565b6000611c1782611c1e565b9050919050565b6000611c2982611bb1565b9050919050565b60005b83811015611c4e578082015181840152602081019050611c33565b83811115611c5d576000848401525b50505050565b60006002820490506001821680611c7b57607f821691505b60208210811415611c8f57611c8e611d3e565b5b50919050565b611c9e82611ddf565b810181811067ffffffffffffffff82111715611cbd57611cbc611d9c565b5b80604052505050565b6000611cd182611bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d0457611d03611d0f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61211281611b81565b811461211d57600080fd5b50565b61212981611b93565b811461213457600080fd5b50565b61214081611ba5565b811461214b57600080fd5b50565b61215781611bd1565b811461216257600080fd5b5056fea264697066735822122034505c8a896dc233f631ed185f5a9e2827f012eede66aef4121a64ee8f00c43064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101095760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d71461036d578063a9059cbb146103aa578063db1850ec146103e7578063dd62ed3e14610403578063f2fde38b1461044057610109565b8063715018a6146102d757806379cc6790146102ee5780638da5cb5b1461031757806395d89b411461034257610109565b806323b872dd116100dc57806323b872dd146101cc578063313ce56714610209578063395093511461023457806342966c681461027157806370a082311461029a57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323a98bd7146101a1575b600080fd5b34801561011a57600080fd5b50610123610469565b60405161013091906118a6565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b9190611547565b6104fb565b60405161016d9190611870565b60405180910390f35b34801561018257600080fd5b5061018b61051e565b6040516101989190611a28565b60405180910390f35b3480156101ad57600080fd5b506101b6610528565b6040516101c3919061188b565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee91906114f4565b61054e565b6040516102009190611870565b60405180910390f35b34801561021557600080fd5b5061021e61057d565b60405161022b9190611a43565b60405180910390f35b34801561024057600080fd5b5061025b60048036038101906102569190611547565b610586565b6040516102689190611870565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906115b4565b6105bd565b005b3480156102a657600080fd5b506102c160048036038101906102bc91906113fc565b6105d1565b6040516102ce9190611a28565b60405180910390f35b3480156102e357600080fd5b506102ec610619565b005b3480156102fa57600080fd5b5061031560048036038101906103109190611547565b61062d565b005b34801561032357600080fd5b5061032c61064d565b60405161033991906117f5565b60405180910390f35b34801561034e57600080fd5b50610357610677565b60405161036491906118a6565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f9190611547565b610709565b6040516103a19190611870565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190611547565b610780565b6040516103de9190611870565b60405180910390f35b61040160048036038101906103fc9190611429565b6107a3565b005b34801561040f57600080fd5b5061042a600480360381019061042591906114b4565b61095c565b6040516104379190611a28565b60405180910390f35b34801561044c57600080fd5b50610467600480360381019061046291906113fc565b6109e3565b005b60606003805461047890611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546104a490611c63565b80156104f15780601f106104c6576101008083540402835291602001916104f1565b820191906000526020600020905b8154815290600101906020018083116104d457829003601f168201915b5050505050905090565b600080610506610a67565b9050610513818585610a6f565b600191505092915050565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610559610a67565b9050610566858285610c3a565b610571858585610cc6565b60019150509392505050565b60006012905090565b600080610591610a67565b90506105b28185856105a3858961095c565b6105ad9190611af7565b610a6f565b600191505092915050565b6105ce6105c8610a67565b82610f47565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61062161111e565b61062b600061119c565b565b61063f82610639610a67565b83610c3a565b6106498282610f47565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068690611c63565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290611c63565b80156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b5050505050905090565b600080610714610a67565b90506000610722828661095c565b905083811015610767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075e90611a08565b60405180910390fd5b6107748286868403610a6f565b60019250505092915050565b60008061078b610a67565b9050610798818585610cc6565b600191505092915050565b82600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b825181101561095657600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84838151811061084157610840611d6d565b5b602002602001015184848151811061085c5761085b611d6d565b5b60200260200101516040518363ffffffff1660e01b8152600401610881929190611847565b602060405180830381600087803b15801561089b57600080fd5b505af11580156108af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d39190611587565b507f3990db2d31862302a685e8086b5755072a6e2b5b780af1ee81ece35ee3cd33458484838151811061090957610908611d6d565b5b602002602001015184848151811061092457610923611d6d565b5b602002602001015160405161093b93929190611810565b60405180910390a1808061094e90611cc6565b9150506107e7565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109eb61111e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5290611908565b60405180910390fd5b610a648161119c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad6906119e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611928565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c2d9190611a28565b60405180910390a3505050565b6000610c46848461095c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cc05781811015610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990611948565b60405180910390fd5b610cbf8484848403610a6f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d906119c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d906118c8565b60405180910390fd5b610db1838383611262565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90611968565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eca9190611af7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f2e9190611a28565b60405180910390a3610f41848484611267565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae906119a8565b60405180910390fd5b610fc382600083611262565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906118e8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110a09190611b4d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111059190611a28565b60405180910390a361111983600084611267565b505050565b611126610a67565b73ffffffffffffffffffffffffffffffffffffffff1661114461064d565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190611988565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600061127f61127a84611a83565b611a5e565b905080838252602082019050828560208602820111156112a2576112a1611dd0565b5b60005b858110156112d257816112b8888261134c565b8452602084019350602083019250506001810190506112a5565b5050509392505050565b60006112ef6112ea84611aaf565b611a5e565b9050808382526020820190508285602086028201111561131257611311611dd0565b5b60005b85811015611342578161132888826113e7565b845260208401935060208301925050600181019050611315565b5050509392505050565b60008135905061135b81612109565b92915050565b60008135905061137081612120565b92915050565b600082601f83011261138b5761138a611dcb565b5b813561139b84826020860161126c565b91505092915050565b600082601f8301126113b9576113b8611dcb565b5b81356113c98482602086016112dc565b91505092915050565b6000815190506113e181612137565b92915050565b6000813590506113f68161214e565b92915050565b60006020828403121561141257611411611dda565b5b60006114208482850161134c565b91505092915050565b60008060006060848603121561144257611441611dda565b5b600061145086828701611361565b935050602084013567ffffffffffffffff81111561147157611470611dd5565b5b61147d86828701611376565b925050604084013567ffffffffffffffff81111561149e5761149d611dd5565b5b6114aa868287016113a4565b9150509250925092565b600080604083850312156114cb576114ca611dda565b5b60006114d98582860161134c565b92505060206114ea8582860161134c565b9150509250929050565b60008060006060848603121561150d5761150c611dda565b5b600061151b8682870161134c565b935050602061152c8682870161134c565b925050604061153d868287016113e7565b9150509250925092565b6000806040838503121561155e5761155d611dda565b5b600061156c8582860161134c565b925050602061157d858286016113e7565b9150509250929050565b60006020828403121561159d5761159c611dda565b5b60006115ab848285016113d2565b91505092915050565b6000602082840312156115ca576115c9611dda565b5b60006115d8848285016113e7565b91505092915050565b6115ea81611be8565b82525050565b6115f981611b81565b82525050565b61160881611ba5565b82525050565b61161781611bfa565b82525050565b600061162882611adb565b6116328185611ae6565b9350611642818560208601611c30565b61164b81611ddf565b840191505092915050565b6000611663602383611ae6565b915061166e82611df0565b604082019050919050565b6000611686602283611ae6565b915061169182611e3f565b604082019050919050565b60006116a9602683611ae6565b91506116b482611e8e565b604082019050919050565b60006116cc602283611ae6565b91506116d782611edd565b604082019050919050565b60006116ef601d83611ae6565b91506116fa82611f2c565b602082019050919050565b6000611712602683611ae6565b915061171d82611f55565b604082019050919050565b6000611735602083611ae6565b915061174082611fa4565b602082019050919050565b6000611758602183611ae6565b915061176382611fcd565b604082019050919050565b600061177b602583611ae6565b91506117868261201c565b604082019050919050565b600061179e602483611ae6565b91506117a98261206b565b604082019050919050565b60006117c1602583611ae6565b91506117cc826120ba565b604082019050919050565b6117e081611bd1565b82525050565b6117ef81611bdb565b82525050565b600060208201905061180a60008301846115f0565b92915050565b600060608201905061182560008301866115e1565b61183260208301856115f0565b61183f60408301846117d7565b949350505050565b600060408201905061185c60008301856115e1565b61186960208301846117d7565b9392505050565b600060208201905061188560008301846115ff565b92915050565b60006020820190506118a0600083018461160e565b92915050565b600060208201905081810360008301526118c0818461161d565b905092915050565b600060208201905081810360008301526118e181611656565b9050919050565b6000602082019050818103600083015261190181611679565b9050919050565b600060208201905081810360008301526119218161169c565b9050919050565b60006020820190508181036000830152611941816116bf565b9050919050565b60006020820190508181036000830152611961816116e2565b9050919050565b6000602082019050818103600083015261198181611705565b9050919050565b600060208201905081810360008301526119a181611728565b9050919050565b600060208201905081810360008301526119c18161174b565b9050919050565b600060208201905081810360008301526119e18161176e565b9050919050565b60006020820190508181036000830152611a0181611791565b9050919050565b60006020820190508181036000830152611a21816117b4565b9050919050565b6000602082019050611a3d60008301846117d7565b92915050565b6000602082019050611a5860008301846117e6565b92915050565b6000611a68611a79565b9050611a748282611c95565b919050565b6000604051905090565b600067ffffffffffffffff821115611a9e57611a9d611d9c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611aca57611ac9611d9c565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000611b0282611bd1565b9150611b0d83611bd1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4257611b41611d0f565b5b828201905092915050565b6000611b5882611bd1565b9150611b6383611bd1565b925082821015611b7657611b75611d0f565b5b828203905092915050565b6000611b8c82611bb1565b9050919050565b6000611b9e82611bb1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611bf382611c0c565b9050919050565b6000611c0582611c0c565b9050919050565b6000611c1782611c1e565b9050919050565b6000611c2982611bb1565b9050919050565b60005b83811015611c4e578082015181840152602081019050611c33565b83811115611c5d576000848401525b50505050565b60006002820490506001821680611c7b57607f821691505b60208210811415611c8f57611c8e611d3e565b5b50919050565b611c9e82611ddf565b810181811067ffffffffffffffff82111715611cbd57611cbc611d9c565b5b80604052505050565b6000611cd182611bd1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611d0457611d03611d0f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61211281611b81565b811461211d57600080fd5b50565b61212981611b93565b811461213457600080fd5b50565b61214081611ba5565b811461214b57600080fd5b50565b61215781611bd1565b811461216257600080fd5b5056fea264697066735822122034505c8a896dc233f631ed185f5a9e2827f012eede66aef4121a64ee8f00c43064736f6c63430008070033

Deployed Bytecode Sourcemap

21354:788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11685:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10454:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21419:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12466:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10296:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13170:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20703:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10625:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2757:103;;;;;;;;;;;;;:::i;:::-;;21113:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2109:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13911:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10958:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21671:468;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11214:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9334:100;9388:13;9421:5;9414:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9334:100;:::o;11685:201::-;11768:4;11785:13;11801:12;:10;:12::i;:::-;11785:28;;11824:32;11833:5;11840:7;11849:6;11824:8;:32::i;:::-;11874:4;11867:11;;;11685:201;;;;:::o;10454:108::-;10515:7;10542:12;;10535:19;;10454:108;:::o;21419:29::-;;;;;;;;;;;;;:::o;12466:295::-;12597:4;12614:15;12632:12;:10;:12::i;:::-;12614:30;;12655:38;12671:4;12677:7;12686:6;12655:15;:38::i;:::-;12704:27;12714:4;12720:2;12724:6;12704:9;:27::i;:::-;12749:4;12742:11;;;12466:295;;;;;:::o;10296:93::-;10354:5;10379:2;10372:9;;10296:93;:::o;13170:238::-;13258:4;13275:13;13291:12;:10;:12::i;:::-;13275:28;;13314:64;13323:5;13330:7;13367:10;13339:25;13349:5;13356:7;13339:9;:25::i;:::-;:38;;;;:::i;:::-;13314:8;:64::i;:::-;13396:4;13389:11;;;13170:238;;;;:::o;20703:91::-;20759:27;20765:12;:10;:12::i;:::-;20779:6;20759:5;:27::i;:::-;20703:91;:::o;10625:127::-;10699:7;10726:9;:18;10736:7;10726:18;;;;;;;;;;;;;;;;10719:25;;10625:127;;;:::o;2757:103::-;1995:13;:11;:13::i;:::-;2822:30:::1;2849:1;2822:18;:30::i;:::-;2757:103::o:0;21113:164::-;21190:46;21206:7;21215:12;:10;:12::i;:::-;21229:6;21190:15;:46::i;:::-;21247:22;21253:7;21262:6;21247:5;:22::i;:::-;21113:164;;:::o;2109:87::-;2155:7;2182:6;;;;;;;;;;;2175:13;;2109:87;:::o;9553:104::-;9609:13;9642:7;9635:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9553:104;:::o;13911:436::-;14004:4;14021:13;14037:12;:10;:12::i;:::-;14021:28;;14060:24;14087:25;14097:5;14104:7;14087:9;:25::i;:::-;14060:52;;14151:15;14131:16;:35;;14123:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14244:60;14253:5;14260:7;14288:15;14269:16;:34;14244:8;:60::i;:::-;14335:4;14328:11;;;;13911:436;;;;:::o;10958:193::-;11037:4;11054:13;11070:12;:10;:12::i;:::-;11054:28;;11093;11103:5;11110:2;11114:6;11093:9;:28::i;:::-;11139:4;11132:11;;;10958:193;;;;:::o;21671:468::-;21901:6;21879:14;;:29;;;;;;;;;;;;;;;;;;21924:12;21919:213;21949:9;:16;21942:4;:23;21919:213;;;21990:14;;;;;;;;;;;:23;;;22022:9;22032:4;22022:15;;;;;;;;:::i;:::-;;;;;;;;22040:8;22049:4;22040:14;;;;;;;;:::i;:::-;;;;;;;;21990:65;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22075:45;22080:6;22088:9;22098:4;22088:15;;;;;;;;:::i;:::-;;;;;;;;22105:8;22114:4;22105:14;;;;;;;;:::i;:::-;;;;;;;;22075:45;;;;;;;;:::i;:::-;;;;;;;;21967:6;;;;;:::i;:::-;;;;21919:213;;;;21671:468;;;:::o;11214:151::-;11303:7;11330:11;:18;11342:5;11330:18;;;;;;;;;;;;;;;:27;11349:7;11330:27;;;;;;;;;;;;;;;;11323:34;;11214:151;;;;:::o;3015:201::-;1995:13;:11;:13::i;:::-;3124:1:::1;3104:22;;:8;:22;;;;3096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3180:28;3199:8;3180:18;:28::i;:::-;3015:201:::0;:::o;660:98::-;713:7;740:10;733:17;;660:98;:::o;17536:380::-;17689:1;17672:19;;:5;:19;;;;17664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17770:1;17751:21;;:7;:21;;;;17743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17854:6;17824:11;:18;17836:5;17824:18;;;;;;;;;;;;;;;:27;17843:7;17824:27;;;;;;;;;;;;;;;:36;;;;17892:7;17876:32;;17885:5;17876:32;;;17901:6;17876:32;;;;;;:::i;:::-;;;;;;;;17536:380;;;:::o;18207:453::-;18342:24;18369:25;18379:5;18386:7;18369:9;:25::i;:::-;18342:52;;18429:17;18409:16;:37;18405:248;;18491:6;18471:16;:26;;18463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18575:51;18584:5;18591:7;18619:6;18600:16;:25;18575:8;:51::i;:::-;18405:248;18331:329;18207:453;;;:::o;14817:671::-;14964:1;14948:18;;:4;:18;;;;14940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15041:1;15027:16;;:2;:16;;;;15019:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15096:38;15117:4;15123:2;15127:6;15096:20;:38::i;:::-;15147:19;15169:9;:15;15179:4;15169:15;;;;;;;;;;;;;;;;15147:37;;15218:6;15203:11;:21;;15195:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15335:6;15321:11;:20;15303:9;:15;15313:4;15303:15;;;;;;;;;;;;;;;:38;;;;15380:6;15363:9;:13;15373:2;15363:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15419:2;15404:26;;15413:4;15404:26;;;15423:6;15404:26;;;;;;:::i;:::-;;;;;;;;15443:37;15463:4;15469:2;15473:6;15443:19;:37::i;:::-;14929:559;14817:671;;;:::o;16507:591::-;16610:1;16591:21;;:7;:21;;;;16583:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16663:49;16684:7;16701:1;16705:6;16663:20;:49::i;:::-;16725:22;16750:9;:18;16760:7;16750:18;;;;;;;;;;;;;;;;16725:43;;16805:6;16787:14;:24;;16779:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16924:6;16907:14;:23;16886:9;:18;16896:7;16886:18;;;;;;;;;;;;;;;:44;;;;16968:6;16952:12;;:22;;;;;;;:::i;:::-;;;;;;;;17018:1;16992:37;;17001:7;16992:37;;;17022:6;16992:37;;;;;;:::i;:::-;;;;;;;;17042:48;17062:7;17079:1;17083:6;17042:19;:48::i;:::-;16572:526;16507:591;;:::o;2274:132::-;2349:12;:10;:12::i;:::-;2338:23;;:7;:5;:7::i;:::-;:23;;;2330:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2274:132::o;3376:191::-;3450:16;3469:6;;;;;;;;;;;3450:25;;3495:8;3486:6;;:17;;;;;;;;;;;;;;;;;;3550:8;3519:40;;3540:8;3519:40;;;;;;;;;;;;3439:128;3376:191;:::o;19260:125::-;;;;:::o;19989:124::-;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:139::-;1543:5;1581:6;1568:20;1559:29;;1597:33;1624:5;1597:33;:::i;:::-;1497:139;;;;:::o;1642:155::-;1696:5;1734:6;1721:20;1712:29;;1750:41;1785:5;1750:41;:::i;:::-;1642:155;;;;:::o;1820:370::-;1891:5;1940:3;1933:4;1925:6;1921:17;1917:27;1907:122;;1948:79;;:::i;:::-;1907:122;2065:6;2052:20;2090:94;2180:3;2172:6;2165:4;2157:6;2153:17;2090:94;:::i;:::-;2081:103;;1897:293;1820:370;;;;:::o;2213:::-;2284:5;2333:3;2326:4;2318:6;2314:17;2310:27;2300:122;;2341:79;;:::i;:::-;2300:122;2458:6;2445:20;2483:94;2573:3;2565:6;2558:4;2550:6;2546:17;2483:94;:::i;:::-;2474:103;;2290:293;2213:370;;;;:::o;2589:137::-;2643:5;2674:6;2668:13;2659:22;;2690:30;2714:5;2690:30;:::i;:::-;2589:137;;;;:::o;2732:139::-;2778:5;2816:6;2803:20;2794:29;;2832:33;2859:5;2832:33;:::i;:::-;2732:139;;;;:::o;2877:329::-;2936:6;2985:2;2973:9;2964:7;2960:23;2956:32;2953:119;;;2991:79;;:::i;:::-;2953:119;3111:1;3136:53;3181:7;3172:6;3161:9;3157:22;3136:53;:::i;:::-;3126:63;;3082:117;2877:329;;;;:::o;3212:1055::-;3347:6;3355;3363;3412:2;3400:9;3391:7;3387:23;3383:32;3380:119;;;3418:79;;:::i;:::-;3380:119;3538:1;3563:61;3616:7;3607:6;3596:9;3592:22;3563:61;:::i;:::-;3553:71;;3509:125;3701:2;3690:9;3686:18;3673:32;3732:18;3724:6;3721:30;3718:117;;;3754:79;;:::i;:::-;3718:117;3859:78;3929:7;3920:6;3909:9;3905:22;3859:78;:::i;:::-;3849:88;;3644:303;4014:2;4003:9;3999:18;3986:32;4045:18;4037:6;4034:30;4031:117;;;4067:79;;:::i;:::-;4031:117;4172:78;4242:7;4233:6;4222:9;4218:22;4172:78;:::i;:::-;4162:88;;3957:303;3212:1055;;;;;:::o;4273:474::-;4341:6;4349;4398:2;4386:9;4377:7;4373:23;4369:32;4366:119;;;4404:79;;:::i;:::-;4366:119;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4622:118;4273:474;;;;;:::o;4753:619::-;4830:6;4838;4846;4895:2;4883:9;4874:7;4870:23;4866:32;4863:119;;;4901:79;;:::i;:::-;4863:119;5021:1;5046:53;5091:7;5082:6;5071:9;5067:22;5046:53;:::i;:::-;5036:63;;4992:117;5148:2;5174:53;5219:7;5210:6;5199:9;5195:22;5174:53;:::i;:::-;5164:63;;5119:118;5276:2;5302:53;5347:7;5338:6;5327:9;5323:22;5302:53;:::i;:::-;5292:63;;5247:118;4753:619;;;;;:::o;5378:474::-;5446:6;5454;5503:2;5491:9;5482:7;5478:23;5474:32;5471:119;;;5509:79;;:::i;:::-;5471:119;5629:1;5654:53;5699:7;5690:6;5679:9;5675:22;5654:53;:::i;:::-;5644:63;;5600:117;5756:2;5782:53;5827:7;5818:6;5807:9;5803:22;5782:53;:::i;:::-;5772:63;;5727:118;5378:474;;;;;:::o;5858:345::-;5925:6;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:61;6178:7;6169:6;6158:9;6154:22;6125:61;:::i;:::-;6115:71;;6071:125;5858:345;;;;:::o;6209:329::-;6268:6;6317:2;6305:9;6296:7;6292:23;6288:32;6285:119;;;6323:79;;:::i;:::-;6285:119;6443:1;6468:53;6513:7;6504:6;6493:9;6489:22;6468:53;:::i;:::-;6458:63;;6414:117;6209:329;;;;:::o;6544:147::-;6639:45;6678:5;6639:45;:::i;:::-;6634:3;6627:58;6544:147;;:::o;6697:118::-;6784:24;6802:5;6784:24;:::i;:::-;6779:3;6772:37;6697:118;;:::o;6821:109::-;6902:21;6917:5;6902:21;:::i;:::-;6897:3;6890:34;6821:109;;:::o;6936:159::-;7037:51;7082:5;7037:51;:::i;:::-;7032:3;7025:64;6936:159;;:::o;7101:364::-;7189:3;7217:39;7250:5;7217:39;:::i;:::-;7272:71;7336:6;7331:3;7272:71;:::i;:::-;7265:78;;7352:52;7397:6;7392:3;7385:4;7378:5;7374:16;7352:52;:::i;:::-;7429:29;7451:6;7429:29;:::i;:::-;7424:3;7420:39;7413:46;;7193:272;7101:364;;;;:::o;7471:366::-;7613:3;7634:67;7698:2;7693:3;7634:67;:::i;:::-;7627:74;;7710:93;7799:3;7710:93;:::i;:::-;7828:2;7823:3;7819:12;7812:19;;7471:366;;;:::o;7843:::-;7985:3;8006:67;8070:2;8065:3;8006:67;:::i;:::-;7999:74;;8082:93;8171:3;8082:93;:::i;:::-;8200:2;8195:3;8191:12;8184:19;;7843:366;;;:::o;8215:::-;8357:3;8378:67;8442:2;8437:3;8378:67;:::i;:::-;8371:74;;8454:93;8543:3;8454:93;:::i;:::-;8572:2;8567:3;8563:12;8556:19;;8215:366;;;:::o;8587:::-;8729:3;8750:67;8814:2;8809:3;8750:67;:::i;:::-;8743:74;;8826:93;8915:3;8826:93;:::i;:::-;8944:2;8939:3;8935:12;8928:19;;8587:366;;;:::o;8959:::-;9101:3;9122:67;9186:2;9181:3;9122:67;:::i;:::-;9115:74;;9198:93;9287:3;9198:93;:::i;:::-;9316:2;9311:3;9307:12;9300:19;;8959:366;;;:::o;9331:::-;9473:3;9494:67;9558:2;9553:3;9494:67;:::i;:::-;9487:74;;9570:93;9659:3;9570:93;:::i;:::-;9688:2;9683:3;9679:12;9672:19;;9331:366;;;:::o;9703:::-;9845:3;9866:67;9930:2;9925:3;9866:67;:::i;:::-;9859:74;;9942:93;10031:3;9942:93;:::i;:::-;10060:2;10055:3;10051:12;10044:19;;9703:366;;;:::o;10075:::-;10217:3;10238:67;10302:2;10297:3;10238:67;:::i;:::-;10231:74;;10314:93;10403:3;10314:93;:::i;:::-;10432:2;10427:3;10423:12;10416:19;;10075:366;;;:::o;10447:::-;10589:3;10610:67;10674:2;10669:3;10610:67;:::i;:::-;10603:74;;10686:93;10775:3;10686:93;:::i;:::-;10804:2;10799:3;10795:12;10788:19;;10447:366;;;:::o;10819:::-;10961:3;10982:67;11046:2;11041:3;10982:67;:::i;:::-;10975:74;;11058:93;11147:3;11058:93;:::i;:::-;11176:2;11171:3;11167:12;11160:19;;10819:366;;;:::o;11191:::-;11333:3;11354:67;11418:2;11413:3;11354:67;:::i;:::-;11347:74;;11430:93;11519:3;11430:93;:::i;:::-;11548:2;11543:3;11539:12;11532:19;;11191:366;;;:::o;11563:118::-;11650:24;11668:5;11650:24;:::i;:::-;11645:3;11638:37;11563:118;;:::o;11687:112::-;11770:22;11786:5;11770:22;:::i;:::-;11765:3;11758:35;11687:112;;:::o;11805:222::-;11898:4;11936:2;11925:9;11921:18;11913:26;;11949:71;12017:1;12006:9;12002:17;11993:6;11949:71;:::i;:::-;11805:222;;;;:::o;12033:458::-;12190:4;12228:2;12217:9;12213:18;12205:26;;12241:79;12317:1;12306:9;12302:17;12293:6;12241:79;:::i;:::-;12330:72;12398:2;12387:9;12383:18;12374:6;12330:72;:::i;:::-;12412;12480:2;12469:9;12465:18;12456:6;12412:72;:::i;:::-;12033:458;;;;;;:::o;12497:348::-;12626:4;12664:2;12653:9;12649:18;12641:26;;12677:79;12753:1;12742:9;12738:17;12729:6;12677:79;:::i;:::-;12766:72;12834:2;12823:9;12819:18;12810:6;12766:72;:::i;:::-;12497:348;;;;;:::o;12851:210::-;12938:4;12976:2;12965:9;12961:18;12953:26;;12989:65;13051:1;13040:9;13036:17;13027:6;12989:65;:::i;:::-;12851:210;;;;:::o;13067:250::-;13174:4;13212:2;13201:9;13197:18;13189:26;;13225:85;13307:1;13296:9;13292:17;13283:6;13225:85;:::i;:::-;13067:250;;;;:::o;13323:313::-;13436:4;13474:2;13463:9;13459:18;13451:26;;13523:9;13517:4;13513:20;13509:1;13498:9;13494:17;13487:47;13551:78;13624:4;13615:6;13551:78;:::i;:::-;13543:86;;13323:313;;;;:::o;13642:419::-;13808:4;13846:2;13835:9;13831:18;13823:26;;13895:9;13889:4;13885:20;13881:1;13870:9;13866:17;13859:47;13923:131;14049:4;13923:131;:::i;:::-;13915:139;;13642:419;;;:::o;14067:::-;14233:4;14271:2;14260:9;14256:18;14248:26;;14320:9;14314:4;14310:20;14306:1;14295:9;14291:17;14284:47;14348:131;14474:4;14348:131;:::i;:::-;14340:139;;14067:419;;;:::o;14492:::-;14658:4;14696:2;14685:9;14681:18;14673:26;;14745:9;14739:4;14735:20;14731:1;14720:9;14716:17;14709:47;14773:131;14899:4;14773:131;:::i;:::-;14765:139;;14492:419;;;:::o;14917:::-;15083:4;15121:2;15110:9;15106:18;15098:26;;15170:9;15164:4;15160:20;15156:1;15145:9;15141:17;15134:47;15198:131;15324:4;15198:131;:::i;:::-;15190:139;;14917:419;;;:::o;15342:::-;15508:4;15546:2;15535:9;15531:18;15523:26;;15595:9;15589:4;15585:20;15581:1;15570:9;15566:17;15559:47;15623:131;15749:4;15623:131;:::i;:::-;15615:139;;15342:419;;;:::o;15767:::-;15933:4;15971:2;15960:9;15956:18;15948:26;;16020:9;16014:4;16010:20;16006:1;15995:9;15991:17;15984:47;16048:131;16174:4;16048:131;:::i;:::-;16040:139;;15767:419;;;:::o;16192:::-;16358:4;16396:2;16385:9;16381:18;16373:26;;16445:9;16439:4;16435:20;16431:1;16420:9;16416:17;16409:47;16473:131;16599:4;16473:131;:::i;:::-;16465:139;;16192:419;;;:::o;16617:::-;16783:4;16821:2;16810:9;16806:18;16798:26;;16870:9;16864:4;16860:20;16856:1;16845:9;16841:17;16834:47;16898:131;17024:4;16898:131;:::i;:::-;16890:139;;16617:419;;;:::o;17042:::-;17208:4;17246:2;17235:9;17231:18;17223:26;;17295:9;17289:4;17285:20;17281:1;17270:9;17266:17;17259:47;17323:131;17449:4;17323:131;:::i;:::-;17315:139;;17042:419;;;:::o;17467:::-;17633:4;17671:2;17660:9;17656:18;17648:26;;17720:9;17714:4;17710:20;17706:1;17695:9;17691:17;17684:47;17748:131;17874:4;17748:131;:::i;:::-;17740:139;;17467:419;;;:::o;17892:::-;18058:4;18096:2;18085:9;18081:18;18073:26;;18145:9;18139:4;18135:20;18131:1;18120:9;18116:17;18109:47;18173:131;18299:4;18173:131;:::i;:::-;18165:139;;17892:419;;;:::o;18317:222::-;18410:4;18448:2;18437:9;18433:18;18425:26;;18461:71;18529:1;18518:9;18514:17;18505:6;18461:71;:::i;:::-;18317:222;;;;:::o;18545:214::-;18634:4;18672:2;18661:9;18657:18;18649:26;;18685:67;18749:1;18738:9;18734:17;18725:6;18685:67;:::i;:::-;18545:214;;;;:::o;18765:129::-;18799:6;18826:20;;:::i;:::-;18816:30;;18855:33;18883:4;18875:6;18855:33;:::i;:::-;18765:129;;;:::o;18900:75::-;18933:6;18966:2;18960:9;18950:19;;18900:75;:::o;18981:311::-;19058:4;19148:18;19140:6;19137:30;19134:56;;;19170:18;;:::i;:::-;19134:56;19220:4;19212:6;19208:17;19200:25;;19280:4;19274;19270:15;19262:23;;18981:311;;;:::o;19298:::-;19375:4;19465:18;19457:6;19454:30;19451:56;;;19487:18;;:::i;:::-;19451:56;19537:4;19529:6;19525:17;19517:25;;19597:4;19591;19587:15;19579:23;;19298:311;;;:::o;19615:99::-;19667:6;19701:5;19695:12;19685:22;;19615:99;;;:::o;19720:169::-;19804:11;19838:6;19833:3;19826:19;19878:4;19873:3;19869:14;19854:29;;19720:169;;;;:::o;19895:305::-;19935:3;19954:20;19972:1;19954:20;:::i;:::-;19949:25;;19988:20;20006:1;19988:20;:::i;:::-;19983:25;;20142:1;20074:66;20070:74;20067:1;20064:81;20061:107;;;20148:18;;:::i;:::-;20061:107;20192:1;20189;20185:9;20178:16;;19895:305;;;;:::o;20206:191::-;20246:4;20266:20;20284:1;20266:20;:::i;:::-;20261:25;;20300:20;20318:1;20300:20;:::i;:::-;20295:25;;20339:1;20336;20333:8;20330:34;;;20344:18;;:::i;:::-;20330:34;20389:1;20386;20382:9;20374:17;;20206:191;;;;:::o;20403:96::-;20440:7;20469:24;20487:5;20469:24;:::i;:::-;20458:35;;20403:96;;;:::o;20505:104::-;20550:7;20579:24;20597:5;20579:24;:::i;:::-;20568:35;;20505:104;;;:::o;20615:90::-;20649:7;20692:5;20685:13;20678:21;20667:32;;20615:90;;;:::o;20711:126::-;20748:7;20788:42;20781:5;20777:54;20766:65;;20711:126;;;:::o;20843:77::-;20880:7;20909:5;20898:16;;20843:77;;;:::o;20926:86::-;20961:7;21001:4;20994:5;20990:16;20979:27;;20926:86;;;:::o;21018:134::-;21076:9;21109:37;21140:5;21109:37;:::i;:::-;21096:50;;21018:134;;;:::o;21158:140::-;21222:9;21255:37;21286:5;21255:37;:::i;:::-;21242:50;;21158:140;;;:::o;21304:126::-;21354:9;21387:37;21418:5;21387:37;:::i;:::-;21374:50;;21304:126;;;:::o;21436:113::-;21486:9;21519:24;21537:5;21519:24;:::i;:::-;21506:37;;21436:113;;;:::o;21555:307::-;21623:1;21633:113;21647:6;21644:1;21641:13;21633:113;;;21732:1;21727:3;21723:11;21717:18;21713:1;21708:3;21704:11;21697:39;21669:2;21666:1;21662:10;21657:15;;21633:113;;;21764:6;21761:1;21758:13;21755:101;;;21844:1;21835:6;21830:3;21826:16;21819:27;21755:101;21604:258;21555:307;;;:::o;21868:320::-;21912:6;21949:1;21943:4;21939:12;21929:22;;21996:1;21990:4;21986:12;22017:18;22007:81;;22073:4;22065:6;22061:17;22051:27;;22007:81;22135:2;22127:6;22124:14;22104:18;22101:38;22098:84;;;22154:18;;:::i;:::-;22098:84;21919:269;21868:320;;;:::o;22194:281::-;22277:27;22299:4;22277:27;:::i;:::-;22269:6;22265:40;22407:6;22395:10;22392:22;22371:18;22359:10;22356:34;22353:62;22350:88;;;22418:18;;:::i;:::-;22350:88;22458:10;22454:2;22447:22;22237:238;22194:281;;:::o;22481:233::-;22520:3;22543:24;22561:5;22543:24;:::i;:::-;22534:33;;22589:66;22582:5;22579:77;22576:103;;;22659:18;;:::i;:::-;22576:103;22706:1;22699:5;22695:13;22688:20;;22481:233;;;:::o;22720:180::-;22768:77;22765:1;22758:88;22865:4;22862:1;22855:15;22889:4;22886:1;22879:15;22906:180;22954:77;22951:1;22944:88;23051:4;23048:1;23041:15;23075:4;23072:1;23065:15;23092:180;23140:77;23137:1;23130:88;23237:4;23234:1;23227:15;23261:4;23258:1;23251:15;23278:180;23326:77;23323:1;23316:88;23423:4;23420:1;23413:15;23447:4;23444:1;23437:15;23464:117;23573:1;23570;23563:12;23587:117;23696:1;23693;23686:12;23710:117;23819:1;23816;23809:12;23833:117;23942:1;23939;23932:12;23956:102;23997:6;24048:2;24044:7;24039:2;24032:5;24028:14;24024:28;24014:38;;23956:102;;;:::o;24064:222::-;24204:34;24200:1;24192:6;24188:14;24181:58;24273:5;24268:2;24260:6;24256:15;24249:30;24064:222;:::o;24292:221::-;24432:34;24428:1;24420:6;24416:14;24409:58;24501:4;24496:2;24488:6;24484:15;24477:29;24292:221;:::o;24519:225::-;24659:34;24655:1;24647:6;24643:14;24636:58;24728:8;24723:2;24715:6;24711:15;24704:33;24519:225;:::o;24750:221::-;24890:34;24886:1;24878:6;24874:14;24867:58;24959:4;24954:2;24946:6;24942:15;24935:29;24750:221;:::o;24977:179::-;25117:31;25113:1;25105:6;25101:14;25094:55;24977:179;:::o;25162:225::-;25302:34;25298:1;25290:6;25286:14;25279:58;25371:8;25366:2;25358:6;25354:15;25347:33;25162:225;:::o;25393:182::-;25533:34;25529:1;25521:6;25517:14;25510:58;25393:182;:::o;25581:220::-;25721:34;25717:1;25709:6;25705:14;25698:58;25790:3;25785:2;25777:6;25773:15;25766:28;25581:220;:::o;25807:224::-;25947:34;25943:1;25935:6;25931:14;25924:58;26016:7;26011:2;26003:6;25999:15;25992:32;25807:224;:::o;26037:223::-;26177:34;26173:1;26165:6;26161:14;26154:58;26246:6;26241:2;26233:6;26229:15;26222:31;26037:223;:::o;26266:224::-;26406:34;26402:1;26394:6;26390:14;26383:58;26475:7;26470:2;26462:6;26458:15;26451:32;26266:224;:::o;26496:122::-;26569:24;26587:5;26569:24;:::i;:::-;26562:5;26559:35;26549:63;;26608:1;26605;26598:12;26549:63;26496:122;:::o;26624:138::-;26705:32;26731:5;26705:32;:::i;:::-;26698:5;26695:43;26685:71;;26752:1;26749;26742:12;26685:71;26624:138;:::o;26768:116::-;26838:21;26853:5;26838:21;:::i;:::-;26831:5;26828:32;26818:60;;26874:1;26871;26864:12;26818:60;26768:116;:::o;26890:122::-;26963:24;26981:5;26963:24;:::i;:::-;26956:5;26953:35;26943:63;;27002:1;26999;26992:12;26943:63;26890:122;:::o

Swarm Source

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