ETH Price: $2,693.17 (-2.68%)

Token

STYLE Protocol (STYLE)
 

Overview

Max Total Supply

920,000,000 STYLE

Holders

256 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
206.08 STYLE

Value
$0.00
0xffff6f4a5b38fd45967ecfb09b4565a668b250d0
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:
styleToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity Multiple files format)Audit Report

File 9 of 9: Source.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

// openzeppelin ERC777 Token
import "./ERC777.sol";

contract styleToken is ERC777 {
    
    constructor(
        uint256 initialSupply,//920000000
        address[] memory defaultOperators
    )
        ERC777("STYLE Protocol", "STYLE", defaultOperators)
    {
        _mint(msg.sender, initialSupply, "", "");
    }
}

File 1 of 9: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 2 of 9: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 9: ERC777.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC777/ERC777.sol)

pragma solidity ^0.8.0;

import "./IERC777.sol";
import "./IERC777Recipient.sol";
import "./IERC777Sender.sol";
import "./IERC20.sol";
import "./Address.sol";
import "./Context.sol";
import "./IERC1820Registry.sol";

/**
 * @dev Implementation of the {IERC777} 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}.
 *
 * Support for ERC20 is included in this contract, as specified by the EIP: both
 * the ERC777 and ERC20 interfaces can be safely used when interacting with it.
 * Both {IERC777-Sent} and {IERC20-Transfer} events are emitted on token
 * movements.
 *
 * Additionally, the {IERC777-granularity} value is hard-coded to `1`, meaning that there
 * are no special restrictions in the amount of tokens that created, moved, or
 * destroyed. This makes integration with ERC20 applications seamless.
 */
