ETH Price: $3,108.42 (+0.34%)

Token

CypherShia (CYA)
 

Overview

Max Total Supply

100,000,000 CYA

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,172,171.758632557085834252 CYA

Value
$0.00
0x36df1f407a81e21f02726c493fbe2a1c852bb63a
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:
CypherShia

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-09-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/utils/Context.sol

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

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

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

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

/**
 * @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.
 *
 *
 * 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 with given initialOwner.
     */
    constructor(address initialOwner) {
        _setOwner(initialOwner);
    }

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

/**
 * @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

/**
 * @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 CypherShia is IERC20, IERC20Metadata, Ownable {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name = "CypherShia";
    string private _symbol = "CYA";

    uint256 public fee = 100; //1%
    uint256 public denominator = 10_000;
    address public feeAddress;
    mapping(address => bool) private _excludedFromFee;

    /**
     * @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() Ownable(msg.sender) {
        _mint(msg.sender, 100_000_000 * 10 ** decimals());
        feeAddress = msg.sender;
    }

    function setFee(uint256 _fee) external onlyOwner {
        // fee must be less than 5%
        require(_fee <= 500, "_");
        fee = _fee;
    }

    function setExcludedFromFee(address _user, bool _fee) external onlyOwner {
        _excludedFromFee[_user] = _fee;
    }

    function getExcludedFromFee(address _user) external view returns (bool) {
        return _excludedFromFee[_user];
    }

    function setFeeAddress(address _feeAddress) external onlyOwner {
        feeAddress = _feeAddress;
    }

    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 pure override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view 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 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 {
        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;
        if (isContract(recipient) && !_excludedFromFee[recipient]) {
            uint256 feeAmount = (fee * amount) / denominator;
            _balances[recipient] += (amount - feeAmount);
            _balances[feeAddress] += feeAmount;
        } else {
            _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 {
        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 {
        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 {
        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 Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"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":[],"name":"denominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_fee","type":"bool"}],"name":"setExcludedFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","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"}]

60806040526040518060400160405280600a81526020017f4379706865725368696100000000000000000000000000000000000000000000815250600490816200004a9190620005dd565b506040518060400160405280600381526020017f435941000000000000000000000000000000000000000000000000000000000081525060059081620000919190620005dd565b506064600655612710600755348015620000aa57600080fd5b5033620000bd816200014560201b60201c565b50620000fe33620000d36200020960201b60201c565b600a620000e1919062000854565b6305f5e100620000f29190620008a5565b6200021260201b60201c565b33600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620009dc565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027b9062000951565b60405180910390fd5b806003600082825462000298919062000973565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002f0919062000973565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003579190620009bf565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003e557607f821691505b602082108103620003fb57620003fa6200039d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000426565b62000471868362000426565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004be620004b8620004b28462000489565b62000493565b62000489565b9050919050565b6000819050919050565b620004da836200049d565b620004f2620004e982620004c5565b84845462000433565b825550505050565b600090565b62000509620004fa565b62000516818484620004cf565b505050565b5b818110156200053e5762000532600082620004ff565b6001810190506200051c565b5050565b601f8211156200058d57620005578162000401565b620005628462000416565b8101602085101562000572578190505b6200058a620005818562000416565b8301826200051b565b50505b505050565b600082821c905092915050565b6000620005b26000198460080262000592565b1980831691505092915050565b6000620005cd83836200059f565b9150826002028217905092915050565b620005e88262000363565b67ffffffffffffffff8111156200060457620006036200036e565b5b620006108254620003cc565b6200061d82828562000542565b600060209050601f83116001811462000655576000841562000640578287015190505b6200064c8582620005bf565b865550620006bc565b601f198416620006658662000401565b60005b828110156200068f5784890151825560018201915060208501945060208101905062000668565b86831015620006af5784890151620006ab601f8916826200059f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000752578086048111156200072a5762000729620006c4565b5b60018516156200073a5780820291505b80810290506200074a85620006f3565b94506200070a565b94509492505050565b6000826200076d576001905062000840565b816200077d576000905062000840565b8160018114620007965760028114620007a157620007d7565b600191505062000840565b60ff841115620007b657620007b5620006c4565b5b8360020a915084821115620007d057620007cf620006c4565b5b5062000840565b5060208310610133831016604e8410600b8410161715620008115782820a9050838111156200080b576200080a620006c4565b5b62000840565b62000820848484600162000700565b925090508184048111156200083a5762000839620006c4565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008618262000489565b91506200086e8362000847565b92506200089d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200075b565b905092915050565b6000620008b28262000489565b9150620008bf8362000489565b9250828202620008cf8162000489565b91508282048414831517620008e957620008e8620006c4565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000939601f83620008f0565b9150620009468262000901565b602082019050919050565b600060208201905081810360008301526200096c816200092a565b9050919050565b6000620009808262000489565b91506200098d8362000489565b9250828201905080821115620009a857620009a7620006c4565b5b92915050565b620009b98162000489565b82525050565b6000602082019050620009d66000830184620009ae565b92915050565b611ef880620009ec6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461032c578063a9059cbb1461035c578063d731df401461038c578063dd62ed3e146103bc578063ddca3f43146103ec578063f2fde38b1461040a57610137565b8063715018a6146102ac5780638705fcd4146102b65780638da5cb5b146102d257806395d89b41146102f057806396ce07951461030e57610137565b806339509351116100ff57806339509351146101f657806341275358146102265780636612e66f1461024457806369fe0e2d1461026057806370a082311461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610426565b60405161015191906114ac565b60405180910390f35b610174600480360381019061016f9190611567565b6104b8565b60405161018191906115c2565b60405180910390f35b6101926104d6565b60405161019f91906115ec565b60405180910390f35b6101c260048036038101906101bd9190611607565b6104e0565b6040516101cf91906115c2565b60405180910390f35b6101e06105e1565b6040516101ed9190611676565b60405180910390f35b610210600480360381019061020b9190611567565b6105ea565b60405161021d91906115c2565b60405180910390f35b61022e610696565b60405161023b91906116a0565b60405180910390f35b61025e600480360381019061025991906116e7565b6106bc565b005b61027a60048036038101906102759190611727565b610793565b005b61029660048036038101906102919190611754565b61085e565b6040516102a391906115ec565b60405180910390f35b6102b46108a7565b005b6102d060048036038101906102cb9190611754565b61092f565b005b6102da6109ef565b6040516102e791906116a0565b60405180910390f35b6102f8610a18565b60405161030591906114ac565b60405180910390f35b610316610aaa565b60405161032391906115ec565b60405180910390f35b61034660048036038101906103419190611567565b610ab0565b60405161035391906115c2565b60405180910390f35b61037660048036038101906103719190611567565b610ba4565b60405161038391906115c2565b60405180910390f35b6103a660048036038101906103a19190611754565b610bc2565b6040516103b391906115c2565b60405180910390f35b6103d660048036038101906103d19190611781565b610c18565b6040516103e391906115ec565b60405180910390f35b6103f4610c9f565b60405161040191906115ec565b60405180910390f35b610424600480360381019061041f9190611754565b610ca5565b005b606060048054610435906117f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610461906117f0565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b60006104cc6104c5610d9c565b8484610da4565b6001905092915050565b6000600354905090565b60006104ed848484610f6d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610538610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90611893565b60405180910390fd5b6105d5856105c4610d9c565b85846105d091906118e2565b610da4565b60019150509392505050565b60006012905090565b600061068c6105f7610d9c565b848460026000610605610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106879190611916565b610da4565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106c4610d9c565b73ffffffffffffffffffffffffffffffffffffffff166106e26109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611996565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61079b610d9c565b73ffffffffffffffffffffffffffffffffffffffff166107b96109ef565b73ffffffffffffffffffffffffffffffffffffffff161461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690611996565b60405180910390fd5b6101f4811115610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611a02565b60405180910390fd5b8060068190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108af610d9c565b73ffffffffffffffffffffffffffffffffffffffff166108cd6109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90611996565b60405180910390fd5b61092d6000611345565b565b610937610d9c565b73ffffffffffffffffffffffffffffffffffffffff166109556109ef565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290611996565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a27906117f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a53906117f0565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b60075481565b60008060026000610abf610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611a94565b60405180910390fd5b610b99610b87610d9c565b858584610b9491906118e2565b610da4565b600191505092915050565b6000610bb8610bb1610d9c565b8484610f6d565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b610cad610d9c565b73ffffffffffffffffffffffffffffffffffffffff16610ccb6109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611b26565b60405180910390fd5b610d9981611345565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611bb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611c4a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6091906115ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390611cdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290611d6e565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990611e00565b60405180910390fd5b81816110de91906118e2565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061112a83611409565b80156111805750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611283576000600754836006546111989190611e20565b6111a29190611e91565b905080836111b091906118e2565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111fe9190611916565b925050819055508060016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112769190611916565b92505081905550506112da565b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d29190611916565b925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133791906115ec565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145657808201518184015260208101905061143b565b60008484015250505050565b6000601f19601f8301169050919050565b600061147e8261141c565b6114888185611427565b9350611498818560208601611438565b6114a181611462565b840191505092915050565b600060208201905081810360008301526114c68184611473565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fe826114d3565b9050919050565b61150e816114f3565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000819050919050565b61154481611531565b811461154f57600080fd5b50565b6000813590506115618161153b565b92915050565b6000806040838503121561157e5761157d6114ce565b5b600061158c8582860161151c565b925050602061159d85828601611552565b9150509250929050565b60008115159050919050565b6115bc816115a7565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6115e681611531565b82525050565b600060208201905061160160008301846115dd565b92915050565b6000806000606084860312156116205761161f6114ce565b5b600061162e8682870161151c565b935050602061163f8682870161151c565b925050604061165086828701611552565b9150509250925092565b600060ff82169050919050565b6116708161165a565b82525050565b600060208201905061168b6000830184611667565b92915050565b61169a816114f3565b82525050565b60006020820190506116b56000830184611691565b92915050565b6116c4816115a7565b81146116cf57600080fd5b50565b6000813590506116e1816116bb565b92915050565b600080604083850312156116fe576116fd6114ce565b5b600061170c8582860161151c565b925050602061171d858286016116d2565b9150509250929050565b60006020828403121561173d5761173c6114ce565b5b600061174b84828501611552565b91505092915050565b60006020828403121561176a576117696114ce565b5b60006117788482850161151c565b91505092915050565b60008060408385031215611798576117976114ce565b5b60006117a68582860161151c565b92505060206117b78582860161151c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180857607f821691505b60208210810361181b5761181a6117c1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187d602883611427565b915061188882611821565b604082019050919050565b600060208201905081810360008301526118ac81611870565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ed82611531565b91506118f883611531565b92508282039050818111156119105761190f6118b3565b5b92915050565b600061192182611531565b915061192c83611531565b9250828201905080821115611944576119436118b3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611980602083611427565b915061198b8261194a565b602082019050919050565b600060208201905081810360008301526119af81611973565b9050919050565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006119ec600183611427565b91506119f7826119b6565b602082019050919050565b60006020820190508181036000830152611a1b816119df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7e602583611427565b9150611a8982611a22565b604082019050919050565b60006020820190508181036000830152611aad81611a71565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b10602683611427565b9150611b1b82611ab4565b604082019050919050565b60006020820190508181036000830152611b3f81611b03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba2602483611427565b9150611bad82611b46565b604082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602283611427565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc6602583611427565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d58602383611427565b9150611d6382611cfc565b604082019050919050565b60006020820190508181036000830152611d8781611d4b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dea602683611427565b9150611df582611d8e565b604082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b6000611e2b82611531565b9150611e3683611531565b9250828202611e4481611531565b91508282048414831517611e5b57611e5a6118b3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e9c82611531565b9150611ea783611531565b925082611eb757611eb6611e62565b5b82820490509291505056fea264697066735822122065479993bd5563c08ea5b18fb81d08dc231a83837fcc26c502d052d61ecffc6664736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461032c578063a9059cbb1461035c578063d731df401461038c578063dd62ed3e146103bc578063ddca3f43146103ec578063f2fde38b1461040a57610137565b8063715018a6146102ac5780638705fcd4146102b65780638da5cb5b146102d257806395d89b41146102f057806396ce07951461030e57610137565b806339509351116100ff57806339509351146101f657806341275358146102265780636612e66f1461024457806369fe0e2d1461026057806370a082311461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b610144610426565b60405161015191906114ac565b60405180910390f35b610174600480360381019061016f9190611567565b6104b8565b60405161018191906115c2565b60405180910390f35b6101926104d6565b60405161019f91906115ec565b60405180910390f35b6101c260048036038101906101bd9190611607565b6104e0565b6040516101cf91906115c2565b60405180910390f35b6101e06105e1565b6040516101ed9190611676565b60405180910390f35b610210600480360381019061020b9190611567565b6105ea565b60405161021d91906115c2565b60405180910390f35b61022e610696565b60405161023b91906116a0565b60405180910390f35b61025e600480360381019061025991906116e7565b6106bc565b005b61027a60048036038101906102759190611727565b610793565b005b61029660048036038101906102919190611754565b61085e565b6040516102a391906115ec565b60405180910390f35b6102b46108a7565b005b6102d060048036038101906102cb9190611754565b61092f565b005b6102da6109ef565b6040516102e791906116a0565b60405180910390f35b6102f8610a18565b60405161030591906114ac565b60405180910390f35b610316610aaa565b60405161032391906115ec565b60405180910390f35b61034660048036038101906103419190611567565b610ab0565b60405161035391906115c2565b60405180910390f35b61037660048036038101906103719190611567565b610ba4565b60405161038391906115c2565b60405180910390f35b6103a660048036038101906103a19190611754565b610bc2565b6040516103b391906115c2565b60405180910390f35b6103d660048036038101906103d19190611781565b610c18565b6040516103e391906115ec565b60405180910390f35b6103f4610c9f565b60405161040191906115ec565b60405180910390f35b610424600480360381019061041f9190611754565b610ca5565b005b606060048054610435906117f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610461906117f0565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b60006104cc6104c5610d9c565b8484610da4565b6001905092915050565b6000600354905090565b60006104ed848484610f6d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610538610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105af90611893565b60405180910390fd5b6105d5856105c4610d9c565b85846105d091906118e2565b610da4565b60019150509392505050565b60006012905090565b600061068c6105f7610d9c565b848460026000610605610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106879190611916565b610da4565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106c4610d9c565b73ffffffffffffffffffffffffffffffffffffffff166106e26109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611996565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61079b610d9c565b73ffffffffffffffffffffffffffffffffffffffff166107b96109ef565b73ffffffffffffffffffffffffffffffffffffffff161461080f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080690611996565b60405180910390fd5b6101f4811115610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611a02565b60405180910390fd5b8060068190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108af610d9c565b73ffffffffffffffffffffffffffffffffffffffff166108cd6109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90611996565b60405180910390fd5b61092d6000611345565b565b610937610d9c565b73ffffffffffffffffffffffffffffffffffffffff166109556109ef565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a290611996565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a27906117f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a53906117f0565b8015610aa05780601f10610a7557610100808354040283529160200191610aa0565b820191906000526020600020905b815481529060010190602001808311610a8357829003601f168201915b5050505050905090565b60075481565b60008060026000610abf610d9c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611a94565b60405180910390fd5b610b99610b87610d9c565b858584610b9491906118e2565b610da4565b600191505092915050565b6000610bb8610bb1610d9c565b8484610f6d565b6001905092915050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b610cad610d9c565b73ffffffffffffffffffffffffffffffffffffffff16610ccb6109ef565b73ffffffffffffffffffffffffffffffffffffffff1614610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890611996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611b26565b60405180910390fd5b610d9981611345565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90611bb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990611c4a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f6091906115ec565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390611cdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290611d6e565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990611e00565b60405180910390fd5b81816110de91906118e2565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061112a83611409565b80156111805750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611283576000600754836006546111989190611e20565b6111a29190611e91565b905080836111b091906118e2565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111fe9190611916565b925050819055508060016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112769190611916565b92505081905550506112da565b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112d29190611916565b925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133791906115ec565b60405180910390a350505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145657808201518184015260208101905061143b565b60008484015250505050565b6000601f19601f8301169050919050565b600061147e8261141c565b6114888185611427565b9350611498818560208601611438565b6114a181611462565b840191505092915050565b600060208201905081810360008301526114c68184611473565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114fe826114d3565b9050919050565b61150e816114f3565b811461151957600080fd5b50565b60008135905061152b81611505565b92915050565b6000819050919050565b61154481611531565b811461154f57600080fd5b50565b6000813590506115618161153b565b92915050565b6000806040838503121561157e5761157d6114ce565b5b600061158c8582860161151c565b925050602061159d85828601611552565b9150509250929050565b60008115159050919050565b6115bc816115a7565b82525050565b60006020820190506115d760008301846115b3565b92915050565b6115e681611531565b82525050565b600060208201905061160160008301846115dd565b92915050565b6000806000606084860312156116205761161f6114ce565b5b600061162e8682870161151c565b935050602061163f8682870161151c565b925050604061165086828701611552565b9150509250925092565b600060ff82169050919050565b6116708161165a565b82525050565b600060208201905061168b6000830184611667565b92915050565b61169a816114f3565b82525050565b60006020820190506116b56000830184611691565b92915050565b6116c4816115a7565b81146116cf57600080fd5b50565b6000813590506116e1816116bb565b92915050565b600080604083850312156116fe576116fd6114ce565b5b600061170c8582860161151c565b925050602061171d858286016116d2565b9150509250929050565b60006020828403121561173d5761173c6114ce565b5b600061174b84828501611552565b91505092915050565b60006020828403121561176a576117696114ce565b5b60006117788482850161151c565b91505092915050565b60008060408385031215611798576117976114ce565b5b60006117a68582860161151c565b92505060206117b78582860161151c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061180857607f821691505b60208210810361181b5761181a6117c1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061187d602883611427565b915061188882611821565b604082019050919050565b600060208201905081810360008301526118ac81611870565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ed82611531565b91506118f883611531565b92508282039050818111156119105761190f6118b3565b5b92915050565b600061192182611531565b915061192c83611531565b9250828201905080821115611944576119436118b3565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611980602083611427565b915061198b8261194a565b602082019050919050565b600060208201905081810360008301526119af81611973565b9050919050565b7f5f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006119ec600183611427565b91506119f7826119b6565b602082019050919050565b60006020820190508181036000830152611a1b816119df565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a7e602583611427565b9150611a8982611a22565b604082019050919050565b60006020820190508181036000830152611aad81611a71565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b10602683611427565b9150611b1b82611ab4565b604082019050919050565b60006020820190508181036000830152611b3f81611b03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba2602483611427565b9150611bad82611b46565b604082019050919050565b60006020820190508181036000830152611bd181611b95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c34602283611427565b9150611c3f82611bd8565b604082019050919050565b60006020820190508181036000830152611c6381611c27565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cc6602583611427565b9150611cd182611c6a565b604082019050919050565b60006020820190508181036000830152611cf581611cb9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d58602383611427565b9150611d6382611cfc565b604082019050919050565b60006020820190508181036000830152611d8781611d4b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dea602683611427565b9150611df582611d8e565b604082019050919050565b60006020820190508181036000830152611e1981611ddd565b9050919050565b6000611e2b82611531565b9150611e3683611531565b9250828202611e4481611531565b91508282048414831517611e5b57611e5a6118b3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611e9c82611531565b9150611ea783611531565b925082611eb757611eb6611e62565b5b82820490509291505056fea264697066735822122065479993bd5563c08ea5b18fb81d08dc231a83837fcc26c502d052d61ecffc6664736f6c63430008120033

Deployed Bytecode Sourcemap

7959:11313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9882:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12083:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10978:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12757:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10828:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13651:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8347:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9052:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8893:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11141:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5424:94;;;:::i;:::-;;9311:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4773:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10093:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8305:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14444:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11497:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9182:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11760:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8269:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5673:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9882:92;9928:13;9961:5;9954:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9882:92;:::o;12083:194::-;12191:4;12208:39;12217:12;:10;:12::i;:::-;12231:7;12240:6;12208:8;:39::i;:::-;12265:4;12258:11;;12083:194;;;;:::o;10978:100::-;11031:7;11058:12;;11051:19;;10978:100;:::o;12757:485::-;12889:4;12906:36;12916:6;12924:9;12935:6;12906:9;:36::i;:::-;12955:24;12982:11;:19;12994:6;12982:19;;;;;;;;;;;;;;;:33;13002:12;:10;:12::i;:::-;12982:33;;;;;;;;;;;;;;;;12955:60;;13068:6;13048:16;:26;;13026:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13153:57;13162:6;13170:12;:10;:12::i;:::-;13203:6;13184:16;:25;;;;:::i;:::-;13153:8;:57::i;:::-;13230:4;13223:11;;;12757:485;;;;;:::o;10828:85::-;10878:5;10903:2;10896:9;;10828:85;:::o;13651:290::-;13764:4;13781:130;13804:12;:10;:12::i;:::-;13831:7;13890:10;13853:11;:25;13865:12;:10;:12::i;:::-;13853:25;;;;;;;;;;;;;;;:34;13879:7;13853:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13781:8;:130::i;:::-;13929:4;13922:11;;13651:290;;;;:::o;8347:25::-;;;;;;;;;;;;;:::o;9052:122::-;5004:12;:10;:12::i;:::-;4993:23;;:7;:5;:7::i;:::-;:23;;;4985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9162:4:::1;9136:16;:23;9153:5;9136:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;9052:122:::0;;:::o;8893:151::-;5004:12;:10;:12::i;:::-;4993:23;;:7;:5;:7::i;:::-;:23;;;4985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9006:3:::1;8998:4;:11;;8990:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;9032:4;9026:3;:10;;;;8893:151:::0;:::o;11141:143::-;11231:7;11258:9;:18;11268:7;11258:18;;;;;;;;;;;;;;;;11251:25;;11141:143;;;:::o;5424:94::-;5004:12;:10;:12::i;:::-;4993:23;;:7;:5;:7::i;:::-;:23;;;4985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5489:21:::1;5507:1;5489:9;:21::i;:::-;5424:94::o:0;9311:106::-;5004:12;:10;:12::i;:::-;4993:23;;:7;:5;:7::i;:::-;:23;;;4985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9398:11:::1;9385:10;;:24;;;;;;;;;;;;;;;;;;9311:106:::0;:::o;4773:87::-;4819:7;4846:6;;;;;;;;;;;4839:13;;4773:87;:::o;10093:96::-;10141:13;10174:7;10167:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10093:96;:::o;8305:35::-;;;;:::o;14444:439::-;14562:4;14579:24;14606:11;:25;14618:12;:10;:12::i;:::-;14606:25;;;;;;;;;;;;;;;:34;14632:7;14606:34;;;;;;;;;;;;;;;;14579:61;;14693:15;14673:16;:35;;14651:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14784:67;14793:12;:10;:12::i;:::-;14807:7;14835:15;14816:16;:34;;;;:::i;:::-;14784:8;:67::i;:::-;14871:4;14864:11;;;14444:439;;;;:::o;11497:200::-;11608:4;11625:42;11635:12;:10;:12::i;:::-;11649:9;11660:6;11625:9;:42::i;:::-;11685:4;11678:11;;11497:200;;;;:::o;9182:121::-;9248:4;9272:16;:23;9289:5;9272:23;;;;;;;;;;;;;;;;;;;;;;;;;9265:30;;9182:121;;;:::o;11760:176::-;11874:7;11901:11;:18;11913:5;11901:18;;;;;;;;;;;;;;;:27;11920:7;11901:27;;;;;;;;;;;;;;;;11894:34;;11760:176;;;;:::o;8269:24::-;;;;:::o;5673:229::-;5004:12;:10;:12::i;:::-;4993:23;;:7;:5;:7::i;:::-;:23;;;4985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5796:1:::1;5776:22;;:8;:22;;::::0;5754:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5875:19;5885:8;5875:9;:19::i;:::-;5673:229:::0;:::o;655:98::-;708:7;735:10;728:17;;655:98;:::o;18192:338::-;18303:1;18286:19;;:5;:19;;;18278:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18384:1;18365:21;;:7;:21;;;18357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18468:6;18438:11;:18;18450:5;18438:18;;;;;;;;;;;;;;;:27;18457:7;18438:27;;;;;;;;;;;;;;;:36;;;;18506:7;18490:32;;18499:5;18490:32;;;18515:6;18490:32;;;;;;:::i;:::-;;;;;;;;18192:338;;;:::o;15373:944::-;15523:1;15505:20;;:6;:20;;;15497:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15607:1;15586:23;;:9;:23;;;15578:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15725:21;15749:9;:17;15759:6;15749:17;;;;;;;;;;;;;;;;15725:41;;15816:6;15799:13;:23;;15777:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;15935:6;15919:13;:22;;;;:::i;:::-;15899:9;:17;15909:6;15899:17;;;;;;;;;;;;;;;:42;;;;15956:21;15967:9;15956:10;:21::i;:::-;:53;;;;;15982:16;:27;15999:9;15982:27;;;;;;;;;;;;;;;;;;;;;;;;;15981:28;15956:53;15952:305;;;16026:17;16063:11;;16053:6;16047:3;;:12;;;;:::i;:::-;16046:28;;;;:::i;:::-;16026:48;;16123:9;16114:6;:18;;;;:::i;:::-;16089:9;:20;16099:9;16089:20;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;16173:9;16148;:21;16158:10;;;;;;;;;;;16148:21;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;16011:183;15952:305;;;16239:6;16215:9;:20;16225:9;16215:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15952:305;16291:9;16274:35;;16283:6;16274:35;;;16302:6;16274:35;;;;;;:::i;:::-;;;;;;;;15486:831;15373:944;;;:::o;5910:173::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5910:173;:::o;9425:387::-;9485:4;9693:12;9760:7;9748:20;9740:28;;9803:1;9796:4;:8;9789:15;;;9425:387;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:116::-;5275:21;5290:5;5275:21;:::i;:::-;5268:5;5265:32;5255:60;;5311:1;5308;5301:12;5255:60;5205:116;:::o;5327:133::-;5370:5;5408:6;5395:20;5386:29;;5424:30;5448:5;5424:30;:::i;:::-;5327:133;;;;:::o;5466:468::-;5531:6;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:50;5909:7;5900:6;5889:9;5885:22;5867:50;:::i;:::-;5857:60;;5812:115;5466:468;;;;;:::o;5940:329::-;5999:6;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;5940:329;;;;:::o;6275:::-;6334:6;6383:2;6371:9;6362:7;6358:23;6354:32;6351:119;;;6389:79;;:::i;:::-;6351:119;6509:1;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6480:117;6275:329;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:227::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:10;7806:2;7798:6;7794:15;7787:35;7602:227;:::o;7835:366::-;7977:3;7998:67;8062:2;8057:3;7998:67;:::i;:::-;7991:74;;8074:93;8163:3;8074:93;:::i;:::-;8192:2;8187:3;8183:12;8176:19;;7835:366;;;:::o;8207:419::-;8373:4;8411:2;8400:9;8396:18;8388:26;;8460:9;8454:4;8450:20;8446:1;8435:9;8431:17;8424:47;8488:131;8614:4;8488:131;:::i;:::-;8480:139;;8207:419;;;:::o;8632:180::-;8680:77;8677:1;8670:88;8777:4;8774:1;8767:15;8801:4;8798:1;8791:15;8818:194;8858:4;8878:20;8896:1;8878:20;:::i;:::-;8873:25;;8912:20;8930:1;8912:20;:::i;:::-;8907:25;;8956:1;8953;8949:9;8941:17;;8980:1;8974:4;8971:11;8968:37;;;8985:18;;:::i;:::-;8968:37;8818:194;;;;:::o;9018:191::-;9058:3;9077:20;9095:1;9077:20;:::i;:::-;9072:25;;9111:20;9129:1;9111:20;:::i;:::-;9106:25;;9154:1;9151;9147:9;9140:16;;9175:3;9172:1;9169:10;9166:36;;;9182:18;;:::i;:::-;9166:36;9018:191;;;;:::o;9215:182::-;9355:34;9351:1;9343:6;9339:14;9332:58;9215:182;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9403:366;;;:::o;9775:419::-;9941:4;9979:2;9968:9;9964:18;9956:26;;10028:9;10022:4;10018:20;10014:1;10003:9;9999:17;9992:47;10056:131;10182:4;10056:131;:::i;:::-;10048:139;;9775:419;;;:::o;10200:151::-;10340:3;10336:1;10328:6;10324:14;10317:27;10200:151;:::o;10357:365::-;10499:3;10520:66;10584:1;10579:3;10520:66;:::i;:::-;10513:73;;10595:93;10684:3;10595:93;:::i;:::-;10713:2;10708:3;10704:12;10697:19;;10357:365;;;:::o;10728:419::-;10894:4;10932:2;10921:9;10917:18;10909:26;;10981:9;10975:4;10971:20;10967:1;10956:9;10952:17;10945:47;11009:131;11135:4;11009:131;:::i;:::-;11001:139;;10728:419;;;:::o;11153:224::-;11293:34;11289:1;11281:6;11277:14;11270:58;11362:7;11357:2;11349:6;11345:15;11338:32;11153:224;:::o;11383:366::-;11525:3;11546:67;11610:2;11605:3;11546:67;:::i;:::-;11539:74;;11622:93;11711:3;11622:93;:::i;:::-;11740:2;11735:3;11731:12;11724:19;;11383:366;;;:::o;11755:419::-;11921:4;11959:2;11948:9;11944:18;11936:26;;12008:9;12002:4;11998:20;11994:1;11983:9;11979:17;11972:47;12036:131;12162:4;12036:131;:::i;:::-;12028:139;;11755:419;;;:::o;12180:225::-;12320:34;12316:1;12308:6;12304:14;12297:58;12389:8;12384:2;12376:6;12372:15;12365:33;12180:225;:::o;12411:366::-;12553:3;12574:67;12638:2;12633:3;12574:67;:::i;:::-;12567:74;;12650:93;12739:3;12650:93;:::i;:::-;12768:2;12763:3;12759:12;12752:19;;12411:366;;;:::o;12783:419::-;12949:4;12987:2;12976:9;12972:18;12964:26;;13036:9;13030:4;13026:20;13022:1;13011:9;13007:17;13000:47;13064:131;13190:4;13064:131;:::i;:::-;13056:139;;12783:419;;;:::o;13208:223::-;13348:34;13344:1;13336:6;13332:14;13325:58;13417:6;13412:2;13404:6;13400:15;13393:31;13208:223;:::o;13437:366::-;13579:3;13600:67;13664:2;13659:3;13600:67;:::i;:::-;13593:74;;13676:93;13765:3;13676:93;:::i;:::-;13794:2;13789:3;13785:12;13778:19;;13437:366;;;:::o;13809:419::-;13975:4;14013:2;14002:9;13998:18;13990:26;;14062:9;14056:4;14052:20;14048:1;14037:9;14033:17;14026:47;14090:131;14216:4;14090:131;:::i;:::-;14082:139;;13809:419;;;:::o;14234:221::-;14374:34;14370:1;14362:6;14358:14;14351:58;14443:4;14438:2;14430:6;14426:15;14419:29;14234:221;:::o;14461:366::-;14603:3;14624:67;14688:2;14683:3;14624:67;:::i;:::-;14617:74;;14700:93;14789:3;14700:93;:::i;:::-;14818:2;14813:3;14809:12;14802:19;;14461:366;;;:::o;14833:419::-;14999:4;15037:2;15026:9;15022:18;15014:26;;15086:9;15080:4;15076:20;15072:1;15061:9;15057:17;15050:47;15114:131;15240:4;15114:131;:::i;:::-;15106:139;;14833:419;;;:::o;15258:224::-;15398:34;15394:1;15386:6;15382:14;15375:58;15467:7;15462:2;15454:6;15450:15;15443:32;15258:224;:::o;15488:366::-;15630:3;15651:67;15715:2;15710:3;15651:67;:::i;:::-;15644:74;;15727:93;15816:3;15727:93;:::i;:::-;15845:2;15840:3;15836:12;15829:19;;15488:366;;;:::o;15860:419::-;16026:4;16064:2;16053:9;16049:18;16041:26;;16113:9;16107:4;16103:20;16099:1;16088:9;16084:17;16077:47;16141:131;16267:4;16141:131;:::i;:::-;16133:139;;15860:419;;;:::o;16285:222::-;16425:34;16421:1;16413:6;16409:14;16402:58;16494:5;16489:2;16481:6;16477:15;16470:30;16285:222;:::o;16513:366::-;16655:3;16676:67;16740:2;16735:3;16676:67;:::i;:::-;16669:74;;16752:93;16841:3;16752:93;:::i;:::-;16870:2;16865:3;16861:12;16854:19;;16513:366;;;:::o;16885:419::-;17051:4;17089:2;17078:9;17074:18;17066:26;;17138:9;17132:4;17128:20;17124:1;17113:9;17109:17;17102:47;17166:131;17292:4;17166:131;:::i;:::-;17158:139;;16885:419;;;:::o;17310:225::-;17450:34;17446:1;17438:6;17434:14;17427:58;17519:8;17514:2;17506:6;17502:15;17495:33;17310:225;:::o;17541:366::-;17683:3;17704:67;17768:2;17763:3;17704:67;:::i;:::-;17697:74;;17780:93;17869:3;17780:93;:::i;:::-;17898:2;17893:3;17889:12;17882:19;;17541:366;;;:::o;17913:419::-;18079:4;18117:2;18106:9;18102:18;18094:26;;18166:9;18160:4;18156:20;18152:1;18141:9;18137:17;18130:47;18194:131;18320:4;18194:131;:::i;:::-;18186:139;;17913:419;;;:::o;18338:410::-;18378:7;18401:20;18419:1;18401:20;:::i;:::-;18396:25;;18435:20;18453:1;18435:20;:::i;:::-;18430:25;;18490:1;18487;18483:9;18512:30;18530:11;18512:30;:::i;:::-;18501:41;;18691:1;18682:7;18678:15;18675:1;18672:22;18652:1;18645:9;18625:83;18602:139;;18721:18;;:::i;:::-;18602:139;18386:362;18338:410;;;;:::o;18754:180::-;18802:77;18799:1;18792:88;18899:4;18896:1;18889:15;18923:4;18920:1;18913:15;18940:185;18980:1;18997:20;19015:1;18997:20;:::i;:::-;18992:25;;19031:20;19049:1;19031:20;:::i;:::-;19026:25;;19070:1;19060:35;;19075:18;;:::i;:::-;19060:35;19117:1;19114;19110:9;19105:14;;18940:185;;;;:::o

Swarm Source

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