Token MSQUARE eXtreme

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
830,000,000 MSQX

Holders:
2,279 addresses

Transfers:
-

Contract:
0xd3d63fc4800d5ea7c609589b44d3953313570a0b0xd3d63Fc4800d5eA7C609589b44D3953313570A0b

Decimals:
18

Social Profiles:
Not Available, Update ?

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MSQUARE_EXTREME

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at PolygonScan.com on 2022-08-17
*/

/**
 *Submitted for verification at polygonscan.com on 2022-08-17
*/

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        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: abc.sol


pragma solidity ^0.8.4;



contract MSQUARE_EXTREME is ERC20, Ownable {
    uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 830000000 * (10 ** uint256(DECIMALS));
    address public admin = 0xe0A67648f01c0f7D42A4b871dbf10b6b5669CcBA;

    constructor () ERC20("MSQUARE eXtreme", "MSQX") {
        _mint(admin, INITIAL_SUPPLY);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"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":"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"}]

608060405273e0a67648f01c0f7d42a4b871dbf10b6b5669ccba600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600f81526020017f4d5351554152452065587472656d6500000000000000000000000000000000008152506040518060400160405280600481526020017f4d535158000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000eb929190620003d5565b50806004908051906020019062000104929190620003d5565b505050620001276200011b6200018460201b60201c565b6200018c60201b60201c565b6200017e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601260ff16600a620001619190620005c5565b633178cb8062000172919062000702565b6200025260201b60201c565b62000837565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bc90620004bd565b60405180910390fd5b620002d960008383620003cb60201b60201c565b8060026000828254620002ed91906200050d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034491906200050d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ab9190620004df565b60405180910390a3620003c760008383620003d060201b60201c565b5050565b505050565b505050565b828054620003e3906200076d565b90600052602060002090601f01602090048101928262000407576000855562000453565b82601f106200042257805160ff191683800117855562000453565b8280016001018555821562000453579182015b828111156200045257825182559160200191906001019062000435565b5b50905062000462919062000466565b5090565b5b808211156200048157600081600090555060010162000467565b5090565b600062000494601f83620004fc565b9150620004a1826200080e565b602082019050919050565b620004b78162000763565b82525050565b60006020820190508181036000830152620004d88162000485565b9050919050565b6000602082019050620004f66000830184620004ac565b92915050565b600082825260208201905092915050565b60006200051a8262000763565b9150620005278362000763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200055f576200055e620007a3565b5b828201905092915050565b6000808291508390505b6001851115620005bc57808604811115620005945762000593620007a3565b5b6001851615620005a45780820291505b8081029050620005b48562000801565b945062000574565b94509492505050565b6000620005d28262000763565b9150620005df8362000763565b92506200060e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000616565b905092915050565b600082620006285760019050620006fb565b81620006385760009050620006fb565b81600181146200065157600281146200065c5762000692565b6001915050620006fb565b60ff841115620006715762000670620007a3565b5b8360020a9150848211156200068b576200068a620007a3565b5b50620006fb565b5060208310610133831016604e8410600b8410161715620006cc5782820a905083811115620006c657620006c5620007a3565b5b620006fb565b620006db84848460016200056a565b92509050818404811115620006f557620006f4620007a3565b5b81810290505b9392505050565b60006200070f8262000763565b91506200071c8362000763565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007585762000757620007a3565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200078657607f821691505b602082108114156200079d576200079c620007d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6118bc80620008476000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d7146102ac578063a9059cbb146102dc578063dd62ed3e1461030c578063f2fde38b1461033c578063f851a440146103585761010b565b806370a0823114610236578063715018a6146102665780638da5cb5b1461027057806395d89b411461028e5761010b565b80632e0f2625116100de5780632e0f2625146101ac5780632ff2e9dc146101ca578063313ce567146101e857806339509351146102065761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610376565b60405161012591906110ed565b60405180910390f35b61014860048036038101906101439190610ec7565b610408565b60405161015591906110d2565b60405180910390f35b61016661042b565b604051610173919061122f565b60405180910390f35b61019660048036038101906101919190610e74565b610435565b6040516101a391906110d2565b60405180910390f35b6101b4610464565b6040516101c1919061124a565b60405180910390f35b6101d2610469565b6040516101df919061122f565b60405180910390f35b6101f061048c565b6040516101fd919061124a565b60405180910390f35b610220600480360381019061021b9190610ec7565b610495565b60405161022d91906110d2565b60405180910390f35b610250600480360381019061024b9190610e07565b6104cc565b60405161025d919061122f565b60405180910390f35b61026e610514565b005b610278610528565b60405161028591906110b7565b60405180910390f35b610296610552565b6040516102a391906110ed565b60405180910390f35b6102c660048036038101906102c19190610ec7565b6105e4565b6040516102d391906110d2565b60405180910390f35b6102f660048036038101906102f19190610ec7565b61065b565b60405161030391906110d2565b60405180910390f35b61032660048036038101906103219190610e34565b61067e565b604051610333919061122f565b60405180910390f35b61035660048036038101906103519190610e07565b610705565b005b610360610789565b60405161036d91906110b7565b60405180910390f35b6060600380546103859061152a565b80601f01602080910402602001604051908101604052809291908181526020018280546103b19061152a565b80156103fe5780601f106103d3576101008083540402835291602001916103fe565b820191906000526020600020905b8154815290600101906020018083116103e157829003601f168201915b5050505050905090565b6000806104136107af565b90506104208185856107b7565b600191505092915050565b6000600254905090565b6000806104406107af565b905061044d858285610982565b610458858585610a0e565b60019150509392505050565b601281565b601260ff16600a61047a919061132a565b633178cb806104899190611448565b81565b60006012905090565b6000806104a06107af565b90506104c18185856104b2858961067e565b6104bc9190611281565b6107b7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051c610c8f565b6105266000610d0d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105619061152a565b80601f016020809104026020016040519081016040528092919081815260200182805461058d9061152a565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b6000806105ef6107af565b905060006105fd828661067e565b905083811015610642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106399061120f565b60405180910390fd5b61064f82868684036107b7565b60019250505092915050565b6000806106666107af565b9050610673818585610a0e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61070d610c8f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561077d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107749061112f565b60405180910390fd5b61078681610d0d565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e906111ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e9061114f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610975919061122f565b60405180910390a3505050565b600061098e848461067e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a0857818110156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061116f565b60405180910390fd5b610a0784848484036107b7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a75906111cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae59061110f565b60405180910390fd5b610af9838383610dd3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b769061118f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c129190611281565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c76919061122f565b60405180910390a3610c89848484610dd8565b50505050565b610c976107af565b73ffffffffffffffffffffffffffffffffffffffff16610cb5610528565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906111af565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610dec81611858565b92915050565b600081359050610e018161186f565b92915050565b600060208284031215610e1d57610e1c6115ba565b5b6000610e2b84828501610ddd565b91505092915050565b60008060408385031215610e4b57610e4a6115ba565b5b6000610e5985828601610ddd565b9250506020610e6a85828601610ddd565b9150509250929050565b600080600060608486031215610e8d57610e8c6115ba565b5b6000610e9b86828701610ddd565b9350506020610eac86828701610ddd565b9250506040610ebd86828701610df2565b9150509250925092565b60008060408385031215610ede57610edd6115ba565b5b6000610eec85828601610ddd565b9250506020610efd85828601610df2565b9150509250929050565b610f10816114a2565b82525050565b610f1f816114b4565b82525050565b6000610f3082611265565b610f3a8185611270565b9350610f4a8185602086016114f7565b610f53816115bf565b840191505092915050565b6000610f6b602383611270565b9150610f76826115dd565b604082019050919050565b6000610f8e602683611270565b9150610f998261162c565b604082019050919050565b6000610fb1602283611270565b9150610fbc8261167b565b604082019050919050565b6000610fd4601d83611270565b9150610fdf826116ca565b602082019050919050565b6000610ff7602683611270565b9150611002826116f3565b604082019050919050565b600061101a602083611270565b915061102582611742565b602082019050919050565b600061103d602583611270565b91506110488261176b565b604082019050919050565b6000611060602483611270565b915061106b826117ba565b604082019050919050565b6000611083602583611270565b915061108e82611809565b604082019050919050565b6110a2816114e0565b82525050565b6110b1816114ea565b82525050565b60006020820190506110cc6000830184610f07565b92915050565b60006020820190506110e76000830184610f16565b92915050565b600060208201905081810360008301526111078184610f25565b905092915050565b6000602082019050818103600083015261112881610f5e565b9050919050565b6000602082019050818103600083015261114881610f81565b9050919050565b6000602082019050818103600083015261116881610fa4565b9050919050565b6000602082019050818103600083015261118881610fc7565b9050919050565b600060208201905081810360008301526111a881610fea565b9050919050565b600060208201905081810360008301526111c88161100d565b9050919050565b600060208201905081810360008301526111e881611030565b9050919050565b6000602082019050818103600083015261120881611053565b9050919050565b6000602082019050818103600083015261122881611076565b9050919050565b60006020820190506112446000830184611099565b92915050565b600060208201905061125f60008301846110a8565b92915050565b600081519050919050565b600082825260208201905092915050565b600061128c826114e0565b9150611297836114e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112cc576112cb61155c565b5b828201905092915050565b6000808291508390505b6001851115611321578086048111156112fd576112fc61155c565b5b600185161561130c5780820291505b808102905061131a856115d0565b94506112e1565b94509492505050565b6000611335826114e0565b9150611340836114e0565b925061136d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611375565b905092915050565b6000826113855760019050611441565b816113935760009050611441565b81600181146113a957600281146113b3576113e2565b6001915050611441565b60ff8411156113c5576113c461155c565b5b8360020a9150848211156113dc576113db61155c565b5b50611441565b5060208310610133831016604e8410600b84101617156114175782820a9050838111156114125761141161155c565b5b611441565b61142484848460016112d7565b9250905081840481111561143b5761143a61155c565b5b81810290505b9392505050565b6000611453826114e0565b915061145e836114e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156114975761149661155c565b5b828202905092915050565b60006114ad826114c0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156115155780820151818401526020810190506114fa565b83811115611524576000848401525b50505050565b6000600282049050600182168061154257607f821691505b602082108114156115565761155561158b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611861816114a2565b811461186c57600080fd5b50565b611878816114e0565b811461188357600080fd5b5056fea264697066735822122092ccf72313f328a984bb868deb576f23f507a67692bec8b4ca0235eff177d12e64736f6c63430008070033