contract ERC777 is Context, IERC777, IERC20 {
    using Address for address;

    IERC1820Registry internal constant _ERC1820_REGISTRY = IERC1820Registry(0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24);

    mapping(address => uint256) private _balances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    bytes32 private constant _TOKENS_SENDER_INTERFACE_HASH = keccak256("ERC777TokensSender");
    bytes32 private constant _TOKENS_RECIPIENT_INTERFACE_HASH = keccak256("ERC777TokensRecipient");

    // This isn't ever read from - it's only used to respond to the defaultOperators query.
    address[] private _defaultOperatorsArray;

    // Immutable, but accounts may revoke them (tracked in __revokedDefaultOperators).
    mapping(address => bool) private _defaultOperators;

    // For each account, a mapping of its operators and revoked default operators.
    mapping(address => mapping(address => bool)) private _operators;
    mapping(address => mapping(address => bool)) private _revokedDefaultOperators;

    // ERC20-allowances
    mapping(address => mapping(address => uint256)) private _allowances;

    /**
     * @dev `defaultOperators` may be an empty array.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        address[] memory defaultOperators_
    ) {
        _name = name_;
        _symbol = symbol_;

        _defaultOperatorsArray = defaultOperators_;
        for (uint256 i = 0; i < defaultOperators_.length; i++) {
            _defaultOperators[defaultOperators_[i]] = true;
        }

        // register interfaces
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC777Token"), address(this));
        _ERC1820_REGISTRY.setInterfaceImplementer(address(this), keccak256("ERC20Token"), address(this));
    }

    /**
     * @dev See {IERC777-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC777-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {ERC20-decimals}.
     *
     * Always returns 18, as per the
     * [ERC777 EIP](https://eips.ethereum.org/EIPS/eip-777#backward-compatibility).
     */
    function decimals() public pure virtual returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC777-granularity}.
     *
     * This implementation always returns `1`.
     */
    function granularity() public view virtual override returns (uint256) {
        return 1;
    }

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

    /**
     * @dev Returns the amount of tokens owned by an account (`tokenHolder`).
     */
    function balanceOf(address tokenHolder) public view virtual override(IERC20, IERC777) returns (uint256) {
        return _balances[tokenHolder];
    }

    /**
     * @dev See {IERC777-send}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function send(
        address recipient,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        _send(_msgSender(), recipient, amount, data, "", true);
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Unlike `send`, `recipient` is _not_ required to implement the {IERC777Recipient}
     * interface if it is a contract.
     *
     * Also emits a {Sent} event.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _send(_msgSender(), recipient, amount, "", "", false);
        return true;
    }

    /**
     * @dev See {IERC777-burn}.
     *
     * Also emits a {IERC20-Transfer} event for ERC20 compatibility.
     */
    function burn(uint256 amount, bytes memory data) public virtual override {
        _burn(_msgSender(), amount, data, "");
    }

    /**
     * @dev See {IERC777-isOperatorFor}.
     */
    function isOperatorFor(address operator, address tokenHolder) public view virtual override returns (bool) {
        return
            operator == tokenHolder ||
            (_defaultOperators[operator] && !_revokedDefaultOperators[tokenHolder][operator]) ||
            _operators[tokenHolder][operator];
    }

    /**
     * @dev See {IERC777-authorizeOperator}.
     */
    function authorizeOperator(address operator) public virtual override {
        require(_msgSender() != operator, "ERC777: authorizing self as operator");

        if (_defaultOperators[operator]) {
            delete _revokedDefaultOperators[_msgSender()][operator];
        } else {
            _operators[_msgSender()][operator] = true;
        }

        emit AuthorizedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-revokeOperator}.
     */
    function revokeOperator(address operator) public virtual override {
        require(operator != _msgSender(), "ERC777: revoking self as operator");

        if (_defaultOperators[operator]) {
            _revokedDefaultOperators[_msgSender()][operator] = true;
        } else {
            delete _operators[_msgSender()][operator];
        }

        emit RevokedOperator(operator, _msgSender());
    }

    /**
     * @dev See {IERC777-defaultOperators}.
     */
    function defaultOperators() public view virtual override returns (address[] memory) {
        return _defaultOperatorsArray;
    }

    /**
     * @dev See {IERC777-operatorSend}.
     *
     * Emits {Sent} and {IERC20-Transfer} events.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), sender), "ERC777: caller is not an operator for holder");
        _send(sender, recipient, amount, data, operatorData, true);
    }

    /**
     * @dev See {IERC777-operatorBurn}.
     *
     * Emits {Burned} and {IERC20-Transfer} events.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) public virtual override {
        require(isOperatorFor(_msgSender(), account), "ERC777: caller is not an operator for holder");
        _burn(account, amount, data, operatorData);
    }

    /**
     * @dev See {IERC20-allowance}.
     *
     * Note that operator and allowance concepts are orthogonal: operators may
     * not have allowance, and accounts with allowance may not be operators
     * themselves.
     */
    function allowance(address holder, address spender) public view virtual override returns (uint256) {
        return _allowances[holder][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function approve(address spender, uint256 value) public virtual override returns (bool) {
        address holder = _msgSender();
        _approve(holder, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Note that operator and allowance concepts are orthogonal: operators cannot
     * call `transferFrom` (unless they have allowance), and accounts with
     * allowance cannot call `operatorSend` (unless they are operators).
     *
     * Emits {Sent}, {IERC20-Transfer} and {IERC20-Approval} events.
     */
    function transferFrom(
        address holder,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(holder, spender, amount);
        _send(holder, recipient, amount, "", "", false);
        return true;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with the caller address as the `operator` and with
     * `userData` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) internal virtual {
        _mint(account, amount, userData, operatorData, true);
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * If `requireReceptionAck` is set to true, and if a send hook is
     * registered for `account`, the corresponding function will be called with
     * `operator`, `data` and `operatorData`.
     *
     * See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits {Minted} and {IERC20-Transfer} events.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - if `account` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function _mint(
        address account,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(account != address(0), "ERC777: mint to the zero address");

        address operator = _msgSender();

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

        // Update state variables
        _totalSupply += amount;
        _balances[account] += amount;

        _callTokensReceived(operator, address(0), account, amount, userData, operatorData, requireReceptionAck);

        emit Minted(operator, account, amount, userData, operatorData);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Send tokens
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _send(
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) internal virtual {
        require(from != address(0), "ERC777: transfer from the zero address");
        require(to != address(0), "ERC777: transfer to the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, to, amount, userData, operatorData);

        _move(operator, from, to, amount, userData, operatorData);

        _callTokensReceived(operator, from, to, amount, userData, operatorData, requireReceptionAck);
    }

    /**
     * @dev Burn tokens
     * @param from address token holder address
     * @param amount uint256 amount of tokens to burn
     * @param data bytes extra information provided by the token holder
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _burn(
        address from,
        uint256 amount,
        bytes memory data,
        bytes memory operatorData
    ) internal virtual {
        require(from != address(0), "ERC777: burn from the zero address");

        address operator = _msgSender();

        _callTokensToSend(operator, from, address(0), amount, data, operatorData);

        _beforeTokenTransfer(operator, from, address(0), amount);

        // Update state variables
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC777: burn amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _totalSupply -= amount;

        emit Burned(operator, from, amount, data, operatorData);
        emit Transfer(from, address(0), amount);
    }

    function _move(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        _beforeTokenTransfer(operator, from, to, amount);

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

        emit Sent(operator, from, to, amount, userData, operatorData);
        emit Transfer(from, to, amount);
    }

    /**
     * @dev See {ERC20-_approve}.
     *
     * Note that accounts cannot have allowance issued by their operators.
     */
    function _approve(
        address holder,
        address spender,
        uint256 value
    ) internal virtual {
        require(holder != address(0), "ERC777: approve from the zero address");
        require(spender != address(0), "ERC777: approve to the zero address");

        _allowances[holder][spender] = value;
        emit Approval(holder, spender, value);
    }

    /**
     * @dev Call from.tokensToSend() if the interface is registered
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     */
    function _callTokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(from, _TOKENS_SENDER_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Sender(implementer).tokensToSend(operator, from, to, amount, userData, operatorData);
        }
    }

    /**
     * @dev Call to.tokensReceived() if the interface is registered. Reverts if the recipient is a contract but
     * tokensReceived() was not registered for the recipient
     * @param operator address operator requesting the transfer
     * @param from address token holder address
     * @param to address recipient address
     * @param amount uint256 amount of tokens to transfer
     * @param userData bytes extra information provided by the token holder (if any)
     * @param operatorData bytes extra information provided by the operator (if any)
     * @param requireReceptionAck if true, contract recipients are required to implement ERC777TokensRecipient
     */
    function _callTokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes memory userData,
        bytes memory operatorData,
        bool requireReceptionAck
    ) private {
        address implementer = _ERC1820_REGISTRY.getInterfaceImplementer(to, _TOKENS_RECIPIENT_INTERFACE_HASH);
        if (implementer != address(0)) {
            IERC777Recipient(implementer).tokensReceived(operator, from, to, amount, userData, operatorData);
        } else if (requireReceptionAck) {
            require(!to.isContract(), "ERC777: token recipient contract has no implementer for ERC777TokensRecipient");
        }
    }

    /**
     * @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, "ERC777: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes
     * calls to {send}, {transfer}, {operatorSend}, 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 operator,
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 9: IERC1820Registry.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/introspection/IERC1820Registry.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the global ERC1820 Registry, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1820[EIP]. Accounts may register
 * implementers for interfaces in this registry, as well as query support.
 *
 * Implementers may be shared by multiple accounts, and can also implement more
 * than a single interface for each account. Contracts can implement interfaces
 * for themselves, but externally-owned accounts (EOA) must delegate this to a
 * contract.
 *
 * {IERC165} interfaces can also be queried via the registry.
 *
 * For an in-depth explanation and source code analysis, see the EIP text.
 */
interface IERC1820Registry {
    event InterfaceImplementerSet(address indexed account, bytes32 indexed interfaceHash, address indexed implementer);

    event ManagerChanged(address indexed account, address indexed newManager);

    /**
     * @dev Sets `newManager` as the manager for `account`. A manager of an
     * account is able to set interface implementers for it.
     *
     * By default, each account is its own manager. Passing a value of `0x0` in
     * `newManager` will reset the manager to this initial state.
     *
     * Emits a {ManagerChanged} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     */
    function setManager(address account, address newManager) external;

    /**
     * @dev Returns the manager for `account`.
     *
     * See {setManager}.
     */
    function getManager(address account) external view returns (address);

    /**
     * @dev Sets the `implementer` contract as ``account``'s implementer for
     * `interfaceHash`.
     *
     * `account` being the zero address is an alias for the caller's address.
     * The zero address can also be used in `implementer` to remove an old one.
     *
     * See {interfaceHash} to learn how these are created.
     *
     * Emits an {InterfaceImplementerSet} event.
     *
     * Requirements:
     *
     * - the caller must be the current manager for `account`.
     * - `interfaceHash` must not be an {IERC165} interface id (i.e. it must not
     * end in 28 zeroes).
     * - `implementer` must implement {IERC1820Implementer} and return true when
     * queried for support, unless `implementer` is the caller. See
     * {IERC1820Implementer-canImplementInterfaceForAddress}.
     */
    function setInterfaceImplementer(
        address account,
        bytes32 _interfaceHash,
        address implementer
    ) external;

    /**
     * @dev Returns the implementer of `interfaceHash` for `account`. If no such
     * implementer is registered, returns the zero address.
     *
     * If `interfaceHash` is an {IERC165} interface id (i.e. it ends with 28
     * zeroes), `account` will be queried for support of it.
     *
     * `account` being the zero address is an alias for the caller's address.
     */
    function getInterfaceImplementer(address account, bytes32 _interfaceHash) external view returns (address);

    /**
     * @dev Returns the interface hash for an `interfaceName`, as defined in the
     * corresponding
     * https://eips.ethereum.org/EIPS/eip-1820#interface-name[section of the EIP].
     */
    function interfaceHash(string calldata interfaceName) external pure returns (bytes32);

    /**
     * @notice Updates the cache with whether the contract implements an ERC165 interface or not.
     * @param account Address of the contract for which to update the cache.
     * @param interfaceId ERC165 interface for which to update the cache.
     */
    function updateERC165Cache(address account, bytes4 interfaceId) external;

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not.
     * If the result is not cached a direct lookup on the contract address is performed.
     * If the result is not cached or the cached value is out-of-date, the cache MUST be updated manually by calling
     * {updateERC165Cache} with the contract address.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165Interface(address account, bytes4 interfaceId) external view returns (bool);

    /**
     * @notice Checks whether a contract implements an ERC165 interface or not without using nor updating the cache.
     * @param account Address of the contract to check.
     * @param interfaceId ERC165 interface to check.
     * @return True if `account` implements `interfaceId`, false otherwise.
     */
    function implementsERC165InterfaceNoCache(address account, bytes4 interfaceId) external view returns (bool);
}

File 5 of 9: IERC20.sol
// SPDX-License-Identifier: MIT
// 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 6 of 9: IERC777.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC777/IERC777.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777Token standard as defined in the EIP.
 *
 * This contract uses the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 registry standard] to let
 * token holders and recipients react to token movements by using setting implementers
 * for the associated interfaces in said registry. See {IERC1820Registry} and
 * {ERC1820Implementer}.
 */
interface IERC777 {
    /**
     * @dev Emitted when `amount` tokens are created by `operator` and assigned to `to`.
     *
     * Note that some additional user `data` and `operatorData` can be logged in the event.
     */
    event Minted(address indexed operator, address indexed to, uint256 amount, bytes data, bytes operatorData);

    /**
     * @dev Emitted when `operator` destroys `amount` tokens from `account`.
     *
     * Note that some additional user `data` and `operatorData` can be logged in the event.
     */
    event Burned(address indexed operator, address indexed from, uint256 amount, bytes data, bytes operatorData);

    /**
     * @dev Emitted when `operator` is made operator for `tokenHolder`
     */
    event AuthorizedOperator(address indexed operator, address indexed tokenHolder);

    /**
     * @dev Emitted when `operator` is revoked its operator status for `tokenHolder`
     */
    event RevokedOperator(address indexed operator, address indexed tokenHolder);

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the smallest part of the token that is not divisible. This
     * means all token operations (creation, movement and destruction) must have
     * amounts that are a multiple of this number.
     *
     * For most token contracts, this value will equal 1.
     */
    function granularity() external view returns (uint256);

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * If send or receive hooks are registered for the caller and `recipient`,
     * the corresponding functions will be called with `data` and empty
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function send(
        address recipient,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev Destroys `amount` tokens from the caller's account, reducing the
     * total supply.
     *
     * If a send hook is registered for the caller, the corresponding function
     * will be called with `data` and empty `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - the caller must have at least `amount` tokens.
     */
    function burn(uint256 amount, bytes calldata data) external;

    /**
     * @dev Returns true if an account is an operator of `tokenHolder`.
     * Operators can send and burn tokens on behalf of their owners. All
     * accounts are their own operator.
     *
     * See {operatorSend} and {operatorBurn}.
     */
    function isOperatorFor(address operator, address tokenHolder) external view returns (bool);

    /**
     * @dev Make an account an operator of the caller.
     *
     * See {isOperatorFor}.
     *
     * Emits an {AuthorizedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function authorizeOperator(address operator) external;

    /**
     * @dev Revoke an account's operator status for the caller.
     *
     * See {isOperatorFor} and {defaultOperators}.
     *
     * Emits a {RevokedOperator} event.
     *
     * Requirements
     *
     * - `operator` cannot be calling address.
     */
    function revokeOperator(address operator) external;

    /**
     * @dev Returns the list of default operators. These accounts are operators
     * for all token holders, even if {authorizeOperator} was never called on
     * them.
     *
     * This list is immutable, but individual holders may revoke these via
     * {revokeOperator}, in which case {isOperatorFor} will return false.
     */
    function defaultOperators() external view returns (address[] memory);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient`. The caller must
     * be an operator of `sender`.
     *
     * If send or receive hooks are registered for `sender` and `recipient`,
     * the corresponding functions will be called with `data` and
     * `operatorData`. See {IERC777Sender} and {IERC777Recipient}.
     *
     * Emits a {Sent} event.
     *
     * Requirements
     *
     * - `sender` cannot be the zero address.
     * - `sender` must have at least `amount` tokens.
     * - the caller must be an operator for `sender`.
     * - `recipient` cannot be the zero address.
     * - if `recipient` is a contract, it must implement the {IERC777Recipient}
     * interface.
     */
    function operatorSend(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the total supply.
     * The caller must be an operator of `account`.
     *
     * If a send hook is registered for `account`, the corresponding function
     * will be called with `data` and `operatorData`. See {IERC777Sender}.
     *
     * Emits a {Burned} event.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * - the caller must be an operator for `account`.
     */
    function operatorBurn(
        address account,
        uint256 amount,
        bytes calldata data,
        bytes calldata operatorData
    ) external;

    event Sent(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 amount,
        bytes data,
        bytes operatorData
    );
}

File 7 of 9: IERC777Recipient.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC777/IERC777Recipient.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensRecipient standard as defined in the EIP.
 *
 * Accounts can be notified of {IERC777} tokens being sent to them by having a
 * contract implement this interface (contract holders can be their own
 * implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Recipient {
    /**
     * @dev Called by an {IERC777} token contract whenever tokens are being
     * moved or created into a registered account (`to`). The type of operation
     * is conveyed by `from` being the zero address or not.
     *
     * This call occurs _after_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the post-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensReceived(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

File 8 of 9: IERC777Sender.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC777/IERC777Sender.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC777TokensSender standard as defined in the EIP.
 *
 * {IERC777} Token holders can be notified of operations performed on their
 * tokens by having a contract implement this interface (contract holders can be
 * their own implementer) and registering it on the
 * https://eips.ethereum.org/EIPS/eip-1820[ERC1820 global registry].
 *
 * See {IERC1820Registry} and {ERC1820Implementer}.
 */
interface IERC777Sender {
    /**
     * @dev Called by an {IERC777} token contract whenever a registered holder's
     * (`from`) tokens are about to be moved or destroyed. The type of operation
     * is conveyed by `to` being the zero address or not.
     *
     * This call occurs _before_ the token contract's state is updated, so
     * {IERC777-balanceOf}, etc., can be used to query the pre-operation state.
     *
     * This function may revert to prevent the operation from being executed.
     */
    function tokensToSend(
        address operator,
        address from,
        address to,
        uint256 amount,
        bytes calldata userData,
        bytes calldata operatorData
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address[]","name":"defaultOperators","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"AuthorizedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"tokenHolder","type":"address"}],"name":"RevokedOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"Sent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"holder","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"authorizeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"defaultOperators","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"granularity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"tokenHolder","type":"address"}],"name":"isOperatorFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes","name":"operatorData","type":"bytes"}],"name":"operatorSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"revokeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"send","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":"holder","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"}]

60806040523480156200001157600080fd5b5060405162003b1138038062003b118339818101604052810190620000379190620009ac565b6040518060400160405280600e81526020017f5354594c452050726f746f636f6c0000000000000000000000000000000000008152506040518060400160405280600581526020017f5354594c45000000000000000000000000000000000000000000000000000000815250828260029080519060200190620000bc9291906200075f565b508160039080519060200190620000d59291906200075f565b508060049080519060200190620000ee929190620007f0565b5060005b8151811015620001875760016005600084848151811062000118576200011762000edd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200017e9062000e31565b915050620000f2565b50731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307fac7fbab5f54a3ca8194167523c6753bfeb96a445279294b6125b68cce2177054306040518463ffffffff1660e01b8152600401620001fb9392919062000b7c565b600060405180830381600087803b1580156200021657600080fd5b505af11580156200022b573d6000803e3d6000fd5b50505050731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff166329965a1d307faea199e31a596269b42cdafd93407f14436db6e4cad65417994c2eb37381e05a306040518463ffffffff1660e01b8152600401620002a29392919062000b7c565b600060405180830381600087803b158015620002bd57600080fd5b505af1158015620002d2573d6000803e3d6000fd5b505050505050506200030b338360405180602001604052806000815250604051806020016040528060008152506200031360201b60201c565b505062001032565b620003298484848460016200032f60201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620003a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003999062000bb9565b60405180910390fd5b6000620003b46200053060201b60201c565b9050620003cb81600088886200053860201b60201c565b8460016000828254620003df919062000cea565b92505081905550846000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000436919062000cea565b925050819055506200045581600088888888886200053e60201b60201c565b8573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f2fe5be0146f74c5bce36c0b80911af6c7d86ff27e89d5cfa61fc681327954e5d878787604051620004b89392919062000c1a565b60405180910390a38573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760405162000520919062000bfd565b60405180910390a3505050505050565b600033905090565b50505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b8152600401620005b192919062000b4f565b60206040518083038186803b158015620005ca57600080fd5b505afa158015620005df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060591906200097a565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620006ba578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b8152600401620006809695949392919062000ad4565b600060405180830381600087803b1580156200069b57600080fd5b505af1158015620006b0573d6000803e3d6000fd5b5050505062000732565b81156200073157620006ed8673ffffffffffffffffffffffffffffffffffffffff166200073c60201b62000e731760201c565b1562000730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007279062000bdb565b60405180910390fd5b5b5b5050505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200076d9062000dc5565b90600052602060002090601f016020900481019282620007915760008555620007dd565b82601f10620007ac57805160ff1916838001178555620007dd565b82800160010185558215620007dd579182015b82811115620007dc578251825591602001919060010190620007bf565b5b509050620007ec91906200087f565b5090565b8280548282559060005260206000209081019282156200086c579160200282015b828111156200086b5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000811565b5b5090506200087b91906200087f565b5090565b5b808211156200089a57600081600090555060010162000880565b5090565b6000620008b5620008af8462000c8e565b62000c65565b90508083825260208201905082856020860282011115620008db57620008da62000f40565b5b60005b858110156200090f5781620008f4888262000919565b845260208401935060208301925050600181019050620008de565b5050509392505050565b6000815190506200092a8162000ffe565b92915050565b600082601f83011262000948576200094762000f3b565b5b81516200095a8482602086016200089e565b91505092915050565b600081519050620009748162001018565b92915050565b60006020828403121562000993576200099262000f4a565b5b6000620009a38482850162000919565b91505092915050565b60008060408385031215620009c657620009c562000f4a565b5b6000620009d68582860162000963565b925050602083015167ffffffffffffffff811115620009fa57620009f962000f45565b5b62000a088582860162000930565b9150509250929050565b62000a1d8162000d47565b82525050565b62000a2e8162000d5b565b82525050565b600062000a418262000cbd565b62000a4d818562000cc8565b935062000a5f81856020860162000d8f565b62000a6a8162000f4f565b840191505092915050565b600062000a8460208362000cd9565b915062000a918262000f60565b602082019050919050565b600062000aab604d8362000cd9565b915062000ab88262000f89565b606082019050919050565b62000ace8162000d85565b82525050565b600060c08201905062000aeb600083018962000a12565b62000afa602083018862000a12565b62000b09604083018762000a12565b62000b18606083018662000ac3565b818103608083015262000b2c818562000a34565b905081810360a083015262000b42818462000a34565b9050979650505050505050565b600060408201905062000b66600083018562000a12565b62000b75602083018462000a23565b9392505050565b600060608201905062000b93600083018662000a12565b62000ba2602083018562000a23565b62000bb1604083018462000a12565b949350505050565b6000602082019050818103600083015262000bd48162000a75565b9050919050565b6000602082019050818103600083015262000bf68162000a9c565b9050919050565b600060208201905062000c14600083018462000ac3565b92915050565b600060608201905062000c31600083018662000ac3565b818103602083015262000c45818562000a34565b9050818103604083015262000c5b818462000a34565b9050949350505050565b600062000c7162000c84565b905062000c7f828262000dfb565b919050565b6000604051905090565b600067ffffffffffffffff82111562000cac5762000cab62000f0c565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000cf78262000d85565b915062000d048362000d85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d3c5762000d3b62000e7f565b5b828201905092915050565b600062000d548262000d65565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000daf57808201518184015260208101905062000d92565b8381111562000dbf576000848401525b50505050565b6000600282049050600182168062000dde57607f821691505b6020821081141562000df55762000df462000eae565b5b50919050565b62000e068262000f4f565b810181811067ffffffffffffffff8211171562000e285762000e2762000f0c565b5b80604052505050565b600062000e3e8262000d85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000e745762000e7362000e7f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433737373a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b620010098162000d47565b81146200101557600080fd5b50565b620010238162000d85565b81146200102f57600080fd5b50565b612acf80620010426000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190612156565b60405180910390f35b610141610425565b60405161014e9190612193565b60405180910390f35b610171600480360381019061016c9190611c2e565b6104b7565b60405161017e9190612178565b60405180910390f35b61018f6104da565b60405161019c9190612335565b60405180910390f35b6101bf60048036038101906101ba9190611b28565b6104e4565b6040516101cc9190612178565b60405180910390f35b6101dd610535565b6040516101ea9190612395565b60405180910390f35b6101fb61053e565b6040516102089190612335565b60405180910390f35b61022b60048036038101906102269190611b7b565b610547565b005b61024760048036038101906102429190611a8e565b6105ad565b6040516102549190612335565b60405180910390f35b61027760048036038101906102729190611a8e565b6105f5565b005b610281610856565b60405161028e9190612193565b60405180910390f35b6102b160048036038101906102ac9190611c6e565b6108e8565b005b6102cd60048036038101906102c89190611c2e565b610912565b6040516102da9190612178565b60405180910390f35b6102fd60048036038101906102f89190611ae8565b610952565b60405161030a9190612178565b60405180910390f35b61032d60048036038101906103289190611ae8565b610b03565b60405161033a9190612335565b60405180910390f35b61035d60048036038101906103589190611a8e565b610b8a565b005b61037960048036038101906103749190611cdd565b610deb565b005b61039560048036038101906103909190611d7c565b610e4d565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b606060028054610434906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610460906125a2565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e96565b90506104cf818585610e9e565b600191505092915050565b6000600154905090565b6000806104ef610e96565b90506104fc858285611069565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110f5565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e96565b86610952565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906122b5565b60405180910390fd5b6105a6858585858560016110f5565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e96565b73ffffffffffffffffffffffffffffffffffffffff16141561066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290612235565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075557600760006106c9610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f2565b600160066000610763610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107fa610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b606060038054610865906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610891906125a2565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b61090d6108f3610e96565b8484846040518060200160405280600081525060016110f5565b505050565b600061094861091f610e96565b8484604051806020016040528060008152506040518060200160405280600081525060006110f5565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a6a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a695750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afb5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b92610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612255565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf357600160076000610c60610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d87565b60066000610cff610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8f610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfc610df6610e96565b85610952565b610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906122b5565b60405180910390fd5b610e4784848484611215565b50505050565b610e6f610e58610e96565b838360405180602001604052806000815250611215565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906121b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590612315565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105c9190612335565b60405180910390a3505050565b60006110758484610b03565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ef57818110156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890612215565b60405180910390fd5b6110ee8484848403610e9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906122d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90612295565b60405180910390fd5b60006111df610e96565b90506111ef818888888888611468565b6111fd8188888888886115de565b61120c818888888888886117f8565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906121f5565b60405180910390fd5b600061128f610e96565b90506112a081866000878787611468565b6112ad81866000876119d9565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906122f5565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461138a91906124cd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113f293929190612350565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516114589190612335565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114d992919061212d565b60206040518083038186803b1580156114f157600080fd5b505afa158015611505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115299190611abb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115d5578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b81526004016115a2969594939291906120be565b600060405180830381600087803b1580156115bc57600080fd5b505af11580156115d0573d6000803e3d6000fd5b505050505b50505050505050565b6115ea868686866119d9565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611667906121d5565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117039190612477565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161178293929190612350565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117e79190612335565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b815260040161186992919061212d565b60206040518083038186803b15801561188157600080fd5b505afa158015611895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b99190611abb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611968578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b8152600401611931969594939291906120be565b600060405180830381600087803b15801561194b57600080fd5b505af115801561195f573d6000803e3d6000fd5b505050506119cf565b81156119ce5761198d8673ffffffffffffffffffffffffffffffffffffffff16610e73565b156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490612275565b60405180910390fd5b5b5b5050505050505050565b50505050565b60006119f26119ed846123d5565b6123b0565b905082815260208101848484011115611a0e57611a0d612697565b5b611a19848285612560565b509392505050565b600081359050611a3081612a6b565b92915050565b600081519050611a4581612a6b565b92915050565b600082601f830112611a6057611a5f612692565b5b8135611a708482602086016119df565b91505092915050565b600081359050611a8881612a82565b92915050565b600060208284031215611aa457611aa36126a1565b5b6000611ab284828501611a21565b91505092915050565b600060208284031215611ad157611ad06126a1565b5b6000611adf84828501611a36565b91505092915050565b60008060408385031215611aff57611afe6126a1565b5b6000611b0d85828601611a21565b9250506020611b1e85828601611a21565b9150509250929050565b600080600060608486031215611b4157611b406126a1565b5b6000611b4f86828701611a21565b9350506020611b6086828701611a21565b9250506040611b7186828701611a79565b9150509250925092565b600080600080600060a08688031215611b9757611b966126a1565b5b6000611ba588828901611a21565b9550506020611bb688828901611a21565b9450506040611bc788828901611a79565b935050606086013567ffffffffffffffff811115611be857611be761269c565b5b611bf488828901611a4b565b925050608086013567ffffffffffffffff811115611c1557611c1461269c565b5b611c2188828901611a4b565b9150509295509295909350565b60008060408385031215611c4557611c446126a1565b5b6000611c5385828601611a21565b9250506020611c6485828601611a79565b9150509250929050565b600080600060608486031215611c8757611c866126a1565b5b6000611c9586828701611a21565b9350506020611ca686828701611a79565b925050604084013567ffffffffffffffff811115611cc757611cc661269c565b5b611cd386828701611a4b565b9150509250925092565b60008060008060808587031215611cf757611cf66126a1565b5b6000611d0587828801611a21565b9450506020611d1687828801611a79565b935050604085013567ffffffffffffffff811115611d3757611d3661269c565b5b611d4387828801611a4b565b925050606085013567ffffffffffffffff811115611d6457611d6361269c565b5b611d7087828801611a4b565b91505092959194509250565b60008060408385031215611d9357611d926126a1565b5b6000611da185828601611a79565b925050602083013567ffffffffffffffff811115611dc257611dc161269c565b5b611dce85828601611a4b565b9150509250929050565b6000611de48383611df0565b60208301905092915050565b611df981612501565b82525050565b611e0881612501565b82525050565b6000611e1982612416565b611e238185612444565b9350611e2e83612406565b8060005b83811015611e5f578151611e468882611dd8565b9750611e5183612437565b925050600181019050611e32565b5085935050505092915050565b611e7581612513565b82525050565b611e848161251f565b82525050565b6000611e9582612421565b611e9f8185612455565b9350611eaf81856020860161256f565b611eb8816126a6565b840191505092915050565b6000611ece8261242c565b611ed88185612466565b9350611ee881856020860161256f565b611ef1816126a6565b840191505092915050565b6000611f09602583612466565b9150611f14826126b7565b604082019050919050565b6000611f2c602783612466565b9150611f3782612706565b604082019050919050565b6000611f4f602283612466565b9150611f5a82612755565b604082019050919050565b6000611f72601e83612466565b9150611f7d826127a4565b602082019050919050565b6000611f95602483612466565b9150611fa0826127cd565b604082019050919050565b6000611fb8602183612466565b9150611fc38261281c565b604082019050919050565b6000611fdb604d83612466565b9150611fe68261286b565b606082019050919050565b6000611ffe602483612466565b9150612009826128e0565b604082019050919050565b6000612021602c83612466565b915061202c8261292f565b604082019050919050565b6000612044602683612466565b915061204f8261297e565b604082019050919050565b6000612067602383612466565b9150612072826129cd565b604082019050919050565b600061208a602383612466565b915061209582612a1c565b604082019050919050565b6120a981612549565b82525050565b6120b881612553565b82525050565b600060c0820190506120d36000830189611dff565b6120e06020830188611dff565b6120ed6040830187611dff565b6120fa60608301866120a0565b818103608083015261210c8185611e8a565b905081810360a08301526121208184611e8a565b9050979650505050505050565b60006040820190506121426000830185611dff565b61214f6020830184611e7b565b9392505050565b600060208201905081810360008301526121708184611e0e565b905092915050565b600060208201905061218d6000830184611e6c565b92915050565b600060208201905081810360008301526121ad8184611ec3565b905092915050565b600060208201905081810360008301526121ce81611efc565b9050919050565b600060208201905081810360008301526121ee81611f1f565b9050919050565b6000602082019050818103600083015261220e81611f42565b9050919050565b6000602082019050818103600083015261222e81611f65565b9050919050565b6000602082019050818103600083015261224e81611f88565b9050919050565b6000602082019050818103600083015261226e81611fab565b9050919050565b6000602082019050818103600083015261228e81611fce565b9050919050565b600060208201905081810360008301526122ae81611ff1565b9050919050565b600060208201905081810360008301526122ce81612014565b9050919050565b600060208201905081810360008301526122ee81612037565b9050919050565b6000602082019050818103600083015261230e8161205a565b9050919050565b6000602082019050818103600083015261232e8161207d565b9050919050565b600060208201905061234a60008301846120a0565b92915050565b600060608201905061236560008301866120a0565b81810360208301526123778185611e8a565b9050818103604083015261238b8184611e8a565b9050949350505050565b60006020820190506123aa60008301846120af565b92915050565b60006123ba6123cb565b90506123c682826125d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156123f0576123ef612663565b5b6123f9826126a6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061248282612549565b915061248d83612549565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124c2576124c1612605565b5b828201905092915050565b60006124d882612549565b91506124e383612549565b9250828210156124f6576124f5612605565b5b828203905092915050565b600061250c82612529565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561258d578082015181840152602081019050612572565b8381111561259c576000848401525b50505050565b600060028204905060018216806125ba57607f821691505b602082108114156125ce576125cd612634565b5b50919050565b6125dd826126a6565b810181811067ffffffffffffffff821117156125fc576125fb612663565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b612a7481612501565b8114612a7f57600080fd5b50565b612a8b81612549565b8114612a9657600080fd5b5056fea2646970667358221220528fb2746d25c5cecb9013363a98fb2ab6c8b873821c087445fd7e08f7a5744c64736f6c63430008070033000000000000000000000000000000000000000002f90193ef3075fa9800000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063959b8c3f116100a2578063d95b637111610071578063d95b6371146102e3578063dd62ed3e14610313578063fad8b32a14610343578063fc673c4f1461035f578063fe9d93031461037b57610116565b8063959b8c3f1461025d57806395d89b41146102795780639bd9bbc614610297578063a9059cbb146102b357610116565b806323b872dd116100e957806323b872dd146101a5578063313ce567146101d5578063556f0dc7146101f357806362ad1b831461021157806370a082311461022d57610116565b806306e485381461011b57806306fdde0314610139578063095ea7b31461015757806318160ddd14610187575b600080fd5b610123610397565b6040516101309190612156565b60405180910390f35b610141610425565b60405161014e9190612193565b60405180910390f35b610171600480360381019061016c9190611c2e565b6104b7565b60405161017e9190612178565b60405180910390f35b61018f6104da565b60405161019c9190612335565b60405180910390f35b6101bf60048036038101906101ba9190611b28565b6104e4565b6040516101cc9190612178565b60405180910390f35b6101dd610535565b6040516101ea9190612395565b60405180910390f35b6101fb61053e565b6040516102089190612335565b60405180910390f35b61022b60048036038101906102269190611b7b565b610547565b005b61024760048036038101906102429190611a8e565b6105ad565b6040516102549190612335565b60405180910390f35b61027760048036038101906102729190611a8e565b6105f5565b005b610281610856565b60405161028e9190612193565b60405180910390f35b6102b160048036038101906102ac9190611c6e565b6108e8565b005b6102cd60048036038101906102c89190611c2e565b610912565b6040516102da9190612178565b60405180910390f35b6102fd60048036038101906102f89190611ae8565b610952565b60405161030a9190612178565b60405180910390f35b61032d60048036038101906103289190611ae8565b610b03565b60405161033a9190612335565b60405180910390f35b61035d60048036038101906103589190611a8e565b610b8a565b005b61037960048036038101906103749190611cdd565b610deb565b005b61039560048036038101906103909190611d7c565b610e4d565b005b6060600480548060200260200160405190810160405280929190818152602001828054801561041b57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116103d1575b5050505050905090565b606060028054610434906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610460906125a2565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610e96565b90506104cf818585610e9e565b600191505092915050565b6000600154905090565b6000806104ef610e96565b90506104fc858285611069565b610529858585604051806020016040528060008152506040518060200160405280600081525060006110f5565b60019150509392505050565b60006012905090565b60006001905090565b610558610552610e96565b86610952565b610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058e906122b5565b60405180910390fd5b6105a6858585858560016110f5565b5050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8073ffffffffffffffffffffffffffffffffffffffff16610614610e96565b73ffffffffffffffffffffffffffffffffffffffff16141561066b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066290612235565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561075557600760006106c9610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556107f2565b600160066000610763610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6107fa610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff4caeb2d6ca8932a215a353d0703c326ec2d81fc68170f320eb2ab49e9df61f960405160405180910390a350565b606060038054610865906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610891906125a2565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b61090d6108f3610e96565b8484846040518060200160405280600081525060016110f5565b505050565b600061094861091f610e96565b8484604051806020016040528060008152506040518060200160405280600081525060006110f5565b6001905092915050565b60008173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610a6a5750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015610a695750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b80610afb5750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b92610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612255565b60405180910390fd5b600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cf357600160076000610c60610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d87565b60066000610cff610e96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b610d8f610e96565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f50546e66e5f44d728365dc3908c63bc5cfeeab470722c1677e3073a6ac294aa160405160405180910390a350565b610dfc610df6610e96565b85610952565b610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e32906122b5565b60405180910390fd5b610e4784848484611215565b50505050565b610e6f610e58610e96565b838360405180602001604052806000815250611215565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906121b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7590612315565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105c9190612335565b60405180910390a3505050565b60006110758484610b03565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ef57818110156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890612215565b60405180910390fd5b6110ee8484848403610e9e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906122d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90612295565b60405180910390fd5b60006111df610e96565b90506111ef818888888888611468565b6111fd8188888888886115de565b61120c818888888888886117f8565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c906121f5565b60405180910390fd5b600061128f610e96565b90506112a081866000878787611468565b6112ad81866000876119d9565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015611333576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132a906122f5565b60405180910390fd5b8481036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550846001600082825461138a91906124cd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fa78a9be3a7b862d26933ad85fb11d80ef66b8f972d7cbba06621d583943a40988787876040516113f293929190612350565b60405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516114589190612335565b60405180910390a3505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877f29ddb589b1fb5fc7cf394961c1adf5f8c6454761adf795e67fe149f658abe8956040518363ffffffff1660e01b81526004016114d992919061212d565b60206040518083038186803b1580156114f157600080fd5b505afa158015611505573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115299190611abb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115d5578073ffffffffffffffffffffffffffffffffffffffff166375ab97828888888888886040518763ffffffff1660e01b81526004016115a2969594939291906120be565b600060405180830381600087803b1580156115bc57600080fd5b505af11580156115d0573d6000803e3d6000fd5b505050505b50505050505050565b6115ea868686866119d9565b60008060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611670576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611667906121d5565b60405180910390fd5b8381036000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117039190612477565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f06b541ddaa720db2b10a4d0cdac39b8d360425fc073085fac19bc8261467798787878760405161178293929190612350565b60405180910390a48473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516117e79190612335565b60405180910390a350505050505050565b6000731820a4b7618bde71dce8cdc73aab6c95905fad2473ffffffffffffffffffffffffffffffffffffffff1663aabbb8ca877fb281fc8c12954d22544db45de3159a39272895b169a852b314f9cc762e44c53b6040518363ffffffff1660e01b815260040161186992919061212d565b60206040518083038186803b15801561188157600080fd5b505afa158015611895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b99190611abb565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611968578073ffffffffffffffffffffffffffffffffffffffff166223de298989898989896040518763ffffffff1660e01b8152600401611931969594939291906120be565b600060405180830381600087803b15801561194b57600080fd5b505af115801561195f573d6000803e3d6000fd5b505050506119cf565b81156119ce5761198d8673ffffffffffffffffffffffffffffffffffffffff16610e73565b156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490612275565b60405180910390fd5b5b5b5050505050505050565b50505050565b60006119f26119ed846123d5565b6123b0565b905082815260208101848484011115611a0e57611a0d612697565b5b611a19848285612560565b509392505050565b600081359050611a3081612a6b565b92915050565b600081519050611a4581612a6b565b92915050565b600082601f830112611a6057611a5f612692565b5b8135611a708482602086016119df565b91505092915050565b600081359050611a8881612a82565b92915050565b600060208284031215611aa457611aa36126a1565b5b6000611ab284828501611a21565b91505092915050565b600060208284031215611ad157611ad06126a1565b5b6000611adf84828501611a36565b91505092915050565b60008060408385031215611aff57611afe6126a1565b5b6000611b0d85828601611a21565b9250506020611b1e85828601611a21565b9150509250929050565b600080600060608486031215611b4157611b406126a1565b5b6000611b4f86828701611a21565b9350506020611b6086828701611a21565b9250506040611b7186828701611a79565b9150509250925092565b600080600080600060a08688031215611b9757611b966126a1565b5b6000611ba588828901611a21565b9550506020611bb688828901611a21565b9450506040611bc788828901611a79565b935050606086013567ffffffffffffffff811115611be857611be761269c565b5b611bf488828901611a4b565b925050608086013567ffffffffffffffff811115611c1557611c1461269c565b5b611c2188828901611a4b565b9150509295509295909350565b60008060408385031215611c4557611c446126a1565b5b6000611c5385828601611a21565b9250506020611c6485828601611a79565b9150509250929050565b600080600060608486031215611c8757611c866126a1565b5b6000611c9586828701611a21565b9350506020611ca686828701611a79565b925050604084013567ffffffffffffffff811115611cc757611cc661269c565b5b611cd386828701611a4b565b9150509250925092565b60008060008060808587031215611cf757611cf66126a1565b5b6000611d0587828801611a21565b9450506020611d1687828801611a79565b935050604085013567ffffffffffffffff811115611d3757611d3661269c565b5b611d4387828801611a4b565b925050606085013567ffffffffffffffff811115611d6457611d6361269c565b5b611d7087828801611a4b565b91505092959194509250565b60008060408385031215611d9357611d926126a1565b5b6000611da185828601611a79565b925050602083013567ffffffffffffffff811115611dc257611dc161269c565b5b611dce85828601611a4b565b9150509250929050565b6000611de48383611df0565b60208301905092915050565b611df981612501565b82525050565b611e0881612501565b82525050565b6000611e1982612416565b611e238185612444565b9350611e2e83612406565b8060005b83811015611e5f578151611e468882611dd8565b9750611e5183612437565b925050600181019050611e32565b5085935050505092915050565b611e7581612513565b82525050565b611e848161251f565b82525050565b6000611e9582612421565b611e9f8185612455565b9350611eaf81856020860161256f565b611eb8816126a6565b840191505092915050565b6000611ece8261242c565b611ed88185612466565b9350611ee881856020860161256f565b611ef1816126a6565b840191505092915050565b6000611f09602583612466565b9150611f14826126b7565b604082019050919050565b6000611f2c602783612466565b9150611f3782612706565b604082019050919050565b6000611f4f602283612466565b9150611f5a82612755565b604082019050919050565b6000611f72601e83612466565b9150611f7d826127a4565b602082019050919050565b6000611f95602483612466565b9150611fa0826127cd565b604082019050919050565b6000611fb8602183612466565b9150611fc38261281c565b604082019050919050565b6000611fdb604d83612466565b9150611fe68261286b565b606082019050919050565b6000611ffe602483612466565b9150612009826128e0565b604082019050919050565b6000612021602c83612466565b915061202c8261292f565b604082019050919050565b6000612044602683612466565b915061204f8261297e565b604082019050919050565b6000612067602383612466565b9150612072826129cd565b604082019050919050565b600061208a602383612466565b915061209582612a1c565b604082019050919050565b6120a981612549565b82525050565b6120b881612553565b82525050565b600060c0820190506120d36000830189611dff565b6120e06020830188611dff565b6120ed6040830187611dff565b6120fa60608301866120a0565b818103608083015261210c8185611e8a565b905081810360a08301526121208184611e8a565b9050979650505050505050565b60006040820190506121426000830185611dff565b61214f6020830184611e7b565b9392505050565b600060208201905081810360008301526121708184611e0e565b905092915050565b600060208201905061218d6000830184611e6c565b92915050565b600060208201905081810360008301526121ad8184611ec3565b905092915050565b600060208201905081810360008301526121ce81611efc565b9050919050565b600060208201905081810360008301526121ee81611f1f565b9050919050565b6000602082019050818103600083015261220e81611f42565b9050919050565b6000602082019050818103600083015261222e81611f65565b9050919050565b6000602082019050818103600083015261224e81611f88565b9050919050565b6000602082019050818103600083015261226e81611fab565b9050919050565b6000602082019050818103600083015261228e81611fce565b9050919050565b600060208201905081810360008301526122ae81611ff1565b9050919050565b600060208201905081810360008301526122ce81612014565b9050919050565b600060208201905081810360008301526122ee81612037565b9050919050565b6000602082019050818103600083015261230e8161205a565b9050919050565b6000602082019050818103600083015261232e8161207d565b9050919050565b600060208201905061234a60008301846120a0565b92915050565b600060608201905061236560008301866120a0565b81810360208301526123778185611e8a565b9050818103604083015261238b8184611e8a565b9050949350505050565b60006020820190506123aa60008301846120af565b92915050565b60006123ba6123cb565b90506123c682826125d4565b919050565b6000604051905090565b600067ffffffffffffffff8211156123f0576123ef612663565b5b6123f9826126a6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061248282612549565b915061248d83612549565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156124c2576124c1612605565b5b828201905092915050565b60006124d882612549565b91506124e383612549565b9250828210156124f6576124f5612605565b5b828203905092915050565b600061250c82612529565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561258d578082015181840152602081019050612572565b8381111561259c576000848401525b50505050565b600060028204905060018216806125ba57607f821691505b602082108114156125ce576125cd612634565b5b50919050565b6125dd826126a6565b810181811067ffffffffffffffff821117156125fc576125fb612663565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433737373a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a207472616e7366657220616d6f756e7420657863656564732060008201527f62616c616e636500000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a206275726e2066726f6d20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20696e73756666696369656e7420616c6c6f77616e63650000600082015250565b7f4552433737373a20617574686f72697a696e672073656c66206173206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a207265766f6b696e672073656c66206173206f70657261746f60008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20746f6b656e20726563697069656e7420636f6e747261637460008201527f20686173206e6f20696d706c656d656e74657220666f7220455243373737546f60208201527f6b656e73526563697069656e7400000000000000000000000000000000000000604082015250565b7f4552433737373a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a2063616c6c6572206973206e6f7420616e206f70657261746f60008201527f7220666f7220686f6c6465720000000000000000000000000000000000000000602082015250565b7f4552433737373a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a206275726e20616d6f756e7420657863656564732062616c6160008201527f6e63650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433737373a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b612a7481612501565b8114612a7f57600080fd5b50565b612a8b81612549565b8114612a9657600080fd5b5056fea2646970667358221220528fb2746d25c5cecb9013363a98fb2ab6c8b873821c087445fd7e08f7a5744c64736f6c63430008070033

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

000000000000000000000000000000000000000002f90193ef3075fa9800000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 920000000000000000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000002f90193ef3075fa98000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

116:277:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6679:132:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3011:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8491:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3837:125;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9188:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3468:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3674:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6937:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4067:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5704:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3172:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4356:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4796:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5316:316;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8021:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7440:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5119:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6679:132;6745:16;6781:22;6774:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6679:132;:::o;3011:100::-;3065:13;3098:5;3091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3011:100;:::o;8491:201::-;8573:4;8590:14;8607:12;:10;:12::i;:::-;8590:29;;8630:32;8639:6;8647:7;8656:5;8630:8;:32::i;:::-;8680:4;8673:11;;;8491:201;;;;:::o;3837:125::-;3915:7;3942:12;;3935:19;;3837:125;:::o;9188:326::-;9328:4;9345:15;9363:12;:10;:12::i;:::-;9345:30;;9386:40;9402:6;9410:7;9419:6;9386:15;:40::i;:::-;9437:47;9443:6;9451:9;9462:6;9437:47;;;;;;;;;;;;;;;;;;;;;;;;9478:5;9437;:47::i;:::-;9502:4;9495:11;;;9188:326;;;;;:::o;3468:84::-;3517:5;3542:2;3535:9;;3468:84;:::o;3674:97::-;3735:7;3762:1;3755:8;;3674:97;:::o;6937:375::-;7151:35;7165:12;:10;:12::i;:::-;7179:6;7151:13;:35::i;:::-;7143:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;7246:58;7252:6;7260:9;7271:6;7279:4;7285:12;7299:4;7246:5;:58::i;:::-;6937:375;;;;;:::o;4067:152::-;4162:7;4189:9;:22;4199:11;4189:22;;;;;;;;;;;;;;;;4182:29;;4067:152;;;:::o;5704:422::-;5808:8;5792:24;;:12;:10;:12::i;:::-;:24;;;;5784:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5874:17;:27;5892:8;5874:27;;;;;;;;;;;;;;;;;;;;;;;;;5870:189;;;5925:24;:38;5950:12;:10;:12::i;:::-;5925:38;;;;;;;;;;;;;;;:48;5964:8;5925:48;;;;;;;;;;;;;;;;5918:55;;;;;;;;;;;5870:189;;;6043:4;6006:10;:24;6017:12;:10;:12::i;:::-;6006:24;;;;;;;;;;;;;;;:34;6031:8;6006:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;5870:189;6105:12;:10;:12::i;:::-;6076:42;;6095:8;6076:42;;;;;;;;;;;;5704:422;:::o;3172:104::-;3228:13;3261:7;3254:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3172:104;:::o;4356:199::-;4493:54;4499:12;:10;:12::i;:::-;4513:9;4524:6;4532:4;4493:54;;;;;;;;;;;;4542:4;4493:5;:54::i;:::-;4356:199;;;:::o;4796:186::-;4882:4;4899:53;4905:12;:10;:12::i;:::-;4919:9;4930:6;4899:53;;;;;;;;;;;;;;;;;;;;;;;;4946:5;4899;:53::i;:::-;4970:4;4963:11;;4796:186;;;;:::o;5316:316::-;5416:4;5465:11;5453:23;;:8;:23;;;:121;;;;5494:17;:27;5512:8;5494:27;;;;;;;;;;;;;;;;;;;;;;;;;:79;;;;;5526:24;:37;5551:11;5526:37;;;;;;;;;;;;;;;:47;5564:8;5526:47;;;;;;;;;;;;;;;;;;;;;;;;;5525:48;5494:79;5453:121;:171;;;;5591:10;:23;5602:11;5591:23;;;;;;;;;;;;;;;:33;5615:8;5591:33;;;;;;;;;;;;;;;;;;;;;;;;;5453:171;5433:191;;5316:316;;;;:::o;8021:153::-;8111:7;8138:11;:19;8150:6;8138:19;;;;;;;;;;;;;;;:28;8158:7;8138:28;;;;;;;;;;;;;;;;8131:35;;8021:153;;;;:::o;6195:413::-;6292:12;:10;:12::i;:::-;6280:24;;:8;:24;;;;6272:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6359:17;:27;6377:8;6359:27;;;;;;;;;;;;;;;;;;;;;;;;;6355:189;;;6454:4;6403:24;:38;6428:12;:10;:12::i;:::-;6403:38;;;;;;;;;;;;;;;:48;6442:8;6403:48;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;6355:189;;;6498:10;:24;6509:12;:10;:12::i;:::-;6498:24;;;;;;;;;;;;;;;:34;6523:8;6498:34;;;;;;;;;;;;;;;;6491:41;;;;;;;;;;;6355:189;6587:12;:10;:12::i;:::-;6561:39;;6577:8;6561:39;;;;;;;;;;;;6195:413;:::o;7440:333::-;7627:36;7641:12;:10;:12::i;:::-;7655:7;7627:13;:36::i;:::-;7619:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;7723:42;7729:7;7738:6;7746:4;7752:12;7723:5;:42::i;:::-;7440:333;;;;:::o;5119:129::-;5203:37;5209:12;:10;:12::i;:::-;5223:6;5231:4;5203:37;;;;;;;;;;;;:5;:37::i;:::-;5119:129;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;14862:383:2:-;15016:1;14998:20;;:6;:20;;;;14990:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15098:1;15079:21;;:7;:21;;;;15071:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;15184:5;15153:11;:19;15165:6;15153:19;;;;;;;;;;;;;;;:28;15173:7;15153:28;;;;;;;;;;;;;;;:36;;;;15222:7;15205:32;;15214:6;15205:32;;;15231:5;15205:32;;;;;;:::i;:::-;;;;;;;;14862:383;;;:::o;17897:454::-;18032:24;18059:25;18069:5;18076:7;18059:9;:25::i;:::-;18032:52;;18119:17;18099:16;:37;18095:249;;18181:6;18161:16;:26;;18153:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;18266:51;18275:5;18282:7;18310:6;18291:16;:25;18266:8;:51::i;:::-;18095:249;18021:330;17897:454;;;:::o;12254:676::-;12500:1;12484:18;;:4;:18;;;;12476:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;12578:1;12564:16;;:2;:16;;;;12556:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12634:16;12653:12;:10;:12::i;:::-;12634:31;;12678:69;12696:8;12706:4;12712:2;12716:6;12724:8;12734:12;12678:17;:69::i;:::-;12760:57;12766:8;12776:4;12782:2;12786:6;12794:8;12804:12;12760:5;:57::i;:::-;12830:92;12850:8;12860:4;12866:2;12870:6;12878:8;12888:12;12902:19;12830;:92::i;:::-;12465:465;12254:676;;;;;;:::o;13244:835::-;13430:1;13414:18;;:4;:18;;;;13406:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13484:16;13503:12;:10;:12::i;:::-;13484:31;;13528:73;13546:8;13556:4;13570:1;13574:6;13582:4;13588:12;13528:17;:73::i;:::-;13614:56;13635:8;13645:4;13659:1;13663:6;13614:20;:56::i;:::-;13718:19;13740:9;:15;13750:4;13740:15;;;;;;;;;;;;;;;;13718:37;;13789:6;13774:11;:21;;13766:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;13903:6;13889:11;:20;13871:9;:15;13881:4;13871:15;;;;;;;;;;;;;;;:38;;;;13947:6;13931:12;;:22;;;;;;;:::i;:::-;;;;;;;;13988:4;13971:50;;13978:8;13971:50;;;13994:6;14002:4;14008:12;13971:50;;;;;;;;:::i;:::-;;;;;;;;14060:1;14037:34;;14046:4;14037:34;;;14064:6;14037:34;;;;;;:::i;:::-;;;;;;;;13395:684;;13244:835;;;;:::o;15729:484::-;15946:19;1222:42;15968:41;;;16010:4;1480:31;15968:78;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15946:100;;16084:1;16061:25;;:11;:25;;;16057:149;;16117:11;16103:39;;;16143:8;16153:4;16159:2;16163:6;16171:8;16181:12;16103:91;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16057:149;15935:278;15729:484;;;;;;:::o;14087:630::-;14292:48;14313:8;14323:4;14329:2;14333:6;14292:20;:48::i;:::-;14353:19;14375:9;:15;14385:4;14375:15;;;;;;;;;;;;;;;;14353:37;;14424:6;14409:11;:21;;14401:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14542:6;14528:11;:20;14510:9;:15;14520:4;14510:15;;;;;;;;;;;;;;;:38;;;;14587:6;14570:9;:13;14580:2;14570:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;14632:2;14611:56;;14626:4;14611:56;;14616:8;14611:56;;;14636:6;14644:8;14654:12;14611:56;;;;;;;;:::i;:::-;;;;;;;;14698:2;14683:26;;14692:4;14683:26;;;14702:6;14683:26;;;;;;:::i;:::-;;;;;;;;14281:436;14087:630;;;;;;:::o;16915:691::-;17169:19;1222:42;17191:41;;;17233:2;1578:34;17191:79;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17169:101;;17308:1;17285:25;;:11;:25;;;17281:318;;17344:11;17327:44;;;17372:8;17382:4;17388:2;17392:6;17400:8;17410:12;17327:96;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17281:318;;;17445:19;17441:158;;;17490:15;:2;:13;;;:15::i;:::-;17489:16;17481:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;17441:158;17281:318;17158:448;16915:691;;;;;;;:::o;18995:152::-;;;;;:::o;7:410:9:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:143::-;625:5;656:6;650:13;641:22;;672:33;699:5;672:33;:::i;:::-;568:143;;;;:::o;730:338::-;785:5;834:3;827:4;819:6;815:17;811:27;801:122;;842:79;;:::i;:::-;801:122;959:6;946:20;984:78;1058:3;1050:6;1043:4;1035:6;1031:17;984:78;:::i;:::-;975:87;;791:277;730:338;;;;:::o;1074:139::-;1120:5;1158:6;1145:20;1136:29;;1174:33;1201:5;1174:33;:::i;:::-;1074:139;;;;:::o;1219:329::-;1278:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:119;;;1333:79;;:::i;:::-;1295:119;1453:1;1478:53;1523:7;1514:6;1503:9;1499:22;1478:53;:::i;:::-;1468:63;;1424:117;1219:329;;;;:::o;1554:351::-;1624:6;1673:2;1661:9;1652:7;1648:23;1644:32;1641:119;;;1679:79;;:::i;:::-;1641:119;1799:1;1824:64;1880:7;1871:6;1860:9;1856:22;1824:64;:::i;:::-;1814:74;;1770:128;1554:351;;;;:::o;1911:474::-;1979:6;1987;2036:2;2024:9;2015:7;2011:23;2007:32;2004:119;;;2042:79;;:::i;:::-;2004:119;2162:1;2187:53;2232:7;2223:6;2212:9;2208:22;2187:53;:::i;:::-;2177:63;;2133:117;2289:2;2315:53;2360:7;2351:6;2340:9;2336:22;2315:53;:::i;:::-;2305:63;;2260:118;1911:474;;;;;:::o;2391:619::-;2468:6;2476;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:53;2857:7;2848:6;2837:9;2833:22;2812:53;:::i;:::-;2802:63;;2757:118;2914:2;2940:53;2985:7;2976:6;2965:9;2961:22;2940:53;:::i;:::-;2930:63;;2885:118;2391:619;;;;;:::o;3016:1267::-;3129:6;3137;3145;3153;3161;3210:3;3198:9;3189:7;3185:23;3181:33;3178:120;;;3217:79;;:::i;:::-;3178:120;3337:1;3362:53;3407:7;3398:6;3387:9;3383:22;3362:53;:::i;:::-;3352:63;;3308:117;3464:2;3490:53;3535:7;3526:6;3515:9;3511:22;3490:53;:::i;:::-;3480:63;;3435:118;3592:2;3618:53;3663:7;3654:6;3643:9;3639:22;3618:53;:::i;:::-;3608:63;;3563:118;3748:2;3737:9;3733:18;3720:32;3779:18;3771:6;3768:30;3765:117;;;3801:79;;:::i;:::-;3765:117;3906:62;3960:7;3951:6;3940:9;3936:22;3906:62;:::i;:::-;3896:72;;3691:287;4045:3;4034:9;4030:19;4017:33;4077:18;4069:6;4066:30;4063:117;;;4099:79;;:::i;:::-;4063:117;4204:62;4258:7;4249:6;4238:9;4234:22;4204:62;:::i;:::-;4194:72;;3988:288;3016:1267;;;;;;;;:::o;4289:474::-;4357:6;4365;4414:2;4402:9;4393:7;4389:23;4385:32;4382:119;;;4420:79;;:::i;:::-;4382:119;4540:1;4565:53;4610:7;4601:6;4590:9;4586:22;4565:53;:::i;:::-;4555:63;;4511:117;4667:2;4693:53;4738:7;4729:6;4718:9;4714:22;4693:53;:::i;:::-;4683:63;;4638:118;4289:474;;;;;:::o;4769:797::-;4855:6;4863;4871;4920:2;4908:9;4899:7;4895:23;4891:32;4888:119;;;4926:79;;:::i;:::-;4888:119;5046:1;5071:53;5116:7;5107:6;5096:9;5092:22;5071:53;:::i;:::-;5061:63;;5017:117;5173:2;5199:53;5244:7;5235:6;5224:9;5220:22;5199:53;:::i;:::-;5189:63;;5144:118;5329:2;5318:9;5314:18;5301:32;5360:18;5352:6;5349:30;5346:117;;;5382:79;;:::i;:::-;5346:117;5487:62;5541:7;5532:6;5521:9;5517:22;5487:62;:::i;:::-;5477:72;;5272:287;4769:797;;;;;:::o;5572:1121::-;5676:6;5684;5692;5700;5749:3;5737:9;5728:7;5724:23;5720:33;5717:120;;;5756:79;;:::i;:::-;5717:120;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;6003:2;6029:53;6074:7;6065:6;6054:9;6050:22;6029:53;:::i;:::-;6019:63;;5974:118;6159:2;6148:9;6144:18;6131:32;6190:18;6182:6;6179:30;6176:117;;;6212:79;;:::i;:::-;6176:117;6317:62;6371:7;6362:6;6351:9;6347:22;6317:62;:::i;:::-;6307:72;;6102:287;6456:2;6445:9;6441:18;6428:32;6487:18;6479:6;6476:30;6473:117;;;6509:79;;:::i;:::-;6473:117;6614:62;6668:7;6659:6;6648:9;6644:22;6614:62;:::i;:::-;6604:72;;6399:287;5572:1121;;;;;;;:::o;6699:652::-;6776:6;6784;6833:2;6821:9;6812:7;6808:23;6804:32;6801:119;;;6839:79;;:::i;:::-;6801:119;6959:1;6984:53;7029:7;7020:6;7009:9;7005:22;6984:53;:::i;:::-;6974:63;;6930:117;7114:2;7103:9;7099:18;7086:32;7145:18;7137:6;7134:30;7131:117;;;7167:79;;:::i;:::-;7131:117;7272:62;7326:7;7317:6;7306:9;7302:22;7272:62;:::i;:::-;7262:72;;7057:287;6699:652;;;;;:::o;7357:179::-;7426:10;7447:46;7489:3;7481:6;7447:46;:::i;:::-;7525:4;7520:3;7516:14;7502:28;;7357:179;;;;:::o;7542:108::-;7619:24;7637:5;7619:24;:::i;:::-;7614:3;7607:37;7542:108;;:::o;7656:118::-;7743:24;7761:5;7743:24;:::i;:::-;7738:3;7731:37;7656:118;;:::o;7810:732::-;7929:3;7958:54;8006:5;7958:54;:::i;:::-;8028:86;8107:6;8102:3;8028:86;:::i;:::-;8021:93;;8138:56;8188:5;8138:56;:::i;:::-;8217:7;8248:1;8233:284;8258:6;8255:1;8252:13;8233:284;;;8334:6;8328:13;8361:63;8420:3;8405:13;8361:63;:::i;:::-;8354:70;;8447:60;8500:6;8447:60;:::i;:::-;8437:70;;8293:224;8280:1;8277;8273:9;8268:14;;8233:284;;;8237:14;8533:3;8526:10;;7934:608;;;7810:732;;;;:::o;8548:109::-;8629:21;8644:5;8629:21;:::i;:::-;8624:3;8617:34;8548:109;;:::o;8663:118::-;8750:24;8768:5;8750:24;:::i;:::-;8745:3;8738:37;8663:118;;:::o;8787:360::-;8873:3;8901:38;8933:5;8901:38;:::i;:::-;8955:70;9018:6;9013:3;8955:70;:::i;:::-;8948:77;;9034:52;9079:6;9074:3;9067:4;9060:5;9056:16;9034:52;:::i;:::-;9111:29;9133:6;9111:29;:::i;:::-;9106:3;9102:39;9095:46;;8877:270;8787:360;;;;:::o;9153:364::-;9241:3;9269:39;9302:5;9269:39;:::i;:::-;9324:71;9388:6;9383:3;9324:71;:::i;:::-;9317:78;;9404:52;9449:6;9444:3;9437:4;9430:5;9426:16;9404:52;:::i;:::-;9481:29;9503:6;9481:29;:::i;:::-;9476:3;9472:39;9465:46;;9245:272;9153:364;;;;:::o;9523:366::-;9665:3;9686:67;9750:2;9745:3;9686:67;:::i;:::-;9679:74;;9762:93;9851:3;9762:93;:::i;:::-;9880:2;9875:3;9871:12;9864:19;;9523:366;;;:::o;9895:::-;10037:3;10058:67;10122:2;10117:3;10058:67;:::i;:::-;10051:74;;10134:93;10223:3;10134:93;:::i;:::-;10252:2;10247:3;10243:12;10236:19;;9895:366;;;:::o;10267:::-;10409:3;10430:67;10494:2;10489:3;10430:67;:::i;:::-;10423:74;;10506:93;10595:3;10506:93;:::i;:::-;10624:2;10619:3;10615:12;10608:19;;10267:366;;;:::o;10639:::-;10781:3;10802:67;10866:2;10861:3;10802:67;:::i;:::-;10795:74;;10878:93;10967:3;10878:93;:::i;:::-;10996:2;10991:3;10987:12;10980:19;;10639:366;;;:::o;11011:::-;11153:3;11174:67;11238:2;11233:3;11174:67;:::i;:::-;11167:74;;11250:93;11339:3;11250:93;:::i;:::-;11368:2;11363:3;11359:12;11352:19;;11011:366;;;:::o;11383:::-;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:::-;11897:3;11918:67;11982:2;11977:3;11918:67;:::i;:::-;11911:74;;11994:93;12083:3;11994:93;:::i;:::-;12112:2;12107:3;12103:12;12096:19;;11755:366;;;:::o;12127:::-;12269:3;12290:67;12354:2;12349:3;12290:67;:::i;:::-;12283:74;;12366:93;12455:3;12366:93;:::i;:::-;12484:2;12479:3;12475:12;12468:19;;12127:366;;;:::o;12499:::-;12641:3;12662:67;12726:2;12721:3;12662:67;:::i;:::-;12655:74;;12738:93;12827:3;12738:93;:::i;:::-;12856:2;12851:3;12847:12;12840:19;;12499:366;;;:::o;12871:::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;12871:366;;;:::o;13243:::-;13385:3;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13482:93;13571:3;13482:93;:::i;:::-;13600:2;13595:3;13591:12;13584:19;;13243:366;;;:::o;13615:::-;13757:3;13778:67;13842:2;13837:3;13778:67;:::i;:::-;13771:74;;13854:93;13943:3;13854:93;:::i;:::-;13972:2;13967:3;13963:12;13956:19;;13615:366;;;:::o;13987:118::-;14074:24;14092:5;14074:24;:::i;:::-;14069:3;14062:37;13987:118;;:::o;14111:112::-;14194:22;14210:5;14194:22;:::i;:::-;14189:3;14182:35;14111:112;;:::o;14229:949::-;14498:4;14536:3;14525:9;14521:19;14513:27;;14550:71;14618:1;14607:9;14603:17;14594:6;14550:71;:::i;:::-;14631:72;14699:2;14688:9;14684:18;14675:6;14631:72;:::i;:::-;14713;14781:2;14770:9;14766:18;14757:6;14713:72;:::i;:::-;14795;14863:2;14852:9;14848:18;14839:6;14795:72;:::i;:::-;14915:9;14909:4;14905:20;14899:3;14888:9;14884:19;14877:49;14943:76;15014:4;15005:6;14943:76;:::i;:::-;14935:84;;15067:9;15061:4;15057:20;15051:3;15040:9;15036:19;15029:49;15095:76;15166:4;15157:6;15095:76;:::i;:::-;15087:84;;14229:949;;;;;;;;;:::o;15184:332::-;15305:4;15343:2;15332:9;15328:18;15320:26;;15356:71;15424:1;15413:9;15409:17;15400:6;15356:71;:::i;:::-;15437:72;15505:2;15494:9;15490:18;15481:6;15437:72;:::i;:::-;15184:332;;;;;:::o;15522:373::-;15665:4;15703:2;15692:9;15688:18;15680:26;;15752:9;15746:4;15742:20;15738:1;15727:9;15723:17;15716:47;15780:108;15883:4;15874:6;15780:108;:::i;:::-;15772:116;;15522:373;;;;:::o;15901:210::-;15988:4;16026:2;16015:9;16011:18;16003:26;;16039:65;16101:1;16090:9;16086:17;16077:6;16039:65;:::i;:::-;15901:210;;;;:::o;16117:313::-;16230:4;16268:2;16257:9;16253:18;16245:26;;16317:9;16311:4;16307:20;16303:1;16292:9;16288:17;16281:47;16345:78;16418:4;16409:6;16345:78;:::i;:::-;16337:86;;16117:313;;;;:::o;16436:419::-;16602:4;16640:2;16629:9;16625:18;16617:26;;16689:9;16683:4;16679:20;16675:1;16664:9;16660:17;16653:47;16717:131;16843:4;16717:131;:::i;:::-;16709:139;;16436:419;;;:::o;16861:::-;17027:4;17065:2;17054:9;17050:18;17042:26;;17114:9;17108:4;17104:20;17100:1;17089:9;17085:17;17078:47;17142:131;17268:4;17142:131;:::i;:::-;17134:139;;16861:419;;;:::o;17286:::-;17452:4;17490:2;17479:9;17475:18;17467:26;;17539:9;17533:4;17529:20;17525:1;17514:9;17510:17;17503:47;17567:131;17693:4;17567:131;:::i;:::-;17559:139;;17286:419;;;:::o;17711:::-;17877:4;17915:2;17904:9;17900:18;17892:26;;17964:9;17958:4;17954:20;17950:1;17939:9;17935:17;17928:47;17992:131;18118:4;17992:131;:::i;:::-;17984:139;;17711:419;;;:::o;18136:::-;18302:4;18340:2;18329:9;18325:18;18317:26;;18389:9;18383:4;18379:20;18375:1;18364:9;18360:17;18353:47;18417:131;18543:4;18417:131;:::i;:::-;18409:139;;18136:419;;;:::o;18561:::-;18727:4;18765:2;18754:9;18750:18;18742:26;;18814:9;18808:4;18804:20;18800:1;18789:9;18785:17;18778:47;18842:131;18968:4;18842:131;:::i;:::-;18834:139;;18561:419;;;:::o;18986:::-;19152:4;19190:2;19179:9;19175:18;19167:26;;19239:9;19233:4;19229:20;19225:1;19214:9;19210:17;19203:47;19267:131;19393:4;19267:131;:::i;:::-;19259:139;;18986:419;;;:::o;19411:::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20089:9;20083:4;20079:20;20075:1;20064:9;20060:17;20053:47;20117:131;20243:4;20117:131;:::i;:::-;20109:139;;19836:419;;;:::o;20261:::-;20427:4;20465:2;20454:9;20450:18;20442:26;;20514:9;20508:4;20504:20;20500:1;20489:9;20485:17;20478:47;20542:131;20668:4;20542:131;:::i;:::-;20534:139;;20261:419;;;:::o;20686:::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20939:9;20933:4;20929:20;20925:1;20914:9;20910:17;20903:47;20967:131;21093:4;20967:131;:::i;:::-;20959:139;;20686:419;;;:::o;21111:::-;21277:4;21315:2;21304:9;21300:18;21292:26;;21364:9;21358:4;21354:20;21350:1;21339:9;21335:17;21328:47;21392:131;21518:4;21392:131;:::i;:::-;21384:139;;21111:419;;;:::o;21536:222::-;21629:4;21667:2;21656:9;21652:18;21644:26;;21680:71;21748:1;21737:9;21733:17;21724:6;21680:71;:::i;:::-;21536:222;;;;:::o;21764:616::-;21949:4;21987:2;21976:9;21972:18;21964:26;;22000:71;22068:1;22057:9;22053:17;22044:6;22000:71;:::i;:::-;22118:9;22112:4;22108:20;22103:2;22092:9;22088:18;22081:48;22146:76;22217:4;22208:6;22146:76;:::i;:::-;22138:84;;22269:9;22263:4;22259:20;22254:2;22243:9;22239:18;22232:48;22297:76;22368:4;22359:6;22297:76;:::i;:::-;22289:84;;21764:616;;;;;;:::o;22386:214::-;22475:4;22513:2;22502:9;22498:18;22490:26;;22526:67;22590:1;22579:9;22575:17;22566:6;22526:67;:::i;:::-;22386:214;;;;:::o;22606:129::-;22640:6;22667:20;;:::i;:::-;22657:30;;22696:33;22724:4;22716:6;22696:33;:::i;:::-;22606:129;;;:::o;22741:75::-;22774:6;22807:2;22801:9;22791:19;;22741:75;:::o;22822:307::-;22883:4;22973:18;22965:6;22962:30;22959:56;;;22995:18;;:::i;:::-;22959:56;23033:29;23055:6;23033:29;:::i;:::-;23025:37;;23117:4;23111;23107:15;23099:23;;22822:307;;;:::o;23135:132::-;23202:4;23225:3;23217:11;;23255:4;23250:3;23246:14;23238:22;;23135:132;;;:::o;23273:114::-;23340:6;23374:5;23368:12;23358:22;;23273:114;;;:::o;23393:98::-;23444:6;23478:5;23472:12;23462:22;;23393:98;;;:::o;23497:99::-;23549:6;23583:5;23577:12;23567:22;;23497:99;;;:::o;23602:113::-;23672:4;23704;23699:3;23695:14;23687:22;;23602:113;;;:::o;23721:184::-;23820:11;23854:6;23849:3;23842:19;23894:4;23889:3;23885:14;23870:29;;23721:184;;;;:::o;23911:168::-;23994:11;24028:6;24023:3;24016:19;24068:4;24063:3;24059:14;24044:29;;23911:168;;;;:::o;24085:169::-;24169:11;24203:6;24198:3;24191:19;24243:4;24238:3;24234:14;24219:29;;24085:169;;;;:::o;24260:305::-;24300:3;24319:20;24337:1;24319:20;:::i;:::-;24314:25;;24353:20;24371:1;24353:20;:::i;:::-;24348:25;;24507:1;24439:66;24435:74;24432:1;24429:81;24426:107;;;24513:18;;:::i;:::-;24426:107;24557:1;24554;24550:9;24543:16;;24260:305;;;;:::o;24571:191::-;24611:4;24631:20;24649:1;24631:20;:::i;:::-;24626:25;;24665:20;24683:1;24665:20;:::i;:::-;24660:25;;24704:1;24701;24698:8;24695:34;;;24709:18;;:::i;:::-;24695:34;24754:1;24751;24747:9;24739:17;;24571:191;;;;:::o;24768:96::-;24805:7;24834:24;24852:5;24834:24;:::i;:::-;24823:35;;24768:96;;;:::o;24870:90::-;24904:7;24947:5;24940:13;24933:21;24922:32;;24870:90;;;:::o;24966:77::-;25003:7;25032:5;25021:16;;24966:77;;;:::o;25049:126::-;25086:7;25126:42;25119:5;25115:54;25104:65;;25049:126;;;:::o;25181:77::-;25218:7;25247:5;25236:16;;25181:77;;;:::o;25264:86::-;25299:7;25339:4;25332:5;25328:16;25317:27;;25264:86;;;:::o;25356:154::-;25440:6;25435:3;25430;25417:30;25502:1;25493:6;25488:3;25484:16;25477:27;25356:154;;;:::o;25516:307::-;25584:1;25594:113;25608:6;25605:1;25602:13;25594:113;;;25693:1;25688:3;25684:11;25678:18;25674:1;25669:3;25665:11;25658:39;25630:2;25627:1;25623:10;25618:15;;25594:113;;;25725:6;25722:1;25719:13;25716:101;;;25805:1;25796:6;25791:3;25787:16;25780:27;25716:101;25565:258;25516:307;;;:::o;25829:320::-;25873:6;25910:1;25904:4;25900:12;25890:22;;25957:1;25951:4;25947:12;25978:18;25968:81;;26034:4;26026:6;26022:17;26012:27;;25968:81;26096:2;26088:6;26085:14;26065:18;26062:38;26059:84;;;26115:18;;:::i;:::-;26059:84;25880:269;25829:320;;;:::o;26155:281::-;26238:27;26260:4;26238:27;:::i;:::-;26230:6;26226:40;26368:6;26356:10;26353:22;26332:18;26320:10;26317:34;26314:62;26311:88;;;26379:18;;:::i;:::-;26311:88;26419:10;26415:2;26408:22;26198:238;26155:281;;:::o;26442:180::-;26490:77;26487:1;26480:88;26587:4;26584:1;26577:15;26611:4;26608:1;26601:15;26628:180;26676:77;26673:1;26666:88;26773:4;26770:1;26763:15;26797:4;26794:1;26787:15;26814:180;26862:77;26859:1;26852:88;26959:4;26956:1;26949:15;26983:4;26980:1;26973:15;27000:117;27109:1;27106;27099:12;27123:117;27232:1;27229;27222:12;27246:117;27355:1;27352;27345:12;27369:117;27478:1;27475;27468:12;27492:102;27533:6;27584:2;27580:7;27575:2;27568:5;27564:14;27560:28;27550:38;;27492:102;;;:::o;27600:224::-;27740:34;27736:1;27728:6;27724:14;27717:58;27809:7;27804:2;27796:6;27792:15;27785:32;27600:224;:::o;27830:226::-;27970:34;27966:1;27958:6;27954:14;27947:58;28039:9;28034:2;28026:6;28022:15;28015:34;27830:226;:::o;28062:221::-;28202:34;28198:1;28190:6;28186:14;28179:58;28271:4;28266:2;28258:6;28254:15;28247:29;28062:221;:::o;28289:180::-;28429:32;28425:1;28417:6;28413:14;28406:56;28289:180;:::o;28475:223::-;28615:34;28611:1;28603:6;28599:14;28592:58;28684:6;28679:2;28671:6;28667:15;28660:31;28475:223;:::o;28704:220::-;28844:34;28840:1;28832:6;28828:14;28821:58;28913:3;28908:2;28900:6;28896:15;28889:28;28704:220;:::o;28930:301::-;29070:34;29066:1;29058:6;29054:14;29047:58;29139:34;29134:2;29126:6;29122:15;29115:59;29208:15;29203:2;29195:6;29191:15;29184:40;28930:301;:::o;29237:223::-;29377:34;29373:1;29365:6;29361:14;29354:58;29446:6;29441:2;29433:6;29429:15;29422:31;29237:223;:::o;29466:231::-;29606:34;29602:1;29594:6;29590:14;29583:58;29675:14;29670:2;29662:6;29658:15;29651:39;29466:231;:::o;29703:225::-;29843:34;29839:1;29831:6;29827:14;29820:58;29912:8;29907:2;29899:6;29895:15;29888:33;29703:225;:::o;29934:222::-;30074:34;30070:1;30062:6;30058:14;30051:58;30143:5;30138:2;30130:6;30126:15;30119:30;29934:222;:::o;30162:::-;30302:34;30298:1;30290:6;30286:14;30279:58;30371:5;30366:2;30358:6;30354:15;30347:30;30162:222;:::o;30390:122::-;30463:24;30481:5;30463:24;:::i;:::-;30456:5;30453:35;30443:63;;30502:1;30499;30492:12;30443:63;30390:122;:::o;30518:::-;30591:24;30609:5;30591:24;:::i;:::-;30584:5;30581:35;30571:63;;30630:1;30627;30620:12;30571:63;30518:122;:::o

Swarm Source

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