Deployed ByteCode Sourcemap

20187:349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9348:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11699:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10468:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12480:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20237:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20279:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13184:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10639:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2771:103;;;:::i;:::-;;2123:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9567:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13925:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10972:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11228:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3029:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20364:65;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9348:100;9402:13;9435:5;9428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9348:100;:::o;11699:201::-;11782:4;11799:13;11815:12;:10;:12::i;:::-;11799:28;;11838:32;11847:5;11854:7;11863:6;11838:8;:32::i;:::-;11888:4;11881:11;;;11699:201;;;;:::o;10468:108::-;10529:7;10556:12;;10549:19;;10468:108;:::o;12480:295::-;12611:4;12628:15;12646:12;:10;:12::i;:::-;12628:30;;12669:38;12685:4;12691:7;12700:6;12669:15;:38::i;:::-;12718:27;12728:4;12734:2;12738:6;12718:9;:27::i;:::-;12763:4;12756:11;;;12480:295;;;;;:::o;20237:35::-;20270:2;20237:35;:::o;20279:78::-;20270:2;20339:17;;20333:2;:23;;;;:::i;:::-;20320:9;:37;;;;:::i;:::-;20279:78;:::o;10310:93::-;10368:5;10393:2;10386:9;;10310:93;:::o;13184:238::-;13272:4;13289:13;13305:12;:10;:12::i;:::-;13289:28;;13328:64;13337:5;13344:7;13381:10;13353:25;13363:5;13370:7;13353:9;:25::i;:::-;:38;;;;:::i;:::-;13328:8;:64::i;:::-;13410:4;13403:11;;;13184:238;;;;:::o;10639:127::-;10713:7;10740:9;:18;10750:7;10740:18;;;;;;;;;;;;;;;;10733:25;;10639:127;;;:::o;2771:103::-;2009:13;:11;:13::i;:::-;2836:30:::1;2863:1;2836:18;:30::i;:::-;2771:103::o:0;2123:87::-;2169:7;2196:6;;;;;;;;;;;2189:13;;2123:87;:::o;9567:104::-;9623:13;9656:7;9649:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:104;:::o;13925:436::-;14018:4;14035:13;14051:12;:10;:12::i;:::-;14035:28;;14074:24;14101:25;14111:5;14118:7;14101:9;:25::i;:::-;14074:52;;14165:15;14145:16;:35;;14137:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14258:60;14267:5;14274:7;14302:15;14283:16;:34;14258:8;:60::i;:::-;14349:4;14342:11;;;;13925:436;;;;:::o;10972:193::-;11051:4;11068:13;11084:12;:10;:12::i;:::-;11068:28;;11107;11117:5;11124:2;11128:6;11107:9;:28::i;:::-;11153:4;11146:11;;;10972:193;;;;:::o;11228:151::-;11317:7;11344:11;:18;11356:5;11344:18;;;;;;;;;;;;;;;:27;11363:7;11344:27;;;;;;;;;;;;;;;;11337:34;;11228:151;;;;:::o;3029:201::-;2009:13;:11;:13::i;:::-;3138:1:::1;3118:22;;:8;:22;;;;3110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3194:28;3213:8;3194:18;:28::i;:::-;3029:201:::0;:::o;20364:65::-;;;;;;;;;;;;;:::o;674:98::-;727:7;754:10;747:17;;674:98;:::o;17550:380::-;17703:1;17686:19;;:5;:19;;;;17678:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17784:1;17765:21;;:7;:21;;;;17757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17868:6;17838:11;:18;17850:5;17838:18;;;;;;;;;;;;;;;:27;17857:7;17838:27;;;;;;;;;;;;;;;:36;;;;17906:7;17890:32;;17899:5;17890:32;;;17915:6;17890:32;;;;;;:::i;:::-;;;;;;;;17550:380;;;:::o;18221:453::-;18356:24;18383:25;18393:5;18400:7;18383:9;:25::i;:::-;18356:52;;18443:17;18423:16;:37;18419:248;;18505:6;18485:16;:26;;18477:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18589:51;18598:5;18605:7;18633:6;18614:16;:25;18589:8;:51::i;:::-;18419:248;18345:329;18221:453;;;:::o;14831:671::-;14978:1;14962:18;;:4;:18;;;;14954:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15055:1;15041:16;;:2;:16;;;;15033:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15110:38;15131:4;15137:2;15141:6;15110:20;:38::i;:::-;15161:19;15183:9;:15;15193:4;15183:15;;;;;;;;;;;;;;;;15161:37;;15232:6;15217:11;:21;;15209:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15349:6;15335:11;:20;15317:9;:15;15327:4;15317:15;;;;;;;;;;;;;;;:38;;;;15394:6;15377:9;:13;15387:2;15377:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15433:2;15418:26;;15427:4;15418:26;;;15437:6;15418:26;;;;;;:::i;:::-;;;;;;;;15457:37;15477:4;15483:2;15487:6;15457:19;:37::i;:::-;14943:559;14831:671;;;:::o;2288:132::-;2363:12;:10;:12::i;:::-;2352:23;;:7;:5;:7::i;:::-;:23;;;2344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2288:132::o;3390:191::-;3464:16;3483:6;;;;;;;;;;;3464:25;;3509:8;3500:6;;:17;;;;;;;;;;;;;;;;;;3564:8;3533:40;;3554:8;3533:40;;;;;;;;;;;;3453:128;3390:191;:::o;19274:125::-;;;;:::o;20003:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:118::-;6261:24;6279:5;6261:24;:::i;:::-;6256:3;6249:37;6174:118;;:::o;6298:112::-;6381:22;6397:5;6381:22;:::i;:::-;6376:3;6369:35;6298:112;;:::o;6416:222::-;6509:4;6547:2;6536:9;6532:18;6524:26;;6560:71;6628:1;6617:9;6613:17;6604:6;6560:71;:::i;:::-;6416:222;;;;:::o;6644:210::-;6731:4;6769:2;6758:9;6754:18;6746:26;;6782:65;6844:1;6833:9;6829:17;6820:6;6782:65;:::i;:::-;6644:210;;;;:::o;6860:313::-;6973:4;7011:2;7000:9;6996:18;6988:26;;7060:9;7054:4;7050:20;7046:1;7035:9;7031:17;7024:47;7088:78;7161:4;7152:6;7088:78;:::i;:::-;7080:86;;6860:313;;;;:::o;7179:419::-;7345:4;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:131;7586:4;7460:131;:::i;:::-;7452:139;;7179:419;;;:::o;7604:::-;7770:4;7808:2;7797:9;7793:18;7785:26;;7857:9;7851:4;7847:20;7843:1;7832:9;7828:17;7821:47;7885:131;8011:4;7885:131;:::i;:::-;7877:139;;7604:419;;;:::o;8029:::-;8195:4;8233:2;8222:9;8218:18;8210:26;;8282:9;8276:4;8272:20;8268:1;8257:9;8253:17;8246:47;8310:131;8436:4;8310:131;:::i;:::-;8302:139;;8029:419;;;:::o;8454:::-;8620:4;8658:2;8647:9;8643:18;8635:26;;8707:9;8701:4;8697:20;8693:1;8682:9;8678:17;8671:47;8735:131;8861:4;8735:131;:::i;:::-;8727:139;;8454:419;;;:::o;8879:::-;9045:4;9083:2;9072:9;9068:18;9060:26;;9132:9;9126:4;9122:20;9118:1;9107:9;9103:17;9096:47;9160:131;9286:4;9160:131;:::i;:::-;9152:139;;8879:419;;;:::o;9304:::-;9470:4;9508:2;9497:9;9493:18;9485:26;;9557:9;9551:4;9547:20;9543:1;9532:9;9528:17;9521:47;9585:131;9711:4;9585:131;:::i;:::-;9577:139;;9304:419;;;:::o;9729:::-;9895:4;9933:2;9922:9;9918:18;9910:26;;9982:9;9976:4;9972:20;9968:1;9957:9;9953:17;9946:47;10010:131;10136:4;10010:131;:::i;:::-;10002:139;;9729:419;;;:::o;10154:::-;10320:4;10358:2;10347:9;10343:18;10335:26;;10407:9;10401:4;10397:20;10393:1;10382:9;10378:17;10371:47;10435:131;10561:4;10435:131;:::i;:::-;10427:139;;10154:419;;;:::o;10579:::-;10745:4;10783:2;10772:9;10768:18;10760:26;;10832:9;10826:4;10822:20;10818:1;10807:9;10803:17;10796:47;10860:131;10986:4;10860:131;:::i;:::-;10852:139;;10579:419;;;:::o;11004:222::-;11097:4;11135:2;11124:9;11120:18;11112:26;;11148:71;11216:1;11205:9;11201:17;11192:6;11148:71;:::i;:::-;11004:222;;;;:::o;11232:214::-;11321:4;11359:2;11348:9;11344:18;11336:26;;11372:67;11436:1;11425:9;11421:17;11412:6;11372:67;:::i;:::-;11232:214;;;;:::o;11533:99::-;11585:6;11619:5;11613:12;11603:22;;11533:99;;;:::o;11638:169::-;11722:11;11756:6;11751:3;11744:19;11796:4;11791:3;11787:14;11772:29;;11638:169;;;;:::o;11813:305::-;11853:3;11872:20;11890:1;11872:20;:::i;:::-;11867:25;;11906:20;11924:1;11906:20;:::i;:::-;11901:25;;12060:1;11992:66;11988:74;11985:1;11982:81;11979:107;;;12066:18;;:::i;:::-;11979:107;12110:1;12107;12103:9;12096:16;;11813:305;;;;:::o;12124:848::-;12185:5;12192:4;12216:6;12207:15;;12240:5;12231:14;;12254:712;12275:1;12265:8;12262:15;12254:712;;;12370:4;12365:3;12361:14;12355:4;12352:24;12349:50;;;12379:18;;:::i;:::-;12349:50;12429:1;12419:8;12415:16;12412:451;;;12844:4;12837:5;12833:16;12824:25;;12412:451;12894:4;12888;12884:15;12876:23;;12924:32;12947:8;12924:32;:::i;:::-;12912:44;;12254:712;;;12124:848;;;;;;;:::o;12978:285::-;13038:5;13062:23;13080:4;13062:23;:::i;:::-;13054:31;;13106:27;13124:8;13106:27;:::i;:::-;13094:39;;13152:104;13189:66;13179:8;13173:4;13152:104;:::i;:::-;13143:113;;12978:285;;;;:::o;13269:1073::-;13323:5;13514:8;13504:40;;13535:1;13526:10;;13537:5;;13504:40;13563:4;13553:36;;13580:1;13571:10;;13582:5;;13553:36;13649:4;13697:1;13692:27;;;;13733:1;13728:191;;;;13642:277;;13692:27;13710:1;13701:10;;13712:5;;;13728:191;13773:3;13763:8;13760:17;13757:43;;;13780:18;;:::i;:::-;13757:43;13829:8;13826:1;13822:16;13813:25;;13864:3;13857:5;13854:14;13851:40;;;13871:18;;:::i;:::-;13851:40;13904:5;;;13642:277;;14028:2;14018:8;14015:16;14009:3;14003:4;14000:13;13996:36;13978:2;13968:8;13965:16;13960:2;13954:4;13951:12;13947:35;13931:111;13928:246;;;14084:8;14078:4;14074:19;14065:28;;14119:3;14112:5;14109:14;14106:40;;;14126:18;;:::i;:::-;14106:40;14159:5;;13928:246;14199:42;14237:3;14227:8;14221:4;14218:1;14199:42;:::i;:::-;14184:57;;;;14273:4;14268:3;14264:14;14257:5;14254:25;14251:51;;;14282:18;;:::i;:::-;14251:51;14331:4;14324:5;14320:16;14311:25;;13269:1073;;;;;;:::o;14348:348::-;14388:7;14411:20;14429:1;14411:20;:::i;:::-;14406:25;;14445:20;14463:1;14445:20;:::i;:::-;14440:25;;14633:1;14565:66;14561:74;14558:1;14555:81;14550:1;14543:9;14536:17;14532:105;14529:131;;;14640:18;;:::i;:::-;14529:131;14688:1;14685;14681:9;14670:20;;14348:348;;;;:::o;14702:96::-;14739:7;14768:24;14786:5;14768:24;:::i;:::-;14757:35;;14702:96;;;:::o;14804:90::-;14838:7;14881:5;14874:13;14867:21;14856:32;;14804:90;;;:::o;14900:126::-;14937:7;14977:42;14970:5;14966:54;14955:65;;14900:126;;;:::o;15032:77::-;15069:7;15098:5;15087:16;;15032:77;;;:::o;15115:86::-;15150:7;15190:4;15183:5;15179:16;15168:27;;15115:86;;;:::o;15207:307::-;15275:1;15285:113;15299:6;15296:1;15293:13;15285:113;;;15384:1;15379:3;15375:11;15369:18;15365:1;15360:3;15356:11;15349:39;15321:2;15318:1;15314:10;15309:15;;15285:113;;;15416:6;15413:1;15410:13;15407:101;;;15496:1;15487:6;15482:3;15478:16;15471:27;15407:101;15256:258;15207:307;;;:::o;15520:320::-;15564:6;15601:1;15595:4;15591:12;15581:22;;15648:1;15642:4;15638:12;15669:18;15659:81;;15725:4;15717:6;15713:17;15703:27;;15659:81;15787:2;15779:6;15776:14;15756:18;15753:38;15750:84;;;15806:18;;:::i;:::-;15750:84;15571:269;15520:320;;;:::o;15846:180::-;15894:77;15891:1;15884:88;15991:4;15988:1;15981:15;16015:4;16012:1;16005:15;16032:180;16080:77;16077:1;16070:88;16177:4;16174:1;16167:15;16201:4;16198:1;16191:15;16341:117;16450:1;16447;16440:12;16464:102;16505:6;16556:2;16552:7;16547:2;16540:5;16536:14;16532:28;16522:38;;16464:102;;;:::o;16572:::-;16614:8;16661:5;16658:1;16654:13;16633:34;;16572:102;;;:::o;16680:222::-;16820:34;16816:1;16808:6;16804:14;16797:58;16889:5;16884:2;16876:6;16872:15;16865:30;16680:222;:::o;16908:225::-;17048:34;17044:1;17036:6;17032:14;17025:58;17117:8;17112:2;17104:6;17100:15;17093:33;16908:225;:::o;17139:221::-;17279:34;17275:1;17267:6;17263:14;17256:58;17348:4;17343:2;17335:6;17331:15;17324:29;17139:221;:::o;17366:179::-;17506:31;17502:1;17494:6;17490:14;17483:55;17366:179;:::o;17551:225::-;17691:34;17687:1;17679:6;17675:14;17668:58;17760:8;17755:2;17747:6;17743:15;17736:33;17551:225;:::o;17782:182::-;17922:34;17918:1;17910:6;17906:14;17899:58;17782:182;:::o;17970:224::-;18110:34;18106:1;18098:6;18094:14;18087:58;18179:7;18174:2;18166:6;18162:15;18155:32;17970:224;:::o;18200:223::-;18340:34;18336:1;18328:6;18324:14;18317:58;18409:6;18404:2;18396:6;18392:15;18385:31;18200:223;:::o;18429:224::-;18569:34;18565:1;18557:6;18553:14;18546:58;18638:7;18633:2;18625:6;18621:15;18614:32;18429:224;:::o;18659:122::-;18732:24;18750:5;18732:24;:::i;:::-;18725:5;18722:35;18712:63;;18771:1;18768;18761:12;18712:63;18659:122;:::o;18787:::-;18860:24;18878:5;18860:24;:::i;:::-;18853:5;18850:35;18840:63;;18899:1;18896;18889:12;18840:63;18787:122;:::o

Swarm Source

ipfs://92ccf72313f328a984bb868deb576f23f507a67692bec8b4ca0235eff177d12e
Loading