ETH Price: $2,677.79 (-2.18%)

Token

MoonDoge (MDOGE)
 

Overview

Max Total Supply

478 MDOGE

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
lucilfer.eth
0x09c624d5271a1f7e6a2588e778a4d48bb90a6952
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:
MoonDoge

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-31
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

    /**
     * @dev 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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

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

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

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

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

contract MoonDoge is ERC1155, Ownable {
    using Strings for string;
    using SafeMath for uint256;
    
    uint256 private _currentTokenID = 0;
    mapping (address => bool) public allowedMinters;
    mapping (uint256 => uint256) public tokenSupply;
    mapping (uint256 => bytes2) public tokenTraits;
    mapping (bytes2 => uint256) public tokenIdByTraits;
    
    mapping (uint256 => bool) public tokenExists;
    
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;
    
    
    constructor(
        string memory _baseURI
    ) ERC1155(_baseURI) {
        name = "MoonDoge";
        symbol = "MDOGE";
    }
    
    function uri(
        uint256 _id
    ) public view override returns (string memory) {
        return string(abi.encodePacked(
            ERC1155.uri(0),
            Strings.toString(_id)
        ));
    }
    
    /**
    * @dev Returns the total quantity for a token ID
    * @param _id uint256 ID of the token to query
    * @return amount of token in existence
    */
    function totalSupply(
        uint256 _id
    ) public view returns (uint256) {
        return tokenSupply[_id];
    }
    
    /**
    * @dev Will update the base URL of token's URI
    * @param _newURI New base URL of token's URI
    */
    function setURI(
        string memory _newURI
    ) public onlyOwner {
        _setURI(_newURI);
    }
    
    function setAllowedMinter(
        address _minter, bool _newState
    ) public onlyOwner {
        allowedMinters[_minter] = _newState;
    }
    
    
    /**
    * @dev Creates a new token type and assigns _initialSupply to an address
    * NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs)
    * @param _initialOwner address of the first owner of the token
    * @param _data Data to pass if receiver is contract
    * @param _encodedTraits bytes-encoded token trait data
    * @return The newly created token ID
    */
    function create(
        address _initialOwner,
        bytes calldata _data,
        bytes2 _encodedTraits
    ) external onlyOwner returns (uint256) {
        
        uint256 _id = _getNextTokenID();
        _incrementTokenTypeId();
        
        _mint(_initialOwner, _id, 0, _data);
        tokenExists[_id] = true;
        
        tokenTraits[_id] = _encodedTraits;
        tokenIdByTraits[_encodedTraits] = _id;
        
        return _id;
    }
    
    /**
    * @dev Creates a new token type and assigns _initialSupply to an address
    * NOTE: remove onlyOwner if you want third parties to create new tokens on your contract (which may change your IDs)
    * @param _initialOwner address of the first owner of the token
    * @param _data Data to pass if receiver is contract
    * @param _encodedTraits bytes-encoded token trait data
    */
    function batchCreate(
        address _initialOwner,
        bytes calldata _data,
        bytes2[] memory _encodedTraits
    ) external onlyOwner {
        
        for (uint256 i = 0; i < _encodedTraits.length; i++) {
            uint256 _id = _getNextTokenID();
            _incrementTokenTypeId();
            
            _mint(_initialOwner, _id, 0, _data);
            tokenExists[_id] = true;
            
            tokenTraits[_id] = _encodedTraits[i];
            tokenIdByTraits[_encodedTraits[i]] = _id;
        }
    }
    
    function updateEncodedTraits(uint256 _tokenId, bytes2 _newTraits) onlyOwner public {
        bytes2 oldTraits = tokenTraits[_tokenId];
        tokenTraits[_tokenId] = _newTraits;
        tokenIdByTraits[_newTraits] = _tokenId;
        tokenIdByTraits[oldTraits] = 0;
    }
    
    /**
    * @dev Mints some amount of tokens to an address
    * @param _to          Address of the future owner of the token
    * @param _id          Token ID to mint
    * @param _quantity    Amount of tokens to mint
    * @param _data        Data to pass if receiver is contract
    */
    function mint(
        address _to,
        uint256 _id,
        uint256 _quantity,
        bytes memory _data
    ) public {
        require(allowedMinters[msg.sender] == true, "You are not an allowed minter");
        _mint(_to, _id, _quantity, _data);
        tokenSupply[_id] = tokenSupply[_id].add(_quantity);
    }
    
    /**
    * @dev Mint tokens for each id in _ids
    * @param _to          The address to mint tokens to
    * @param _ids         Array of ids to mint
    * @param _quantities  Array of amounts of tokens to mint per id
    * @param _data        Data to pass if receiver is contract
    */
    function batchMint(
        address _to,
        uint256[] memory _ids,
        uint256[] memory _quantities,
        bytes memory _data
    ) public {
        require(allowedMinters[msg.sender] == true, "You are not an allowed minter");
        for (uint256 i = 0; i < _ids.length; i++) {
            uint256 _id = _ids[i];
            uint256 quantity = _quantities[i];
            tokenSupply[_id] = tokenSupply[_id].add(quantity);
        }
        _mintBatch(_to, _ids, _quantities, _data);
    }
    
    /**
    * @dev calculates the next token ID based on value of _currentTokenID
    * @return uint256 for the next token ID
    */
    function _getNextTokenID() private view returns (uint256) {
        return _currentTokenID.add(1);
    }
    
    /**
    * @dev increments the value of _currentTokenID
    */
    function _incrementTokenTypeId() private  {
        _currentTokenID++;
    }
    
    
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","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":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"bytes2[]","name":"_encodedTraits","type":"bytes2[]"}],"name":"batchCreate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_quantities","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_initialOwner","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"},{"internalType":"bytes2","name":"_encodedTraits","type":"bytes2"}],"name":"create","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setAllowedMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes2","name":"","type":"bytes2"}],"name":"tokenIdByTraits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenTraits","outputs":[{"internalType":"bytes2","name":"","type":"bytes2"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes2","name":"_newTraits","type":"bytes2"}],"name":"updateEncodedTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260006004553480156200001657600080fd5b50604051620053fc380380620053fc83398181016040528101906200003c91906200031e565b806200004e816200011260201b60201c565b506200006f620000636200012e60201b60201c565b6200013660201b60201c565b6040518060400160405280600881526020017f4d6f6f6e446f6765000000000000000000000000000000000000000000000000815250600a9080519060200190620000bc929190620001fc565b506040518060400160405280600581526020017f4d444f4745000000000000000000000000000000000000000000000000000000815250600b90805190602001906200010a929190620001fc565b5050620004d3565b80600290805190602001906200012a929190620001fc565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020a90620003f8565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b6000620002c3620002bd846200038c565b62000363565b905082815260208101848484011115620002dc57600080fd5b620002e9848285620003c2565b509392505050565b600082601f8301126200030357600080fd5b815162000315848260208601620002ac565b91505092915050565b6000602082840312156200033157600080fd5b600082015167ffffffffffffffff8111156200034c57600080fd5b6200035a84828501620002f1565b91505092915050565b60006200036f62000382565b90506200037d82826200042e565b919050565b6000604051905090565b600067ffffffffffffffff821115620003aa57620003a962000493565b5b620003b582620004c2565b9050602081019050919050565b60005b83811015620003e2578082015181840152602081019050620003c5565b83811115620003f2576000848401525b50505050565b600060028204905060018216806200041157607f821691505b6020821081141562000428576200042762000464565b5b50919050565b6200043982620004c2565b810181811067ffffffffffffffff821117156200045b576200045a62000493565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614f1980620004e36000396000f3fe608060405234801561001057600080fd5b50600436106101c25760003560e01c80636b20c454116100f9578063b48ab8b611610097578063e985e9c511610071578063e985e9c514610537578063f242432a14610567578063f2fde38b14610583578063f5298aca1461059f576101c2565b8063b48ab8b6146104bb578063bd85b039146104d7578063e05c57bf14610507576101c2565b80638da5cb5b116100d35780638da5cb5b1461043357806395d89b4114610451578063a22cb4651461046f578063ab948a531461048b576101c2565b80636b20c454146103f1578063715018a61461040d578063731133e914610417576101c2565b80632693ebf211610166578063423afa6611610140578063423afa66146103595780634e1273f4146103895780635b9a993d146103b95780636af9c205146103d5576101c2565b80632693ebf2146102f15780632eb2c2d6146103215780633de60e131461033d576101c2565b806302fe5305116101a257806302fe53051461025757806306fdde03146102735780630a6e324e146102915780630e89341c146102c1576101c2565b8062923f9e146101c7578062fdd58e146101f757806301ffc9a714610227575b600080fd5b6101e160048036038101906101dc9190613c4a565b6105bb565b6040516101ee919061419d565b60405180910390f35b610211600480360381019061020c9190613a1c565b6105db565b60405161021e91906143f5565b60405180910390f35b610241600480360381019061023c9190613bb7565b6106a4565b60405161024e919061419d565b60405180910390f35b610271600480360381019061026c9190613c09565b610786565b005b61027b61080e565b60405161028891906141d3565b60405180910390f35b6102ab60048036038101906102a691906139b0565b61089c565b6040516102b891906143f5565b60405180910390f35b6102db60048036038101906102d69190613c4a565b610a3e565b6040516102e891906141d3565b60405180910390f35b61030b60048036038101906103069190613c4a565b610a7a565b60405161031891906143f5565b60405180910390f35b61033b60048036038101906103369190613678565b610a92565b005b61035760048036038101906103529190613c73565b610b33565b005b610373600480360381019061036e9190613613565b610cbb565b604051610380919061419d565b60405180910390f35b6103a3600480360381019061039e9190613b22565b610cdb565b6040516103b09190614144565b60405180910390f35b6103d360048036038101906103ce919061392c565b610e8c565b005b6103ef60048036038101906103ea91906138f0565b6110c7565b005b61040b600480360381019061040691906137c6565b61119e565b005b61041561123b565b005b610431600480360381019061042c9190613aa7565b6112c3565b005b61043b6113a5565b6040516104489190614067565b60405180910390f35b6104596113cf565b60405161046691906141d3565b60405180910390f35b610489600480360381019061048491906138f0565b61145d565b005b6104a560048036038101906104a09190613b8e565b6115de565b6040516104b291906143f5565b60405180910390f35b6104d560048036038101906104d09190613845565b6115f6565b005b6104f160048036038101906104ec9190613c4a565b611784565b6040516104fe91906143f5565b60405180910390f35b610521600480360381019061051c9190613c4a565b6117a1565b60405161052e91906141b8565b60405180910390f35b610551600480360381019061054c919061363c565b6117c1565b60405161055e919061419d565b60405180910390f35b610581600480360381019061057c9190613737565b611855565b005b61059d60048036038101906105989190613613565b6118f6565b005b6105b960048036038101906105b49190613a58565b6119ee565b005b60096020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390614255565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f575061077e82611a8b565b5b9050919050565b61078e611af5565b73ffffffffffffffffffffffffffffffffffffffff166107ac6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990614355565b60405180910390fd5b61080b81611afd565b50565b600a805461081b9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546108479061475d565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b505050505081565b60006108a6611af5565b73ffffffffffffffffffffffffffffffffffffffff166108c46113a5565b73ffffffffffffffffffffffffffffffffffffffff161461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190614355565b60405180910390fd5b6000610924611b17565b905061092e611b34565b61097f8682600088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b4e565b60016009600083815260200190815260200160002060006101000a81548160ff021916908315150217905550826007600083815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508060086000857dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208190555080915050949350505050565b6060610a4a6000611ce4565b610a5383611d78565b604051602001610a64929190614043565b6040516020818303038152906040529050919050565b60066020528060005260406000206000915090505481565b610a9a611af5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ae05750610adf85610ada611af5565b6117c1565b5b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906142f5565b60405180910390fd5b610b2c8585858585611f25565b5050505050565b610b3b611af5565b73ffffffffffffffffffffffffffffffffffffffff16610b596113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614355565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900460f01b9050816007600085815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508260086000847dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002081905550600060086000837dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002081905550505050565b60056020528060005260406000206000915054906101000a900460ff1681565b60608151835114610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614395565b60405180910390fd5b6000835167ffffffffffffffff811115610d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d925781602001602082028036833780820191505090505b50905060005b8451811015610e8157610e2b858281518110610ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105db565b828281518110610e64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7a906147c0565b9050610d98565b508091505092915050565b610e94611af5565b73ffffffffffffffffffffffffffffffffffffffff16610eb26113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff90614355565b60405180910390fd5b60005b81518110156110c0576000610f1e611b17565b9050610f28611b34565b610f798682600088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b4e565b60016009600083815260200190815260200160002060006101000a81548160ff021916908315150217905550828281518110610fde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007600083815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508060086000858581518110611050577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101517dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020819055505080806110b8906147c0565b915050610f0b565b5050505050565b6110cf611af5565b73ffffffffffffffffffffffffffffffffffffffff166110ed6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614355565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111a6611af5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111ec57506111eb836111e6611af5565b6117c1565b5b61122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906142b5565b60405180910390fd5b611236838383612285565b505050565b611243611af5565b73ffffffffffffffffffffffffffffffffffffffff166112616113a5565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614355565b60405180910390fd5b6112c16000612582565b565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90614235565b60405180910390fd5b61136284848484611b4e565b61138882600660008681526020019081526020016000205461264890919063ffffffff16565b600660008581526020019081526020016000208190555050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b80546113dc9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546114089061475d565b80156114555780601f1061142a57610100808354040283529160200191611455565b820191906000526020600020905b81548152906001019060200180831161143857829003601f168201915b505050505081565b8173ffffffffffffffffffffffffffffffffffffffff1661147c611af5565b73ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614375565b60405180910390fd5b80600160006114e0611af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158d611af5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d2919061419d565b60405180910390a35050565b60086020528060005260406000206000915090505481565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090614235565b60405180910390fd5b60005b83518110156117715760008482815181106116d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611715577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905061174581600660008581526020019081526020016000205461264890919063ffffffff16565b600660008481526020019081526020016000208190555050508080611769906147c0565b91505061168c565b5061177e8484848461265e565b50505050565b600060066000838152602001908152602001600020549050919050565b60076020528060005260406000206000915054906101000a900460f01b81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185d611af5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806118a357506118a28561189d611af5565b6117c1565b5b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906142b5565b60405180910390fd5b6118ef85858585856128c8565b5050505050565b6118fe611af5565b73ffffffffffffffffffffffffffffffffffffffff1661191c6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614275565b60405180910390fd5b6119eb81612582565b50565b6119f6611af5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611a3c5750611a3b83611a36611af5565b6117c1565b5b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906142b5565b60405180910390fd5b611a86838383612b4a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611b13929190613216565b5050565b6000611b2f600160045461264890919063ffffffff16565b905090565b60046000815480929190611b47906147c0565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906143d5565b60405180910390fd5b6000611bc8611af5565b9050611be981600087611bda88612d67565b611be388612d67565b87612e2d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4891906145c0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611cc6929190614410565b60405180910390a4611cdd81600087878787612e35565b5050505050565b606060028054611cf39061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1f9061475d565b8015611d6c5780601f10611d4157610100808354040283529160200191611d6c565b820191906000526020600020905b815481529060010190602001808311611d4f57829003601f168201915b50505050509050919050565b60606000821415611dc0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f20565b600082905060005b60008214611df2578080611ddb906147c0565b915050600a82611deb9190614616565b9150611dc8565b60008167ffffffffffffffff811115611e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e665781602001600182028036833780820191505090505b5090505b60008514611f1957600182611e7f9190614647565b9150600a85611e8e9190614809565b6030611e9a91906145c0565b60f81b818381518110611ed6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f129190614616565b9450611e6a565b8093505050505b919050565b8151835114611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906143b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906142d5565b60405180910390fd5b6000611fe3611af5565b9050611ff3818787878787612e2d565b60005b84518110156121f057600085828151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790614335565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d591906145c0565b92505081905550505050806121e9906147c0565b9050611ff6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612267929190614166565b60405180910390a461227d81878787878761301c565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90614315565b60405180910390fd5b8051825114612339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612330906143b5565b60405180910390fd5b6000612343611af5565b905061236381856000868660405180602001604052806000815250612e2d565b60005b83518110156124fc5760008482815181106123aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106123ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790614295565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806124f4906147c0565b915050612366565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612574929190614166565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361265691906145c0565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c5906143d5565b60405180910390fd5b8151835114612712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612709906143b5565b60405180910390fd5b600061271c611af5565b905061272d81600087878787612e2d565b60005b845181101561283257838181518110612772577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808784815181106127b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281891906145c0565b92505081905550808061282a906147c0565b915050612730565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128aa929190614166565b60405180910390a46128c18160008787878761301c565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f906142d5565b60405180910390fd5b6000612942611af5565b905061296281878761295388612d67565b61295c88612d67565b87612e2d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090614335565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae91906145c0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b2b929190614410565b60405180910390a4612b41828888888888612e35565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb190614315565b60405180910390fd5b6000612bc4611af5565b9050612bf481856000612bd687612d67565b612bdf87612d67565b60405180602001604052806000815250612e2d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8290614295565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612d58929190614410565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612dda5781602001602082028036833780820191505090505b5090508281600081518110612e18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b612e548473ffffffffffffffffffffffffffffffffffffffff16613203565b15613014578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e9a9594939291906140ea565b602060405180830381600087803b158015612eb457600080fd5b505af1925050508015612ee557506040513d601f19601f82011682018060405250810190612ee29190613be0565b60015b612f8b57612ef16148f6565b806308c379a01415612f4e5750612f06614dda565b80612f115750612f50565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4591906141d3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f82906141f5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300990614215565b60405180910390fd5b505b505050505050565b61303b8473ffffffffffffffffffffffffffffffffffffffff16613203565b156131fb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613081959493929190614082565b602060405180830381600087803b15801561309b57600080fd5b505af19250505080156130cc57506040513d601f19601f820116820180604052508101906130c99190613be0565b60015b613172576130d86148f6565b806308c379a0141561313557506130ed614dda565b806130f85750613137565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c91906141d3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613169906141f5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090614215565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546132229061475d565b90600052602060002090601f016020900481019282613244576000855561328b565b82601f1061325d57805160ff191683800117855561328b565b8280016001018555821561328b579182015b8281111561328a57825182559160200191906001019061326f565b5b509050613298919061329c565b5090565b5b808211156132b557600081600090555060010161329d565b5090565b60006132cc6132c78461445e565b614439565b905080838252602082019050828560208602820111156132eb57600080fd5b60005b8581101561331b57816133018882613479565b8452602084019350602083019250506001810190506132ee565b5050509392505050565b60006133386133338461448a565b614439565b9050808382526020820190508285602086028201111561335757600080fd5b60005b85811015613387578161336d8882613521565b84526020840193506020830192505060018101905061335a565b5050509392505050565b60006133a461339f846144b6565b614439565b905080838252602082019050828560208602820111156133c357600080fd5b60005b858110156133f357816133d988826135fe565b8452602084019350602083019250506001810190506133c6565b5050509392505050565b600061341061340b846144e2565b614439565b90508281526020810184848401111561342857600080fd5b61343384828561471b565b509392505050565b600061344e61344984614513565b614439565b90508281526020810184848401111561346657600080fd5b61347184828561471b565b509392505050565b60008135905061348881614e70565b92915050565b600082601f83011261349f57600080fd5b81356134af8482602086016132b9565b91505092915050565b600082601f8301126134c957600080fd5b81356134d9848260208601613325565b91505092915050565b600082601f8301126134f357600080fd5b8135613503848260208601613391565b91505092915050565b60008135905061351b81614e87565b92915050565b60008135905061353081614e9e565b92915050565b60008135905061354581614eb5565b92915050565b60008151905061355a81614eb5565b92915050565b60008083601f84011261357257600080fd5b8235905067ffffffffffffffff81111561358b57600080fd5b6020830191508360018202830111156135a357600080fd5b9250929050565b600082601f8301126135bb57600080fd5b81356135cb8482602086016133fd565b91505092915050565b600082601f8301126135e557600080fd5b81356135f584826020860161343b565b91505092915050565b60008135905061360d81614ecc565b92915050565b60006020828403121561362557600080fd5b600061363384828501613479565b91505092915050565b6000806040838503121561364f57600080fd5b600061365d85828601613479565b925050602061366e85828601613479565b9150509250929050565b600080600080600060a0868803121561369057600080fd5b600061369e88828901613479565b95505060206136af88828901613479565b945050604086013567ffffffffffffffff8111156136cc57600080fd5b6136d8888289016134e2565b935050606086013567ffffffffffffffff8111156136f557600080fd5b613701888289016134e2565b925050608086013567ffffffffffffffff81111561371e57600080fd5b61372a888289016135aa565b9150509295509295909350565b600080600080600060a0868803121561374f57600080fd5b600061375d88828901613479565b955050602061376e88828901613479565b945050604061377f888289016135fe565b9350506060613790888289016135fe565b925050608086013567ffffffffffffffff8111156137ad57600080fd5b6137b9888289016135aa565b9150509295509295909350565b6000806000606084860312156137db57600080fd5b60006137e986828701613479565b935050602084013567ffffffffffffffff81111561380657600080fd5b613812868287016134e2565b925050604084013567ffffffffffffffff81111561382f57600080fd5b61383b868287016134e2565b9150509250925092565b6000806000806080858703121561385b57600080fd5b600061386987828801613479565b945050602085013567ffffffffffffffff81111561388657600080fd5b613892878288016134e2565b935050604085013567ffffffffffffffff8111156138af57600080fd5b6138bb878288016134e2565b925050606085013567ffffffffffffffff8111156138d857600080fd5b6138e4878288016135aa565b91505092959194509250565b6000806040838503121561390357600080fd5b600061391185828601613479565b92505060206139228582860161350c565b9150509250929050565b6000806000806060858703121561394257600080fd5b600061395087828801613479565b945050602085013567ffffffffffffffff81111561396d57600080fd5b61397987828801613560565b9350935050604085013567ffffffffffffffff81111561399857600080fd5b6139a4878288016134b8565b91505092959194509250565b600080600080606085870312156139c657600080fd5b60006139d487828801613479565b945050602085013567ffffffffffffffff8111156139f157600080fd5b6139fd87828801613560565b93509350506040613a1087828801613521565b91505092959194509250565b60008060408385031215613a2f57600080fd5b6000613a3d85828601613479565b9250506020613a4e858286016135fe565b9150509250929050565b600080600060608486031215613a6d57600080fd5b6000613a7b86828701613479565b9350506020613a8c868287016135fe565b9250506040613a9d868287016135fe565b9150509250925092565b60008060008060808587031215613abd57600080fd5b6000613acb87828801613479565b9450506020613adc878288016135fe565b9350506040613aed878288016135fe565b925050606085013567ffffffffffffffff811115613b0a57600080fd5b613b16878288016135aa565b91505092959194509250565b60008060408385031215613b3557600080fd5b600083013567ffffffffffffffff811115613b4f57600080fd5b613b5b8582860161348e565b925050602083013567ffffffffffffffff811115613b7857600080fd5b613b84858286016134e2565b9150509250929050565b600060208284031215613ba057600080fd5b6000613bae84828501613521565b91505092915050565b600060208284031215613bc957600080fd5b6000613bd784828501613536565b91505092915050565b600060208284031215613bf257600080fd5b6000613c008482850161354b565b91505092915050565b600060208284031215613c1b57600080fd5b600082013567ffffffffffffffff811115613c3557600080fd5b613c41848285016135d4565b91505092915050565b600060208284031215613c5c57600080fd5b6000613c6a848285016135fe565b91505092915050565b60008060408385031215613c8657600080fd5b6000613c94858286016135fe565b9250506020613ca585828601613521565b9150509250929050565b6000613cbb8383614025565b60208301905092915050565b613cd08161467b565b82525050565b6000613ce182614554565b613ceb8185614582565b9350613cf683614544565b8060005b83811015613d27578151613d0e8882613caf565b9750613d1983614575565b925050600181019050613cfa565b5085935050505092915050565b613d3d8161468d565b82525050565b613d4c81614699565b82525050565b6000613d5d8261455f565b613d678185614593565b9350613d7781856020860161472a565b613d8081614918565b840191505092915050565b6000613d968261456a565b613da081856145a4565b9350613db081856020860161472a565b613db981614918565b840191505092915050565b6000613dcf8261456a565b613dd981856145b5565b9350613de981856020860161472a565b80840191505092915050565b6000613e026034836145a4565b9150613e0d82614936565b604082019050919050565b6000613e256028836145a4565b9150613e3082614985565b604082019050919050565b6000613e48601d836145a4565b9150613e53826149d4565b602082019050919050565b6000613e6b602b836145a4565b9150613e76826149fd565b604082019050919050565b6000613e8e6026836145a4565b9150613e9982614a4c565b604082019050919050565b6000613eb16024836145a4565b9150613ebc82614a9b565b604082019050919050565b6000613ed46029836145a4565b9150613edf82614aea565b604082019050919050565b6000613ef76025836145a4565b9150613f0282614b39565b604082019050919050565b6000613f1a6032836145a4565b9150613f2582614b88565b604082019050919050565b6000613f3d6023836145a4565b9150613f4882614bd7565b604082019050919050565b6000613f60602a836145a4565b9150613f6b82614c26565b604082019050919050565b6000613f836020836145a4565b9150613f8e82614c75565b602082019050919050565b6000613fa66029836145a4565b9150613fb182614c9e565b604082019050919050565b6000613fc96029836145a4565b9150613fd482614ced565b604082019050919050565b6000613fec6028836145a4565b9150613ff782614d3c565b604082019050919050565b600061400f6021836145a4565b915061401a82614d8b565b604082019050919050565b61402e81614711565b82525050565b61403d81614711565b82525050565b600061404f8285613dc4565b915061405b8284613dc4565b91508190509392505050565b600060208201905061407c6000830184613cc7565b92915050565b600060a0820190506140976000830188613cc7565b6140a46020830187613cc7565b81810360408301526140b68186613cd6565b905081810360608301526140ca8185613cd6565b905081810360808301526140de8184613d52565b90509695505050505050565b600060a0820190506140ff6000830188613cc7565b61410c6020830187613cc7565b6141196040830186614034565b6141266060830185614034565b81810360808301526141388184613d52565b90509695505050505050565b6000602082019050818103600083015261415e8184613cd6565b905092915050565b600060408201905081810360008301526141808185613cd6565b905081810360208301526141948184613cd6565b90509392505050565b60006020820190506141b26000830184613d34565b92915050565b60006020820190506141cd6000830184613d43565b92915050565b600060208201905081810360008301526141ed8184613d8b565b905092915050565b6000602082019050818103600083015261420e81613df5565b9050919050565b6000602082019050818103600083015261422e81613e18565b9050919050565b6000602082019050818103600083015261424e81613e3b565b9050919050565b6000602082019050818103600083015261426e81613e5e565b9050919050565b6000602082019050818103600083015261428e81613e81565b9050919050565b600060208201905081810360008301526142ae81613ea4565b9050919050565b600060208201905081810360008301526142ce81613ec7565b9050919050565b600060208201905081810360008301526142ee81613eea565b9050919050565b6000602082019050818103600083015261430e81613f0d565b9050919050565b6000602082019050818103600083015261432e81613f30565b9050919050565b6000602082019050818103600083015261434e81613f53565b9050919050565b6000602082019050818103600083015261436e81613f76565b9050919050565b6000602082019050818103600083015261438e81613f99565b9050919050565b600060208201905081810360008301526143ae81613fbc565b9050919050565b600060208201905081810360008301526143ce81613fdf565b9050919050565b600060208201905081810360008301526143ee81614002565b9050919050565b600060208201905061440a6000830184614034565b92915050565b60006040820190506144256000830185614034565b6144326020830184614034565b9392505050565b6000614443614454565b905061444f828261478f565b919050565b6000604051905090565b600067ffffffffffffffff821115614479576144786148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144a5576144a46148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144d1576144d06148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144fd576144fc6148c7565b5b61450682614918565b9050602081019050919050565b600067ffffffffffffffff82111561452e5761452d6148c7565b5b61453782614918565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145cb82614711565b91506145d683614711565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561460b5761460a61483a565b5b828201905092915050565b600061462182614711565b915061462c83614711565b92508261463c5761463b614869565b5b828204905092915050565b600061465282614711565b915061465d83614711565b9250828210156146705761466f61483a565b5b828203905092915050565b6000614686826146f1565b9050919050565b60008115159050919050565b60007fffff00000000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561474857808201518184015260208101905061472d565b83811115614757576000848401525b50505050565b6000600282049050600182168061477557607f821691505b6020821081141561478957614788614898565b5b50919050565b61479882614918565b810181811067ffffffffffffffff821117156147b7576147b66148c7565b5b80604052505050565b60006147cb82614711565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147fe576147fd61483a565b5b600182019050919050565b600061481482614711565b915061481f83614711565b92508261482f5761482e614869565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149155760046000803e614912600051614929565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420616e20616c6c6f776564206d696e746572000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614dea57614e6d565b614df2614454565b60043d036004823e80513d602482011167ffffffffffffffff82111715614e1a575050614e6d565b808201805167ffffffffffffffff811115614e385750505050614e6d565b80602083010160043d038501811115614e55575050505050614e6d565b614e648260200185018661478f565b82955050505050505b90565b614e798161467b565b8114614e8457600080fd5b50565b614e908161468d565b8114614e9b57600080fd5b50565b614ea781614699565b8114614eb257600080fd5b50565b614ebe816146c5565b8114614ec957600080fd5b50565b614ed581614711565b8114614ee057600080fd5b5056fea2646970667358221220834658c69bd32e1e55f8dbda368830ca9e0ec8fe9bcb4f5de23a09fab2f4f2bb64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6170692e646f676572756e2e696f2f646f67652f00000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c25760003560e01c80636b20c454116100f9578063b48ab8b611610097578063e985e9c511610071578063e985e9c514610537578063f242432a14610567578063f2fde38b14610583578063f5298aca1461059f576101c2565b8063b48ab8b6146104bb578063bd85b039146104d7578063e05c57bf14610507576101c2565b80638da5cb5b116100d35780638da5cb5b1461043357806395d89b4114610451578063a22cb4651461046f578063ab948a531461048b576101c2565b80636b20c454146103f1578063715018a61461040d578063731133e914610417576101c2565b80632693ebf211610166578063423afa6611610140578063423afa66146103595780634e1273f4146103895780635b9a993d146103b95780636af9c205146103d5576101c2565b80632693ebf2146102f15780632eb2c2d6146103215780633de60e131461033d576101c2565b806302fe5305116101a257806302fe53051461025757806306fdde03146102735780630a6e324e146102915780630e89341c146102c1576101c2565b8062923f9e146101c7578062fdd58e146101f757806301ffc9a714610227575b600080fd5b6101e160048036038101906101dc9190613c4a565b6105bb565b6040516101ee919061419d565b60405180910390f35b610211600480360381019061020c9190613a1c565b6105db565b60405161021e91906143f5565b60405180910390f35b610241600480360381019061023c9190613bb7565b6106a4565b60405161024e919061419d565b60405180910390f35b610271600480360381019061026c9190613c09565b610786565b005b61027b61080e565b60405161028891906141d3565b60405180910390f35b6102ab60048036038101906102a691906139b0565b61089c565b6040516102b891906143f5565b60405180910390f35b6102db60048036038101906102d69190613c4a565b610a3e565b6040516102e891906141d3565b60405180910390f35b61030b60048036038101906103069190613c4a565b610a7a565b60405161031891906143f5565b60405180910390f35b61033b60048036038101906103369190613678565b610a92565b005b61035760048036038101906103529190613c73565b610b33565b005b610373600480360381019061036e9190613613565b610cbb565b604051610380919061419d565b60405180910390f35b6103a3600480360381019061039e9190613b22565b610cdb565b6040516103b09190614144565b60405180910390f35b6103d360048036038101906103ce919061392c565b610e8c565b005b6103ef60048036038101906103ea91906138f0565b6110c7565b005b61040b600480360381019061040691906137c6565b61119e565b005b61041561123b565b005b610431600480360381019061042c9190613aa7565b6112c3565b005b61043b6113a5565b6040516104489190614067565b60405180910390f35b6104596113cf565b60405161046691906141d3565b60405180910390f35b610489600480360381019061048491906138f0565b61145d565b005b6104a560048036038101906104a09190613b8e565b6115de565b6040516104b291906143f5565b60405180910390f35b6104d560048036038101906104d09190613845565b6115f6565b005b6104f160048036038101906104ec9190613c4a565b611784565b6040516104fe91906143f5565b60405180910390f35b610521600480360381019061051c9190613c4a565b6117a1565b60405161052e91906141b8565b60405180910390f35b610551600480360381019061054c919061363c565b6117c1565b60405161055e919061419d565b60405180910390f35b610581600480360381019061057c9190613737565b611855565b005b61059d60048036038101906105989190613613565b6118f6565b005b6105b960048036038101906105b49190613a58565b6119ee565b005b60096020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390614255565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076f57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061077f575061077e82611a8b565b5b9050919050565b61078e611af5565b73ffffffffffffffffffffffffffffffffffffffff166107ac6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f990614355565b60405180910390fd5b61080b81611afd565b50565b600a805461081b9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546108479061475d565b80156108945780601f1061086957610100808354040283529160200191610894565b820191906000526020600020905b81548152906001019060200180831161087757829003601f168201915b505050505081565b60006108a6611af5565b73ffffffffffffffffffffffffffffffffffffffff166108c46113a5565b73ffffffffffffffffffffffffffffffffffffffff161461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190614355565b60405180910390fd5b6000610924611b17565b905061092e611b34565b61097f8682600088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b4e565b60016009600083815260200190815260200160002060006101000a81548160ff021916908315150217905550826007600083815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508060086000857dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020016000208190555080915050949350505050565b6060610a4a6000611ce4565b610a5383611d78565b604051602001610a64929190614043565b6040516020818303038152906040529050919050565b60066020528060005260406000206000915090505481565b610a9a611af5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ae05750610adf85610ada611af5565b6117c1565b5b610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906142f5565b60405180910390fd5b610b2c8585858585611f25565b5050505050565b610b3b611af5565b73ffffffffffffffffffffffffffffffffffffffff16610b596113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690614355565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900460f01b9050816007600085815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508260086000847dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002081905550600060086000837dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002081905550505050565b60056020528060005260406000206000915054906101000a900460ff1681565b60608151835114610d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1890614395565b60405180910390fd5b6000835167ffffffffffffffff811115610d64577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d925781602001602082028036833780820191505090505b50905060005b8451811015610e8157610e2b858281518110610ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105db565b828281518110610e64577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610e7a906147c0565b9050610d98565b508091505092915050565b610e94611af5565b73ffffffffffffffffffffffffffffffffffffffff16610eb26113a5565b73ffffffffffffffffffffffffffffffffffffffff1614610f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eff90614355565b60405180910390fd5b60005b81518110156110c0576000610f1e611b17565b9050610f28611b34565b610f798682600088888080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611b4e565b60016009600083815260200190815260200160002060006101000a81548160ff021916908315150217905550828281518110610fde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516007600083815260200190815260200160002060006101000a81548161ffff021916908360f01c02179055508060086000858581518110611050577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101517dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168152602001908152602001600020819055505080806110b8906147c0565b915050610f0b565b5050505050565b6110cf611af5565b73ffffffffffffffffffffffffffffffffffffffff166110ed6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90614355565b60405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111a6611af5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806111ec57506111eb836111e6611af5565b6117c1565b5b61122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906142b5565b60405180910390fd5b611236838383612285565b505050565b611243611af5565b73ffffffffffffffffffffffffffffffffffffffff166112616113a5565b73ffffffffffffffffffffffffffffffffffffffff16146112b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ae90614355565b60405180910390fd5b6112c16000612582565b565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90614235565b60405180910390fd5b61136284848484611b4e565b61138882600660008681526020019081526020016000205461264890919063ffffffff16565b600660008581526020019081526020016000208190555050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b80546113dc9061475d565b80601f01602080910402602001604051908101604052809291908181526020018280546114089061475d565b80156114555780601f1061142a57610100808354040283529160200191611455565b820191906000526020600020905b81548152906001019060200180831161143857829003601f168201915b505050505081565b8173ffffffffffffffffffffffffffffffffffffffff1661147c611af5565b73ffffffffffffffffffffffffffffffffffffffff1614156114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614375565b60405180910390fd5b80600160006114e0611af5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158d611af5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d2919061419d565b60405180910390a35050565b60086020528060005260406000206000915090505481565b60011515600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090614235565b60405180910390fd5b60005b83518110156117715760008482815181106116d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611715577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905061174581600660008581526020019081526020016000205461264890919063ffffffff16565b600660008481526020019081526020016000208190555050508080611769906147c0565b91505061168c565b5061177e8484848461265e565b50505050565b600060066000838152602001908152602001600020549050919050565b60076020528060005260406000206000915054906101000a900460f01b81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185d611af5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806118a357506118a28561189d611af5565b6117c1565b5b6118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906142b5565b60405180910390fd5b6118ef85858585856128c8565b5050505050565b6118fe611af5565b73ffffffffffffffffffffffffffffffffffffffff1661191c6113a5565b73ffffffffffffffffffffffffffffffffffffffff1614611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990614355565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614275565b60405180910390fd5b6119eb81612582565b50565b6119f6611af5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611a3c5750611a3b83611a36611af5565b6117c1565b5b611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906142b5565b60405180910390fd5b611a86838383612b4a565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190611b13929190613216565b5050565b6000611b2f600160045461264890919063ffffffff16565b905090565b60046000815480929190611b47906147c0565b9190505550565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb5906143d5565b60405180910390fd5b6000611bc8611af5565b9050611be981600087611bda88612d67565b611be388612d67565b87612e2d565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c4891906145c0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611cc6929190614410565b60405180910390a4611cdd81600087878787612e35565b5050505050565b606060028054611cf39061475d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1f9061475d565b8015611d6c5780601f10611d4157610100808354040283529160200191611d6c565b820191906000526020600020905b815481529060010190602001808311611d4f57829003601f168201915b50505050509050919050565b60606000821415611dc0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f20565b600082905060005b60008214611df2578080611ddb906147c0565b915050600a82611deb9190614616565b9150611dc8565b60008167ffffffffffffffff811115611e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e665781602001600182028036833780820191505090505b5090505b60008514611f1957600182611e7f9190614647565b9150600a85611e8e9190614809565b6030611e9a91906145c0565b60f81b818381518110611ed6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f129190614616565b9450611e6a565b8093505050505b919050565b8151835114611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f60906143b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd0906142d5565b60405180910390fd5b6000611fe3611af5565b9050611ff3818787878787612e2d565b60005b84518110156121f057600085828151811061203a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061207f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790614335565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d591906145c0565b92505081905550505050806121e9906147c0565b9050611ff6565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612267929190614166565b60405180910390a461227d81878787878761301c565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90614315565b60405180910390fd5b8051825114612339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612330906143b5565b60405180910390fd5b6000612343611af5565b905061236381856000868660405180602001604052806000815250612e2d565b60005b83518110156124fc5760008482815181106123aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106123ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612490576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248790614295565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806124f4906147c0565b915050612366565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612574929190614166565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361265691906145c0565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c5906143d5565b60405180910390fd5b8151835114612712576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612709906143b5565b60405180910390fd5b600061271c611af5565b905061272d81600087878787612e2d565b60005b845181101561283257838181518110612772577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000808784815181106127b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281891906145c0565b92505081905550808061282a906147c0565b915050612730565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516128aa929190614166565b60405180910390a46128c18160008787878761301c565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292f906142d5565b60405180910390fd5b6000612942611af5565b905061296281878761295388612d67565b61295c88612d67565b87612e2d565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f090614335565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aae91906145c0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b2b929190614410565b60405180910390a4612b41828888888888612e35565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb190614315565b60405180910390fd5b6000612bc4611af5565b9050612bf481856000612bd687612d67565b612bdf87612d67565b60405180602001604052806000815250612e2d565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8290614295565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612d58929190614410565b60405180910390a45050505050565b60606000600167ffffffffffffffff811115612dac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612dda5781602001602082028036833780820191505090505b5090508281600081518110612e18577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b505050505050565b612e548473ffffffffffffffffffffffffffffffffffffffff16613203565b15613014578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612e9a9594939291906140ea565b602060405180830381600087803b158015612eb457600080fd5b505af1925050508015612ee557506040513d601f19601f82011682018060405250810190612ee29190613be0565b60015b612f8b57612ef16148f6565b806308c379a01415612f4e5750612f06614dda565b80612f115750612f50565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4591906141d3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f82906141f5565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300990614215565b60405180910390fd5b505b505050505050565b61303b8473ffffffffffffffffffffffffffffffffffffffff16613203565b156131fb578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613081959493929190614082565b602060405180830381600087803b15801561309b57600080fd5b505af19250505080156130cc57506040513d601f19601f820116820180604052508101906130c99190613be0565b60015b613172576130d86148f6565b806308c379a0141561313557506130ed614dda565b806130f85750613137565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c91906141d3565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613169906141f5565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f090614215565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b8280546132229061475d565b90600052602060002090601f016020900481019282613244576000855561328b565b82601f1061325d57805160ff191683800117855561328b565b8280016001018555821561328b579182015b8281111561328a57825182559160200191906001019061326f565b5b509050613298919061329c565b5090565b5b808211156132b557600081600090555060010161329d565b5090565b60006132cc6132c78461445e565b614439565b905080838252602082019050828560208602820111156132eb57600080fd5b60005b8581101561331b57816133018882613479565b8452602084019350602083019250506001810190506132ee565b5050509392505050565b60006133386133338461448a565b614439565b9050808382526020820190508285602086028201111561335757600080fd5b60005b85811015613387578161336d8882613521565b84526020840193506020830192505060018101905061335a565b5050509392505050565b60006133a461339f846144b6565b614439565b905080838252602082019050828560208602820111156133c357600080fd5b60005b858110156133f357816133d988826135fe565b8452602084019350602083019250506001810190506133c6565b5050509392505050565b600061341061340b846144e2565b614439565b90508281526020810184848401111561342857600080fd5b61343384828561471b565b509392505050565b600061344e61344984614513565b614439565b90508281526020810184848401111561346657600080fd5b61347184828561471b565b509392505050565b60008135905061348881614e70565b92915050565b600082601f83011261349f57600080fd5b81356134af8482602086016132b9565b91505092915050565b600082601f8301126134c957600080fd5b81356134d9848260208601613325565b91505092915050565b600082601f8301126134f357600080fd5b8135613503848260208601613391565b91505092915050565b60008135905061351b81614e87565b92915050565b60008135905061353081614e9e565b92915050565b60008135905061354581614eb5565b92915050565b60008151905061355a81614eb5565b92915050565b60008083601f84011261357257600080fd5b8235905067ffffffffffffffff81111561358b57600080fd5b6020830191508360018202830111156135a357600080fd5b9250929050565b600082601f8301126135bb57600080fd5b81356135cb8482602086016133fd565b91505092915050565b600082601f8301126135e557600080fd5b81356135f584826020860161343b565b91505092915050565b60008135905061360d81614ecc565b92915050565b60006020828403121561362557600080fd5b600061363384828501613479565b91505092915050565b6000806040838503121561364f57600080fd5b600061365d85828601613479565b925050602061366e85828601613479565b9150509250929050565b600080600080600060a0868803121561369057600080fd5b600061369e88828901613479565b95505060206136af88828901613479565b945050604086013567ffffffffffffffff8111156136cc57600080fd5b6136d8888289016134e2565b935050606086013567ffffffffffffffff8111156136f557600080fd5b613701888289016134e2565b925050608086013567ffffffffffffffff81111561371e57600080fd5b61372a888289016135aa565b9150509295509295909350565b600080600080600060a0868803121561374f57600080fd5b600061375d88828901613479565b955050602061376e88828901613479565b945050604061377f888289016135fe565b9350506060613790888289016135fe565b925050608086013567ffffffffffffffff8111156137ad57600080fd5b6137b9888289016135aa565b9150509295509295909350565b6000806000606084860312156137db57600080fd5b60006137e986828701613479565b935050602084013567ffffffffffffffff81111561380657600080fd5b613812868287016134e2565b925050604084013567ffffffffffffffff81111561382f57600080fd5b61383b868287016134e2565b9150509250925092565b6000806000806080858703121561385b57600080fd5b600061386987828801613479565b945050602085013567ffffffffffffffff81111561388657600080fd5b613892878288016134e2565b935050604085013567ffffffffffffffff8111156138af57600080fd5b6138bb878288016134e2565b925050606085013567ffffffffffffffff8111156138d857600080fd5b6138e4878288016135aa565b91505092959194509250565b6000806040838503121561390357600080fd5b600061391185828601613479565b92505060206139228582860161350c565b9150509250929050565b6000806000806060858703121561394257600080fd5b600061395087828801613479565b945050602085013567ffffffffffffffff81111561396d57600080fd5b61397987828801613560565b9350935050604085013567ffffffffffffffff81111561399857600080fd5b6139a4878288016134b8565b91505092959194509250565b600080600080606085870312156139c657600080fd5b60006139d487828801613479565b945050602085013567ffffffffffffffff8111156139f157600080fd5b6139fd87828801613560565b93509350506040613a1087828801613521565b91505092959194509250565b60008060408385031215613a2f57600080fd5b6000613a3d85828601613479565b9250506020613a4e858286016135fe565b9150509250929050565b600080600060608486031215613a6d57600080fd5b6000613a7b86828701613479565b9350506020613a8c868287016135fe565b9250506040613a9d868287016135fe565b9150509250925092565b60008060008060808587031215613abd57600080fd5b6000613acb87828801613479565b9450506020613adc878288016135fe565b9350506040613aed878288016135fe565b925050606085013567ffffffffffffffff811115613b0a57600080fd5b613b16878288016135aa565b91505092959194509250565b60008060408385031215613b3557600080fd5b600083013567ffffffffffffffff811115613b4f57600080fd5b613b5b8582860161348e565b925050602083013567ffffffffffffffff811115613b7857600080fd5b613b84858286016134e2565b9150509250929050565b600060208284031215613ba057600080fd5b6000613bae84828501613521565b91505092915050565b600060208284031215613bc957600080fd5b6000613bd784828501613536565b91505092915050565b600060208284031215613bf257600080fd5b6000613c008482850161354b565b91505092915050565b600060208284031215613c1b57600080fd5b600082013567ffffffffffffffff811115613c3557600080fd5b613c41848285016135d4565b91505092915050565b600060208284031215613c5c57600080fd5b6000613c6a848285016135fe565b91505092915050565b60008060408385031215613c8657600080fd5b6000613c94858286016135fe565b9250506020613ca585828601613521565b9150509250929050565b6000613cbb8383614025565b60208301905092915050565b613cd08161467b565b82525050565b6000613ce182614554565b613ceb8185614582565b9350613cf683614544565b8060005b83811015613d27578151613d0e8882613caf565b9750613d1983614575565b925050600181019050613cfa565b5085935050505092915050565b613d3d8161468d565b82525050565b613d4c81614699565b82525050565b6000613d5d8261455f565b613d678185614593565b9350613d7781856020860161472a565b613d8081614918565b840191505092915050565b6000613d968261456a565b613da081856145a4565b9350613db081856020860161472a565b613db981614918565b840191505092915050565b6000613dcf8261456a565b613dd981856145b5565b9350613de981856020860161472a565b80840191505092915050565b6000613e026034836145a4565b9150613e0d82614936565b604082019050919050565b6000613e256028836145a4565b9150613e3082614985565b604082019050919050565b6000613e48601d836145a4565b9150613e53826149d4565b602082019050919050565b6000613e6b602b836145a4565b9150613e76826149fd565b604082019050919050565b6000613e8e6026836145a4565b9150613e9982614a4c565b604082019050919050565b6000613eb16024836145a4565b9150613ebc82614a9b565b604082019050919050565b6000613ed46029836145a4565b9150613edf82614aea565b604082019050919050565b6000613ef76025836145a4565b9150613f0282614b39565b604082019050919050565b6000613f1a6032836145a4565b9150613f2582614b88565b604082019050919050565b6000613f3d6023836145a4565b9150613f4882614bd7565b604082019050919050565b6000613f60602a836145a4565b9150613f6b82614c26565b604082019050919050565b6000613f836020836145a4565b9150613f8e82614c75565b602082019050919050565b6000613fa66029836145a4565b9150613fb182614c9e565b604082019050919050565b6000613fc96029836145a4565b9150613fd482614ced565b604082019050919050565b6000613fec6028836145a4565b9150613ff782614d3c565b604082019050919050565b600061400f6021836145a4565b915061401a82614d8b565b604082019050919050565b61402e81614711565b82525050565b61403d81614711565b82525050565b600061404f8285613dc4565b915061405b8284613dc4565b91508190509392505050565b600060208201905061407c6000830184613cc7565b92915050565b600060a0820190506140976000830188613cc7565b6140a46020830187613cc7565b81810360408301526140b68186613cd6565b905081810360608301526140ca8185613cd6565b905081810360808301526140de8184613d52565b90509695505050505050565b600060a0820190506140ff6000830188613cc7565b61410c6020830187613cc7565b6141196040830186614034565b6141266060830185614034565b81810360808301526141388184613d52565b90509695505050505050565b6000602082019050818103600083015261415e8184613cd6565b905092915050565b600060408201905081810360008301526141808185613cd6565b905081810360208301526141948184613cd6565b90509392505050565b60006020820190506141b26000830184613d34565b92915050565b60006020820190506141cd6000830184613d43565b92915050565b600060208201905081810360008301526141ed8184613d8b565b905092915050565b6000602082019050818103600083015261420e81613df5565b9050919050565b6000602082019050818103600083015261422e81613e18565b9050919050565b6000602082019050818103600083015261424e81613e3b565b9050919050565b6000602082019050818103600083015261426e81613e5e565b9050919050565b6000602082019050818103600083015261428e81613e81565b9050919050565b600060208201905081810360008301526142ae81613ea4565b9050919050565b600060208201905081810360008301526142ce81613ec7565b9050919050565b600060208201905081810360008301526142ee81613eea565b9050919050565b6000602082019050818103600083015261430e81613f0d565b9050919050565b6000602082019050818103600083015261432e81613f30565b9050919050565b6000602082019050818103600083015261434e81613f53565b9050919050565b6000602082019050818103600083015261436e81613f76565b9050919050565b6000602082019050818103600083015261438e81613f99565b9050919050565b600060208201905081810360008301526143ae81613fbc565b9050919050565b600060208201905081810360008301526143ce81613fdf565b9050919050565b600060208201905081810360008301526143ee81614002565b9050919050565b600060208201905061440a6000830184614034565b92915050565b60006040820190506144256000830185614034565b6144326020830184614034565b9392505050565b6000614443614454565b905061444f828261478f565b919050565b6000604051905090565b600067ffffffffffffffff821115614479576144786148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144a5576144a46148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144d1576144d06148c7565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144fd576144fc6148c7565b5b61450682614918565b9050602081019050919050565b600067ffffffffffffffff82111561452e5761452d6148c7565b5b61453782614918565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145cb82614711565b91506145d683614711565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561460b5761460a61483a565b5b828201905092915050565b600061462182614711565b915061462c83614711565b92508261463c5761463b614869565b5b828204905092915050565b600061465282614711565b915061465d83614711565b9250828210156146705761466f61483a565b5b828203905092915050565b6000614686826146f1565b9050919050565b60008115159050919050565b60007fffff00000000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561474857808201518184015260208101905061472d565b83811115614757576000848401525b50505050565b6000600282049050600182168061477557607f821691505b6020821081141561478957614788614898565b5b50919050565b61479882614918565b810181811067ffffffffffffffff821117156147b7576147b66148c7565b5b80604052505050565b60006147cb82614711565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147fe576147fd61483a565b5b600182019050919050565b600061481482614711565b915061481f83614711565b92508261482f5761482e614869565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156149155760046000803e614912600051614929565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420616e20616c6c6f776564206d696e746572000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614dea57614e6d565b614df2614454565b60043d036004823e80513d602482011167ffffffffffffffff82111715614e1a575050614e6d565b808201805167ffffffffffffffff811115614e385750505050614e6d565b80602083010160043d038501811115614e55575050505050614e6d565b614e648260200185018661478f565b82955050505050505b90565b614e798161467b565b8114614e8457600080fd5b50565b614e908161468d565b8114614e9b57600080fd5b50565b614ea781614699565b8114614eb257600080fd5b50565b614ebe816146c5565b8114614ec957600080fd5b50565b614ed581614711565b8114614ee057600080fd5b5056fea2646970667358221220834658c69bd32e1e55f8dbda368830ca9e0ec8fe9bcb4f5de23a09fab2f4f2bb64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6170692e646f676572756e2e696f2f646f67652f00000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://api.dogerun.io/doge/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [2] : 68747470733a2f2f6170692e646f676572756e2e696f2f646f67652f00000000


Deployed Bytecode Sourcemap

43388:6370:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43769:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21398:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20421:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44725:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43848:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45452:472;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44081:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43599:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23493:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46899:277;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43545:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21795:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46338:549;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44844:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49402:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2379:94;;;:::i;:::-;;47487:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1728:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43897:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22392:311;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43706:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48127:514;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44472:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43653:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22775:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23015:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2628:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49073:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43769:44;;;;;;;;;;;;;;;;;;;;;;:::o;21398:231::-;21484:7;21531:1;21512:21;;:7;:21;;;;21504:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;21599:9;:13;21609:2;21599:13;;;;;;;;;;;:22;21613:7;21599:22;;;;;;;;;;;;;;;;21592:29;;21398:231;;;;:::o;20421:310::-;20523:4;20575:26;20560:41;;;:11;:41;;;;:110;;;;20633:37;20618:52;;;:11;:52;;;;20560:110;:163;;;;20687:36;20711:11;20687:23;:36::i;:::-;20560:163;20540:183;;20421:310;;;:::o;44725:107::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44808:16:::1;44816:7;44808;:16::i;:::-;44725:107:::0;:::o;43848:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45452:472::-;45598:7;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45628:11:::1;45642:17;:15;:17::i;:::-;45628:31;;45670:23;:21;:23::i;:::-;45714:35;45720:13;45735:3;45740:1;45743:5;;45714:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:35::i;:::-;45779:4;45760:11;:16;45772:3;45760:16;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;45823:14;45804:11;:16;45816:3;45804:16;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;45882:3;45848:15;:31;45864:14;45848:31;;;;;;;;;;;;;;;;;:37;;;;45913:3;45906:10;;;45452:472:::0;;;;;;:::o;44081:213::-;44153:13;44224:14;44236:1;44224:11;:14::i;:::-;44253:21;44270:3;44253:16;:21::i;:::-;44193:92;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44179:107;;44081:213;;;:::o;43599:47::-;;;;;;;;;;;;;;;;;:::o;23493:442::-;23734:12;:10;:12::i;:::-;23726:20;;:4;:20;;;:60;;;;23750:36;23767:4;23773:12;:10;:12::i;:::-;23750:16;:36::i;:::-;23726:60;23704:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;23875:52;23898:4;23904:2;23908:3;23913:7;23922:4;23875:22;:52::i;:::-;23493:442;;;;;:::o;46899:277::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46993:16:::1;47012:11;:21;47024:8;47012:21;;;;;;;;;;;;;;;;;;;;;46993:40;;47068:10;47044:11;:21;47056:8;47044:21;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47119:8;47089:15;:27;47105:10;47089:27;;;;;;;;;;;;;;;;;:38;;;;47167:1;47138:15;:26;47154:9;47138:26;;;;;;;;;;;;;;;;;:30;;;;2019:1;46899:277:::0;;:::o;43545:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;21795:524::-;21951:16;22012:3;:10;21993:8;:15;:29;21985:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;22081:30;22128:8;:15;22114:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22081:63;;22162:9;22157:122;22181:8;:15;22177:1;:19;22157:122;;;22237:30;22247:8;22256:1;22247:11;;;;;;;;;;;;;;;;;;;;;;22260:3;22264:1;22260:6;;;;;;;;;;;;;;;;;;;;;;22237:9;:30::i;:::-;22218:13;22232:1;22218:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;22198:3;;;;:::i;:::-;;;22157:122;;;;22298:13;22291:20;;;21795:524;;;;:::o;46338:549::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46515:9:::1;46510:370;46534:14;:21;46530:1;:25;46510:370;;;46577:11;46591:17;:15;:17::i;:::-;46577:31;;46623:23;:21;:23::i;:::-;46675:35;46681:13;46696:3;46701:1;46704:5;;46675:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:35::i;:::-;46744:4;46725:11;:16;46737:3;46725:16;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;46796:14;46811:1;46796:17;;;;;;;;;;;;;;;;;;;;;;46777:11;:16;46789:3;46777:16;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;46865:3;46828:15;:34;46844:14;46859:1;46844:17;;;;;;;;;;;;;;;;;;;;;;46828:34;;;;;;;;;;;;;;;;;:40;;;;46510:370;46557:3;;;;;:::i;:::-;;;;46510:370;;;;46338:549:::0;;;;:::o;44844:146::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44973:9:::1;44947:14;:23;44962:7;44947:23;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;44844:146:::0;;:::o;49402:353::-;49578:12;:10;:12::i;:::-;49567:23;;:7;:23;;;:66;;;;49594:39;49611:7;49620:12;:10;:12::i;:::-;49594:16;:39::i;:::-;49567:66;49545:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;49715:32;49726:7;49735:3;49740:6;49715:10;:32::i;:::-;49402:353;;;:::o;2379:94::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2444:21:::1;2462:1;2444:9;:21::i;:::-;2379:94::o:0;47487:329::-;47665:4;47635:34;;:14;:26;47650:10;47635:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;47627:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47714:33;47720:3;47725;47730:9;47741:5;47714;:33::i;:::-;47777:31;47798:9;47777:11;:16;47789:3;47777:16;;;;;;;;;;;;:20;;:31;;;;:::i;:::-;47758:11;:16;47770:3;47758:16;;;;;;;;;;;:50;;;;47487:329;;;;:::o;1728:87::-;1774:7;1801:6;;;;;;;;;;;1794:13;;1728:87;:::o;43897:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22392:311::-;22511:8;22495:24;;:12;:10;:12::i;:::-;:24;;;;22487:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;22623:8;22578:18;:32;22597:12;:10;:12::i;:::-;22578:32;;;;;;;;;;;;;;;:42;22611:8;22578:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22676:8;22647:48;;22662:12;:10;:12::i;:::-;22647:48;;;22686:8;22647:48;;;;;;:::i;:::-;;;;;;;;22392:311;;:::o;43706:50::-;;;;;;;;;;;;;;;;;:::o;48127:514::-;48331:4;48301:34;;:14;:26;48316:10;48301:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;48293:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48385:9;48380:202;48404:4;:11;48400:1;:15;48380:202;;;48437:11;48451:4;48456:1;48451:7;;;;;;;;;;;;;;;;;;;;;;48437:21;;48473:16;48492:11;48504:1;48492:14;;;;;;;;;;;;;;;;;;;;;;48473:33;;48540:30;48561:8;48540:11;:16;48552:3;48540:16;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;48521:11;:16;48533:3;48521:16;;;;;;;;;;;:49;;;;48380:202;;48417:3;;;;;:::i;:::-;;;;48380:202;;;;48592:41;48603:3;48608:4;48614:11;48627:5;48592:10;:41::i;:::-;48127:514;;;;:::o;44472:122::-;44543:7;44570:11;:16;44582:3;44570:16;;;;;;;;;;;;44563:23;;44472:122;;;:::o;43653:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;22775:168::-;22874:4;22898:18;:27;22917:7;22898:27;;;;;;;;;;;;;;;:37;22926:8;22898:37;;;;;;;;;;;;;;;;;;;;;;;;;22891:44;;22775:168;;;;:::o;23015:401::-;23231:12;:10;:12::i;:::-;23223:20;;:4;:20;;;:60;;;;23247:36;23264:4;23270:12;:10;:12::i;:::-;23247:16;:36::i;:::-;23223:60;23201:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;23363:45;23381:4;23387:2;23391;23395:6;23403:4;23363:17;:45::i;:::-;23015:401;;;;;:::o;2628:192::-;1959:12;:10;:12::i;:::-;1948:23;;:7;:5;:7::i;:::-;:23;;;1940:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2737:1:::1;2717:22;;:8;:22;;;;2709:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2793:19;2803:8;2793:9;:19::i;:::-;2628:192:::0;:::o;49073:321::-;49224:12;:10;:12::i;:::-;49213:23;;:7;:23;;;:66;;;;49240:39;49257:7;49266:12;:10;:12::i;:::-;49240:16;:39::i;:::-;49213:66;49191:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;49361:25;49367:7;49376:2;49380:5;49361;:25::i;:::-;49073:321;;;:::o;19347:157::-;19432:4;19471:25;19456:40;;;:11;:40;;;;19449:47;;19347:157;;;:::o;604:98::-;657:7;684:10;677:17;;604:98;:::o;27495:88::-;27569:6;27562:4;:13;;;;;;;;;;;;:::i;:::-;;27495:88;:::o;48790:106::-;48839:7;48866:22;48886:1;48866:15;;:19;;:22;;;;:::i;:::-;48859:29;;48790:106;:::o;48977:78::-;49030:15;;:17;;;;;;;;;:::i;:::-;;;;;;48977:78::o;27984:599::-;28161:1;28142:21;;:7;:21;;;;28134:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28214:16;28233:12;:10;:12::i;:::-;28214:31;;28258:107;28279:8;28297:1;28301:7;28310:21;28328:2;28310:17;:21::i;:::-;28333:25;28351:6;28333:17;:25::i;:::-;28360:4;28258:20;:107::i;:::-;28404:6;28378:9;:13;28388:2;28378:13;;;;;;;;;;;:22;28392:7;28378:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;28463:7;28426:57;;28459:1;28426:57;;28441:8;28426:57;;;28472:2;28476:6;28426:57;;;;;;;:::i;:::-;;;;;;;;28496:79;28527:8;28545:1;28549:7;28558:2;28562:6;28570:4;28496:30;:79::i;:::-;27984:599;;;;;:::o;21142:105::-;21202:13;21235:4;21228:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21142:105;;;:::o;34918:723::-;34974:13;35204:1;35195:5;:10;35191:53;;;35222:10;;;;;;;;;;;;;;;;;;;;;35191:53;35254:12;35269:5;35254:20;;35285:14;35310:78;35325:1;35317:4;:9;35310:78;;35343:8;;;;;:::i;:::-;;;;35374:2;35366:10;;;;;:::i;:::-;;;35310:78;;;35398:19;35430:6;35420:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35398:39;;35448:154;35464:1;35455:5;:10;35448:154;;35492:1;35482:11;;;;;:::i;:::-;;;35559:2;35551:5;:10;;;;:::i;:::-;35538:2;:24;;;;:::i;:::-;35525:39;;35508:6;35515;35508:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;35588:2;35579:11;;;;;:::i;:::-;;;35448:154;;;35626:6;35612:21;;;;;34918:723;;;;:::o;25577:1074::-;25804:7;:14;25790:3;:10;:28;25782:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;25896:1;25882:16;;:2;:16;;;;25874:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25953:16;25972:12;:10;:12::i;:::-;25953:31;;25997:60;26018:8;26028:4;26034:2;26038:3;26043:7;26052:4;25997:20;:60::i;:::-;26075:9;26070:421;26094:3;:10;26090:1;:14;26070:421;;;26126:10;26139:3;26143:1;26139:6;;;;;;;;;;;;;;;;;;;;;;26126:19;;26160:14;26177:7;26185:1;26177:10;;;;;;;;;;;;;;;;;;;;;;26160:27;;26204:19;26226:9;:13;26236:2;26226:13;;;;;;;;;;;:19;26240:4;26226:19;;;;;;;;;;;;;;;;26204:41;;26283:6;26268:11;:21;;26260:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26416:6;26402:11;:20;26380:9;:13;26390:2;26380:13;;;;;;;;;;;:19;26394:4;26380:19;;;;;;;;;;;;;;;:42;;;;26473:6;26452:9;:13;26462:2;26452:13;;;;;;;;;;;:17;26466:2;26452:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26070:421;;;26106:3;;;;:::i;:::-;;;26070:421;;;;26538:2;26508:47;;26532:4;26508:47;;26522:8;26508:47;;;26542:3;26547:7;26508:47;;;;;;;:::i;:::-;;;;;;;;26568:75;26604:8;26614:4;26620:2;26624:3;26629:7;26638:4;26568:35;:75::i;:::-;25577:1074;;;;;;:::o;30811:918::-;30985:1;30966:21;;:7;:21;;;;30958:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;31060:7;:14;31046:3;:10;:28;31038:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31132:16;31151:12;:10;:12::i;:::-;31132:31;;31176:69;31197:8;31207:7;31224:1;31228:3;31233:7;31176:69;;;;;;;;;;;;:20;:69::i;:::-;31263:9;31258:388;31282:3;:10;31278:1;:14;31258:388;;;31314:10;31327:3;31331:1;31327:6;;;;;;;;;;;;;;;;;;;;;;31314:19;;31348:14;31365:7;31373:1;31365:10;;;;;;;;;;;;;;;;;;;;;;31348:27;;31392:22;31417:9;:13;31427:2;31417:13;;;;;;;;;;;:22;31431:7;31417:22;;;;;;;;;;;;;;;;31392:47;;31480:6;31462:14;:24;;31454:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31613:6;31596:14;:23;31571:9;:13;31581:2;31571:13;;;;;;;;;;;:22;31585:7;31571:22;;;;;;;;;;;;;;;:48;;;;31258:388;;;31294:3;;;;;:::i;:::-;;;;31258:388;;;;31704:1;31663:58;;31687:7;31663:58;;31677:8;31663:58;;;31708:3;31713:7;31663:58;;;;;;;:::i;:::-;;;;;;;;30811:918;;;;:::o;2828:173::-;2884:16;2903:6;;;;;;;;;;;2884:25;;2929:8;2920:6;;:17;;;;;;;;;;;;;;;;;;2984:8;2953:40;;2974:8;2953:40;;;;;;;;;;;;2828:173;;:::o;39223:98::-;39281:7;39312:1;39308;:5;;;;:::i;:::-;39301:12;;39223:98;;;;:::o;28939:735::-;29131:1;29117:16;;:2;:16;;;;29109:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29204:7;:14;29190:3;:10;:28;29182:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;29276:16;29295:12;:10;:12::i;:::-;29276:31;;29320:66;29341:8;29359:1;29363:2;29367:3;29372:7;29381:4;29320:20;:66::i;:::-;29404:9;29399:103;29423:3;:10;29419:1;:14;29399:103;;;29480:7;29488:1;29480:10;;;;;;;;;;;;;;;;;;;;;;29455:9;:17;29465:3;29469:1;29465:6;;;;;;;;;;;;;;;;;;;;;;29455:17;;;;;;;;;;;:21;29473:2;29455:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;29435:3;;;;;:::i;:::-;;;;29399:103;;;;29555:2;29519:53;;29551:1;29519:53;;29533:8;29519:53;;;29559:3;29564:7;29519:53;;;;;;;:::i;:::-;;;;;;;;29585:81;29621:8;29639:1;29643:2;29647:3;29652:7;29661:4;29585:35;:81::i;:::-;28939:735;;;;;:::o;24399:820::-;24601:1;24587:16;;:2;:16;;;;24579:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24658:16;24677:12;:10;:12::i;:::-;24658:31;;24702:96;24723:8;24733:4;24739:2;24743:21;24761:2;24743:17;:21::i;:::-;24766:25;24784:6;24766:17;:25::i;:::-;24793:4;24702:20;:96::i;:::-;24811:19;24833:9;:13;24843:2;24833:13;;;;;;;;;;;:19;24847:4;24833:19;;;;;;;;;;;;;;;;24811:41;;24886:6;24871:11;:21;;24863:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25011:6;24997:11;:20;24975:9;:13;24985:2;24975:13;;;;;;;;;;;:19;24989:4;24975:19;;;;;;;;;;;;;;;:42;;;;25060:6;25039:9;:13;25049:2;25039:13;;;;;;;;;;;:17;25053:2;25039:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25115:2;25084:46;;25109:4;25084:46;;25099:8;25084:46;;;25119:2;25123:6;25084:46;;;;;;;:::i;:::-;;;;;;;;25143:68;25174:8;25184:4;25190:2;25194;25198:6;25206:4;25143:30;:68::i;:::-;24399:820;;;;;;;:::o;29933:675::-;30082:1;30063:21;;:7;:21;;;;30055:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30137:16;30156:12;:10;:12::i;:::-;30137:31;;30181:105;30202:8;30212:7;30229:1;30233:21;30251:2;30233:17;:21::i;:::-;30256:25;30274:6;30256:17;:25::i;:::-;30181:105;;;;;;;;;;;;:20;:105::i;:::-;30299:22;30324:9;:13;30334:2;30324:13;;;;;;;;;;;:22;30338:7;30324:22;;;;;;;;;;;;;;;;30299:47;;30383:6;30365:14;:24;;30357:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30508:6;30491:14;:23;30466:9;:13;30476:2;30466:13;;;;;;;;;;;:22;30480:7;30466:22;;;;;;;;;;;;;;;:48;;;;30585:1;30543:57;;30568:7;30543:57;;30558:8;30543:57;;;30589:2;30593:6;30543:57;;;;;;;:::i;:::-;;;;;;;;29933:675;;;;;:::o;34487:198::-;34553:16;34582:22;34621:1;34607:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34582:41;;34645:7;34634:5;34640:1;34634:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;34672:5;34665:12;;;34487:198;;;:::o;32685:221::-;;;;;;;:::o;32914:744::-;33129:15;:2;:13;;;:15::i;:::-;33125:526;;;33182:2;33165:38;;;33204:8;33214:4;33220:2;33224:6;33232:4;33165:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33161:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;33513:6;33506:14;;;;;;;;;;;:::i;:::-;;;;;;;;33161:479;;;33562:62;;;;;;;;;;:::i;:::-;;;;;;;;33161:479;33299:43;;;33287:55;;;:8;:55;;;;33283:154;;33367:50;;;;;;;;;;:::i;:::-;;;;;;;;33283:154;33238:214;33125:526;32914:744;;;;;;:::o;33666:813::-;33906:15;:2;:13;;;:15::i;:::-;33902:570;;;33959:2;33942:43;;;33986:8;33996:4;34002:3;34007:7;34016:4;33942:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33938:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;34334:6;34327:14;;;;;;;;;;;:::i;:::-;;;;;;;;33938:523;;;34383:62;;;;;;;;;;:::i;:::-;;;;;;;;33938:523;34115:48;;;34103:60;;;:8;:60;;;;34099:159;;34188:50;;;;;;;;;;:::i;:::-;;;;;;;;34099:159;34022:251;33902:570;33666:813;;;;;;:::o;11316:387::-;11376:4;11584:12;11651:7;11639:20;11631:28;;11694:1;11687:4;:8;11680:15;;;11316:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;701:652::-;796:5;821:80;837:63;893:6;837:63;:::i;:::-;821:80;:::i;:::-;812:89;;921:5;950:6;943:5;936:21;984:4;977:5;973:16;966:23;;1010:6;1060:3;1052:4;1044:6;1040:17;1035:3;1031:27;1028:36;1025:2;;;1089:1;1086;1079:12;1025:2;1125:1;1110:237;1135:6;1132:1;1129:13;1110:237;;;1203:3;1232:36;1264:3;1252:10;1232:36;:::i;:::-;1227:3;1220:49;1298:4;1293:3;1289:14;1282:21;;1332:4;1327:3;1323:14;1316:21;;1170:177;1157:1;1154;1150:9;1145:14;;1110:237;;;1114:14;802:551;;;;;;;:::o;1376:655::-;1472:5;1497:81;1513:64;1570:6;1513:64;:::i;:::-;1497:81;:::i;:::-;1488:90;;1598:5;1627:6;1620:5;1613:21;1661:4;1654:5;1650:16;1643:23;;1687:6;1737:3;1729:4;1721:6;1717:17;1712:3;1708:27;1705:36;1702:2;;;1766:1;1763;1756:12;1702:2;1802:1;1787:238;1812:6;1809:1;1806:13;1787:238;;;1880:3;1909:37;1942:3;1930:10;1909:37;:::i;:::-;1904:3;1897:50;1976:4;1971:3;1967:14;1960:21;;2010:4;2005:3;2001:14;1994:21;;1847:178;1834:1;1831;1827:9;1822:14;;1787:238;;;1791:14;1478:553;;;;;;;:::o;2037:343::-;2114:5;2139:65;2155:48;2196:6;2155:48;:::i;:::-;2139:65;:::i;:::-;2130:74;;2227:6;2220:5;2213:21;2265:4;2258:5;2254:16;2303:3;2294:6;2289:3;2285:16;2282:25;2279:2;;;2320:1;2317;2310:12;2279:2;2333:41;2367:6;2362:3;2357;2333:41;:::i;:::-;2120:260;;;;;;:::o;2386:345::-;2464:5;2489:66;2505:49;2547:6;2505:49;:::i;:::-;2489:66;:::i;:::-;2480:75;;2578:6;2571:5;2564:21;2616:4;2609:5;2605:16;2654:3;2645:6;2640:3;2636:16;2633:25;2630:2;;;2671:1;2668;2661:12;2630:2;2684:41;2718:6;2713:3;2708;2684:41;:::i;:::-;2470:261;;;;;;:::o;2737:139::-;2783:5;2821:6;2808:20;2799:29;;2837:33;2864:5;2837:33;:::i;:::-;2789:87;;;;:::o;2899:303::-;2970:5;3019:3;3012:4;3004:6;3000:17;2996:27;2986:2;;3037:1;3034;3027:12;2986:2;3077:6;3064:20;3102:94;3192:3;3184:6;3177:4;3169:6;3165:17;3102:94;:::i;:::-;3093:103;;2976:226;;;;;:::o;3224:301::-;3294:5;3343:3;3336:4;3328:6;3324:17;3320:27;3310:2;;3361:1;3358;3351:12;3310:2;3401:6;3388:20;3426:93;3515:3;3507:6;3500:4;3492:6;3488:17;3426:93;:::i;:::-;3417:102;;3300:225;;;;;:::o;3548:303::-;3619:5;3668:3;3661:4;3653:6;3649:17;3645:27;3635:2;;3686:1;3683;3676:12;3635:2;3726:6;3713:20;3751:94;3841:3;3833:6;3826:4;3818:6;3814:17;3751:94;:::i;:::-;3742:103;;3625:226;;;;;:::o;3857:133::-;3900:5;3938:6;3925:20;3916:29;;3954:30;3978:5;3954:30;:::i;:::-;3906:84;;;;:::o;3996:137::-;4041:5;4079:6;4066:20;4057:29;;4095:32;4121:5;4095:32;:::i;:::-;4047:86;;;;:::o;4139:137::-;4184:5;4222:6;4209:20;4200:29;;4238:32;4264:5;4238:32;:::i;:::-;4190:86;;;;:::o;4282:141::-;4338:5;4369:6;4363:13;4354:22;;4385:32;4411:5;4385:32;:::i;:::-;4344:79;;;;:::o;4442:351::-;4499:8;4509:6;4559:3;4552:4;4544:6;4540:17;4536:27;4526:2;;4577:1;4574;4567:12;4526:2;4613:6;4600:20;4590:30;;4643:18;4635:6;4632:30;4629:2;;;4675:1;4672;4665:12;4629:2;4712:4;4704:6;4700:17;4688:29;;4766:3;4758:4;4750:6;4746:17;4736:8;4732:32;4729:41;4726:2;;;4783:1;4780;4773:12;4726:2;4516:277;;;;;:::o;4812:271::-;4867:5;4916:3;4909:4;4901:6;4897:17;4893:27;4883:2;;4934:1;4931;4924:12;4883:2;4974:6;4961:20;4999:78;5073:3;5065:6;5058:4;5050:6;5046:17;4999:78;:::i;:::-;4990:87;;4873:210;;;;;:::o;5103:273::-;5159:5;5208:3;5201:4;5193:6;5189:17;5185:27;5175:2;;5226:1;5223;5216:12;5175:2;5266:6;5253:20;5291:79;5366:3;5358:6;5351:4;5343:6;5339:17;5291:79;:::i;:::-;5282:88;;5165:211;;;;;:::o;5382:139::-;5428:5;5466:6;5453:20;5444:29;;5482:33;5509:5;5482:33;:::i;:::-;5434:87;;;;:::o;5527:262::-;5586:6;5635:2;5623:9;5614:7;5610:23;5606:32;5603:2;;;5651:1;5648;5641:12;5603:2;5694:1;5719:53;5764:7;5755:6;5744:9;5740:22;5719:53;:::i;:::-;5709:63;;5665:117;5593:196;;;;:::o;5795:407::-;5863:6;5871;5920:2;5908:9;5899:7;5895:23;5891:32;5888:2;;;5936:1;5933;5926:12;5888:2;5979:1;6004:53;6049:7;6040:6;6029:9;6025:22;6004:53;:::i;:::-;5994:63;;5950:117;6106:2;6132:53;6177:7;6168:6;6157:9;6153:22;6132:53;:::i;:::-;6122:63;;6077:118;5878:324;;;;;:::o;6208:1241::-;6362:6;6370;6378;6386;6394;6443:3;6431:9;6422:7;6418:23;6414:33;6411:2;;;6460:1;6457;6450:12;6411:2;6503:1;6528:53;6573:7;6564:6;6553:9;6549:22;6528:53;:::i;:::-;6518:63;;6474:117;6630:2;6656:53;6701:7;6692:6;6681:9;6677:22;6656:53;:::i;:::-;6646:63;;6601:118;6786:2;6775:9;6771:18;6758:32;6817:18;6809:6;6806:30;6803:2;;;6849:1;6846;6839:12;6803:2;6877:78;6947:7;6938:6;6927:9;6923:22;6877:78;:::i;:::-;6867:88;;6729:236;7032:2;7021:9;7017:18;7004:32;7063:18;7055:6;7052:30;7049:2;;;7095:1;7092;7085:12;7049:2;7123:78;7193:7;7184:6;7173:9;7169:22;7123:78;:::i;:::-;7113:88;;6975:236;7278:3;7267:9;7263:19;7250:33;7310:18;7302:6;7299:30;7296:2;;;7342:1;7339;7332:12;7296:2;7370:62;7424:7;7415:6;7404:9;7400:22;7370:62;:::i;:::-;7360:72;;7221:221;6401:1048;;;;;;;;:::o;7455:955::-;7559:6;7567;7575;7583;7591;7640:3;7628:9;7619:7;7615:23;7611:33;7608:2;;;7657:1;7654;7647:12;7608:2;7700:1;7725:53;7770:7;7761:6;7750:9;7746:22;7725:53;:::i;:::-;7715:63;;7671:117;7827:2;7853:53;7898:7;7889:6;7878:9;7874:22;7853:53;:::i;:::-;7843:63;;7798:118;7955:2;7981:53;8026:7;8017:6;8006:9;8002:22;7981:53;:::i;:::-;7971:63;;7926:118;8083:2;8109:53;8154:7;8145:6;8134:9;8130:22;8109:53;:::i;:::-;8099:63;;8054:118;8239:3;8228:9;8224:19;8211:33;8271:18;8263:6;8260:30;8257:2;;;8303:1;8300;8293:12;8257:2;8331:62;8385:7;8376:6;8365:9;8361:22;8331:62;:::i;:::-;8321:72;;8182:221;7598:812;;;;;;;;:::o;8416:838::-;8543:6;8551;8559;8608:2;8596:9;8587:7;8583:23;8579:32;8576:2;;;8624:1;8621;8614:12;8576:2;8667:1;8692:53;8737:7;8728:6;8717:9;8713:22;8692:53;:::i;:::-;8682:63;;8638:117;8822:2;8811:9;8807:18;8794:32;8853:18;8845:6;8842:30;8839:2;;;8885:1;8882;8875:12;8839:2;8913:78;8983:7;8974:6;8963:9;8959:22;8913:78;:::i;:::-;8903:88;;8765:236;9068:2;9057:9;9053:18;9040:32;9099:18;9091:6;9088:30;9085:2;;;9131:1;9128;9121:12;9085:2;9159:78;9229:7;9220:6;9209:9;9205:22;9159:78;:::i;:::-;9149:88;;9011:236;8566:688;;;;;:::o;9260:1095::-;9405:6;9413;9421;9429;9478:3;9466:9;9457:7;9453:23;9449:33;9446:2;;;9495:1;9492;9485:12;9446:2;9538:1;9563:53;9608:7;9599:6;9588:9;9584:22;9563:53;:::i;:::-;9553:63;;9509:117;9693:2;9682:9;9678:18;9665:32;9724:18;9716:6;9713:30;9710:2;;;9756:1;9753;9746:12;9710:2;9784:78;9854:7;9845:6;9834:9;9830:22;9784:78;:::i;:::-;9774:88;;9636:236;9939:2;9928:9;9924:18;9911:32;9970:18;9962:6;9959:30;9956:2;;;10002:1;9999;9992:12;9956:2;10030:78;10100:7;10091:6;10080:9;10076:22;10030:78;:::i;:::-;10020:88;;9882:236;10185:2;10174:9;10170:18;10157:32;10216:18;10208:6;10205:30;10202:2;;;10248:1;10245;10238:12;10202:2;10276:62;10330:7;10321:6;10310:9;10306:22;10276:62;:::i;:::-;10266:72;;10128:220;9436:919;;;;;;;:::o;10361:401::-;10426:6;10434;10483:2;10471:9;10462:7;10458:23;10454:32;10451:2;;;10499:1;10496;10489:12;10451:2;10542:1;10567:53;10612:7;10603:6;10592:9;10588:22;10567:53;:::i;:::-;10557:63;;10513:117;10669:2;10695:50;10737:7;10728:6;10717:9;10713:22;10695:50;:::i;:::-;10685:60;;10640:115;10441:321;;;;;:::o;10768:824::-;10880:6;10888;10896;10904;10953:2;10941:9;10932:7;10928:23;10924:32;10921:2;;;10969:1;10966;10959:12;10921:2;11012:1;11037:53;11082:7;11073:6;11062:9;11058:22;11037:53;:::i;:::-;11027:63;;10983:117;11167:2;11156:9;11152:18;11139:32;11198:18;11190:6;11187:30;11184:2;;;11230:1;11227;11220:12;11184:2;11266:64;11322:7;11313:6;11302:9;11298:22;11266:64;:::i;:::-;11248:82;;;;11110:230;11407:2;11396:9;11392:18;11379:32;11438:18;11430:6;11427:30;11424:2;;;11470:1;11467;11460:12;11424:2;11498:77;11567:7;11558:6;11547:9;11543:22;11498:77;:::i;:::-;11488:87;;11350:235;10911:681;;;;;;;:::o;11598:::-;11685:6;11693;11701;11709;11758:2;11746:9;11737:7;11733:23;11729:32;11726:2;;;11774:1;11771;11764:12;11726:2;11817:1;11842:53;11887:7;11878:6;11867:9;11863:22;11842:53;:::i;:::-;11832:63;;11788:117;11972:2;11961:9;11957:18;11944:32;12003:18;11995:6;11992:30;11989:2;;;12035:1;12032;12025:12;11989:2;12071:64;12127:7;12118:6;12107:9;12103:22;12071:64;:::i;:::-;12053:82;;;;11915:230;12184:2;12210:52;12254:7;12245:6;12234:9;12230:22;12210:52;:::i;:::-;12200:62;;12155:117;11716:563;;;;;;;:::o;12285:407::-;12353:6;12361;12410:2;12398:9;12389:7;12385:23;12381:32;12378:2;;;12426:1;12423;12416:12;12378:2;12469:1;12494:53;12539:7;12530:6;12519:9;12515:22;12494:53;:::i;:::-;12484:63;;12440:117;12596:2;12622:53;12667:7;12658:6;12647:9;12643:22;12622:53;:::i;:::-;12612:63;;12567:118;12368:324;;;;;:::o;12698:552::-;12775:6;12783;12791;12840:2;12828:9;12819:7;12815:23;12811:32;12808:2;;;12856:1;12853;12846:12;12808:2;12899:1;12924:53;12969:7;12960:6;12949:9;12945:22;12924:53;:::i;:::-;12914:63;;12870:117;13026:2;13052:53;13097:7;13088:6;13077:9;13073:22;13052:53;:::i;:::-;13042:63;;12997:118;13154:2;13180:53;13225:7;13216:6;13205:9;13201:22;13180:53;:::i;:::-;13170:63;;13125:118;12798:452;;;;;:::o;13256:809::-;13351:6;13359;13367;13375;13424:3;13412:9;13403:7;13399:23;13395:33;13392:2;;;13441:1;13438;13431:12;13392:2;13484:1;13509:53;13554:7;13545:6;13534:9;13530:22;13509:53;:::i;:::-;13499:63;;13455:117;13611:2;13637:53;13682:7;13673:6;13662:9;13658:22;13637:53;:::i;:::-;13627:63;;13582:118;13739:2;13765:53;13810:7;13801:6;13790:9;13786:22;13765:53;:::i;:::-;13755:63;;13710:118;13895:2;13884:9;13880:18;13867:32;13926:18;13918:6;13915:30;13912:2;;;13958:1;13955;13948:12;13912:2;13986:62;14040:7;14031:6;14020:9;14016:22;13986:62;:::i;:::-;13976:72;;13838:220;13382:683;;;;;;;:::o;14071:693::-;14189:6;14197;14246:2;14234:9;14225:7;14221:23;14217:32;14214:2;;;14262:1;14259;14252:12;14214:2;14333:1;14322:9;14318:17;14305:31;14363:18;14355:6;14352:30;14349:2;;;14395:1;14392;14385:12;14349:2;14423:78;14493:7;14484:6;14473:9;14469:22;14423:78;:::i;:::-;14413:88;;14276:235;14578:2;14567:9;14563:18;14550:32;14609:18;14601:6;14598:30;14595:2;;;14641:1;14638;14631:12;14595:2;14669:78;14739:7;14730:6;14719:9;14715:22;14669:78;:::i;:::-;14659:88;;14521:236;14204:560;;;;;:::o;14770:260::-;14828:6;14877:2;14865:9;14856:7;14852:23;14848:32;14845:2;;;14893:1;14890;14883:12;14845:2;14936:1;14961:52;15005:7;14996:6;14985:9;14981:22;14961:52;:::i;:::-;14951:62;;14907:116;14835:195;;;;:::o;15036:260::-;15094:6;15143:2;15131:9;15122:7;15118:23;15114:32;15111:2;;;15159:1;15156;15149:12;15111:2;15202:1;15227:52;15271:7;15262:6;15251:9;15247:22;15227:52;:::i;:::-;15217:62;;15173:116;15101:195;;;;:::o;15302:282::-;15371:6;15420:2;15408:9;15399:7;15395:23;15391:32;15388:2;;;15436:1;15433;15426:12;15388:2;15479:1;15504:63;15559:7;15550:6;15539:9;15535:22;15504:63;:::i;:::-;15494:73;;15450:127;15378:206;;;;:::o;15590:375::-;15659:6;15708:2;15696:9;15687:7;15683:23;15679:32;15676:2;;;15724:1;15721;15714:12;15676:2;15795:1;15784:9;15780:17;15767:31;15825:18;15817:6;15814:30;15811:2;;;15857:1;15854;15847:12;15811:2;15885:63;15940:7;15931:6;15920:9;15916:22;15885:63;:::i;:::-;15875:73;;15738:220;15666:299;;;;:::o;15971:262::-;16030:6;16079:2;16067:9;16058:7;16054:23;16050:32;16047:2;;;16095:1;16092;16085:12;16047:2;16138:1;16163:53;16208:7;16199:6;16188:9;16184:22;16163:53;:::i;:::-;16153:63;;16109:117;16037:196;;;;:::o;16239:405::-;16306:6;16314;16363:2;16351:9;16342:7;16338:23;16334:32;16331:2;;;16379:1;16376;16369:12;16331:2;16422:1;16447:53;16492:7;16483:6;16472:9;16468:22;16447:53;:::i;:::-;16437:63;;16393:117;16549:2;16575:52;16619:7;16610:6;16599:9;16595:22;16575:52;:::i;:::-;16565:62;;16520:117;16321:323;;;;;:::o;16650:179::-;16719:10;16740:46;16782:3;16774:6;16740:46;:::i;:::-;16818:4;16813:3;16809:14;16795:28;;16730:99;;;;:::o;16835:118::-;16922:24;16940:5;16922:24;:::i;:::-;16917:3;16910:37;16900:53;;:::o;16989:732::-;17108:3;17137:54;17185:5;17137:54;:::i;:::-;17207:86;17286:6;17281:3;17207:86;:::i;:::-;17200:93;;17317:56;17367:5;17317:56;:::i;:::-;17396:7;17427:1;17412:284;17437:6;17434:1;17431:13;17412:284;;;17513:6;17507:13;17540:63;17599:3;17584:13;17540:63;:::i;:::-;17533:70;;17626:60;17679:6;17626:60;:::i;:::-;17616:70;;17472:224;17459:1;17456;17452:9;17447:14;;17412:284;;;17416:14;17712:3;17705:10;;17113:608;;;;;;;:::o;17727:109::-;17808:21;17823:5;17808:21;:::i;:::-;17803:3;17796:34;17786:50;;:::o;17842:115::-;17927:23;17944:5;17927:23;:::i;:::-;17922:3;17915:36;17905:52;;:::o;17963:360::-;18049:3;18077:38;18109:5;18077:38;:::i;:::-;18131:70;18194:6;18189:3;18131:70;:::i;:::-;18124:77;;18210:52;18255:6;18250:3;18243:4;18236:5;18232:16;18210:52;:::i;:::-;18287:29;18309:6;18287:29;:::i;:::-;18282:3;18278:39;18271:46;;18053:270;;;;;:::o;18329:364::-;18417:3;18445:39;18478:5;18445:39;:::i;:::-;18500:71;18564:6;18559:3;18500:71;:::i;:::-;18493:78;;18580:52;18625:6;18620:3;18613:4;18606:5;18602:16;18580:52;:::i;:::-;18657:29;18679:6;18657:29;:::i;:::-;18652:3;18648:39;18641:46;;18421:272;;;;;:::o;18699:377::-;18805:3;18833:39;18866:5;18833:39;:::i;:::-;18888:89;18970:6;18965:3;18888:89;:::i;:::-;18881:96;;18986:52;19031:6;19026:3;19019:4;19012:5;19008:16;18986:52;:::i;:::-;19063:6;19058:3;19054:16;19047:23;;18809:267;;;;;:::o;19082:366::-;19224:3;19245:67;19309:2;19304:3;19245:67;:::i;:::-;19238:74;;19321:93;19410:3;19321:93;:::i;:::-;19439:2;19434:3;19430:12;19423:19;;19228:220;;;:::o;19454:366::-;19596:3;19617:67;19681:2;19676:3;19617:67;:::i;:::-;19610:74;;19693:93;19782:3;19693:93;:::i;:::-;19811:2;19806:3;19802:12;19795:19;;19600:220;;;:::o;19826:366::-;19968:3;19989:67;20053:2;20048:3;19989:67;:::i;:::-;19982:74;;20065:93;20154:3;20065:93;:::i;:::-;20183:2;20178:3;20174:12;20167:19;;19972:220;;;:::o;20198:366::-;20340:3;20361:67;20425:2;20420:3;20361:67;:::i;:::-;20354:74;;20437:93;20526:3;20437:93;:::i;:::-;20555:2;20550:3;20546:12;20539:19;;20344:220;;;:::o;20570:366::-;20712:3;20733:67;20797:2;20792:3;20733:67;:::i;:::-;20726:74;;20809:93;20898:3;20809:93;:::i;:::-;20927:2;20922:3;20918:12;20911:19;;20716:220;;;:::o;20942:366::-;21084:3;21105:67;21169:2;21164:3;21105:67;:::i;:::-;21098:74;;21181:93;21270:3;21181:93;:::i;:::-;21299:2;21294:3;21290:12;21283:19;;21088:220;;;:::o;21314:366::-;21456:3;21477:67;21541:2;21536:3;21477:67;:::i;:::-;21470:74;;21553:93;21642:3;21553:93;:::i;:::-;21671:2;21666:3;21662:12;21655:19;;21460:220;;;:::o;21686:366::-;21828:3;21849:67;21913:2;21908:3;21849:67;:::i;:::-;21842:74;;21925:93;22014:3;21925:93;:::i;:::-;22043:2;22038:3;22034:12;22027:19;;21832:220;;;:::o;22058:366::-;22200:3;22221:67;22285:2;22280:3;22221:67;:::i;:::-;22214:74;;22297:93;22386:3;22297:93;:::i;:::-;22415:2;22410:3;22406:12;22399:19;;22204:220;;;:::o;22430:366::-;22572:3;22593:67;22657:2;22652:3;22593:67;:::i;:::-;22586:74;;22669:93;22758:3;22669:93;:::i;:::-;22787:2;22782:3;22778:12;22771:19;;22576:220;;;:::o;22802:366::-;22944:3;22965:67;23029:2;23024:3;22965:67;:::i;:::-;22958:74;;23041:93;23130:3;23041:93;:::i;:::-;23159:2;23154:3;23150:12;23143:19;;22948:220;;;:::o;23174:366::-;23316:3;23337:67;23401:2;23396:3;23337:67;:::i;:::-;23330:74;;23413:93;23502:3;23413:93;:::i;:::-;23531:2;23526:3;23522:12;23515:19;;23320:220;;;:::o;23546:366::-;23688:3;23709:67;23773:2;23768:3;23709:67;:::i;:::-;23702:74;;23785:93;23874:3;23785:93;:::i;:::-;23903:2;23898:3;23894:12;23887:19;;23692:220;;;:::o;23918:366::-;24060:3;24081:67;24145:2;24140:3;24081:67;:::i;:::-;24074:74;;24157:93;24246:3;24157:93;:::i;:::-;24275:2;24270:3;24266:12;24259:19;;24064:220;;;:::o;24290:366::-;24432:3;24453:67;24517:2;24512:3;24453:67;:::i;:::-;24446:74;;24529:93;24618:3;24529:93;:::i;:::-;24647:2;24642:3;24638:12;24631:19;;24436:220;;;:::o;24662:366::-;24804:3;24825:67;24889:2;24884:3;24825:67;:::i;:::-;24818:74;;24901:93;24990:3;24901:93;:::i;:::-;25019:2;25014:3;25010:12;25003:19;;24808:220;;;:::o;25034:108::-;25111:24;25129:5;25111:24;:::i;:::-;25106:3;25099:37;25089:53;;:::o;25148:118::-;25235:24;25253:5;25235:24;:::i;:::-;25230:3;25223:37;25213:53;;:::o;25272:435::-;25452:3;25474:95;25565:3;25556:6;25474:95;:::i;:::-;25467:102;;25586:95;25677:3;25668:6;25586:95;:::i;:::-;25579:102;;25698:3;25691:10;;25456:251;;;;;:::o;25713:222::-;25806:4;25844:2;25833:9;25829:18;25821:26;;25857:71;25925:1;25914:9;25910:17;25901:6;25857:71;:::i;:::-;25811:124;;;;:::o;25941:1053::-;26264:4;26302:3;26291:9;26287:19;26279:27;;26316:71;26384:1;26373:9;26369:17;26360:6;26316:71;:::i;:::-;26397:72;26465:2;26454:9;26450:18;26441:6;26397:72;:::i;:::-;26516:9;26510:4;26506:20;26501:2;26490:9;26486:18;26479:48;26544:108;26647:4;26638:6;26544:108;:::i;:::-;26536:116;;26699:9;26693:4;26689:20;26684:2;26673:9;26669:18;26662:48;26727:108;26830:4;26821:6;26727:108;:::i;:::-;26719:116;;26883:9;26877:4;26873:20;26867:3;26856:9;26852:19;26845:49;26911:76;26982:4;26973:6;26911:76;:::i;:::-;26903:84;;26269:725;;;;;;;;:::o;27000:751::-;27223:4;27261:3;27250:9;27246:19;27238:27;;27275:71;27343:1;27332:9;27328:17;27319:6;27275:71;:::i;:::-;27356:72;27424:2;27413:9;27409:18;27400:6;27356:72;:::i;:::-;27438;27506:2;27495:9;27491:18;27482:6;27438:72;:::i;:::-;27520;27588:2;27577:9;27573:18;27564:6;27520:72;:::i;:::-;27640:9;27634:4;27630:20;27624:3;27613:9;27609:19;27602:49;27668:76;27739:4;27730:6;27668:76;:::i;:::-;27660:84;;27228:523;;;;;;;;:::o;27757:373::-;27900:4;27938:2;27927:9;27923:18;27915:26;;27987:9;27981:4;27977:20;27973:1;27962:9;27958:17;27951:47;28015:108;28118:4;28109:6;28015:108;:::i;:::-;28007:116;;27905:225;;;;:::o;28136:634::-;28357:4;28395:2;28384:9;28380:18;28372:26;;28444:9;28438:4;28434:20;28430:1;28419:9;28415:17;28408:47;28472:108;28575:4;28566:6;28472:108;:::i;:::-;28464:116;;28627:9;28621:4;28617:20;28612:2;28601:9;28597:18;28590:48;28655:108;28758:4;28749:6;28655:108;:::i;:::-;28647:116;;28362:408;;;;;:::o;28776:210::-;28863:4;28901:2;28890:9;28886:18;28878:26;;28914:65;28976:1;28965:9;28961:17;28952:6;28914:65;:::i;:::-;28868:118;;;;:::o;28992:218::-;29083:4;29121:2;29110:9;29106:18;29098:26;;29134:69;29200:1;29189:9;29185:17;29176:6;29134:69;:::i;:::-;29088:122;;;;:::o;29216:313::-;29329:4;29367:2;29356:9;29352:18;29344:26;;29416:9;29410:4;29406:20;29402:1;29391:9;29387:17;29380:47;29444:78;29517:4;29508:6;29444:78;:::i;:::-;29436:86;;29334:195;;;;:::o;29535:419::-;29701:4;29739:2;29728:9;29724:18;29716:26;;29788:9;29782:4;29778:20;29774:1;29763:9;29759:17;29752:47;29816:131;29942:4;29816:131;:::i;:::-;29808:139;;29706:248;;;:::o;29960:419::-;30126:4;30164:2;30153:9;30149:18;30141:26;;30213:9;30207:4;30203:20;30199:1;30188:9;30184:17;30177:47;30241:131;30367:4;30241:131;:::i;:::-;30233:139;;30131:248;;;:::o;30385:419::-;30551:4;30589:2;30578:9;30574:18;30566:26;;30638:9;30632:4;30628:20;30624:1;30613:9;30609:17;30602:47;30666:131;30792:4;30666:131;:::i;:::-;30658:139;;30556:248;;;:::o;30810:419::-;30976:4;31014:2;31003:9;30999:18;30991:26;;31063:9;31057:4;31053:20;31049:1;31038:9;31034:17;31027:47;31091:131;31217:4;31091:131;:::i;:::-;31083:139;;30981:248;;;:::o;31235:419::-;31401:4;31439:2;31428:9;31424:18;31416:26;;31488:9;31482:4;31478:20;31474:1;31463:9;31459:17;31452:47;31516:131;31642:4;31516:131;:::i;:::-;31508:139;;31406:248;;;:::o;31660:419::-;31826:4;31864:2;31853:9;31849:18;31841:26;;31913:9;31907:4;31903:20;31899:1;31888:9;31884:17;31877:47;31941:131;32067:4;31941:131;:::i;:::-;31933:139;;31831:248;;;:::o;32085:419::-;32251:4;32289:2;32278:9;32274:18;32266:26;;32338:9;32332:4;32328:20;32324:1;32313:9;32309:17;32302:47;32366:131;32492:4;32366:131;:::i;:::-;32358:139;;32256:248;;;:::o;32510:419::-;32676:4;32714:2;32703:9;32699:18;32691:26;;32763:9;32757:4;32753:20;32749:1;32738:9;32734:17;32727:47;32791:131;32917:4;32791:131;:::i;:::-;32783:139;;32681:248;;;:::o;32935:419::-;33101:4;33139:2;33128:9;33124:18;33116:26;;33188:9;33182:4;33178:20;33174:1;33163:9;33159:17;33152:47;33216:131;33342:4;33216:131;:::i;:::-;33208:139;;33106:248;;;:::o;33360:419::-;33526:4;33564:2;33553:9;33549:18;33541:26;;33613:9;33607:4;33603:20;33599:1;33588:9;33584:17;33577:47;33641:131;33767:4;33641:131;:::i;:::-;33633:139;;33531:248;;;:::o;33785:419::-;33951:4;33989:2;33978:9;33974:18;33966:26;;34038:9;34032:4;34028:20;34024:1;34013:9;34009:17;34002:47;34066:131;34192:4;34066:131;:::i;:::-;34058:139;;33956:248;;;:::o;34210:419::-;34376:4;34414:2;34403:9;34399:18;34391:26;;34463:9;34457:4;34453:20;34449:1;34438:9;34434:17;34427:47;34491:131;34617:4;34491:131;:::i;:::-;34483:139;;34381:248;;;:::o;34635:419::-;34801:4;34839:2;34828:9;34824:18;34816:26;;34888:9;34882:4;34878:20;34874:1;34863:9;34859:17;34852:47;34916:131;35042:4;34916:131;:::i;:::-;34908:139;;34806:248;;;:::o;35060:419::-;35226:4;35264:2;35253:9;35249:18;35241:26;;35313:9;35307:4;35303:20;35299:1;35288:9;35284:17;35277:47;35341:131;35467:4;35341:131;:::i;:::-;35333:139;;35231:248;;;:::o;35485:419::-;35651:4;35689:2;35678:9;35674:18;35666:26;;35738:9;35732:4;35728:20;35724:1;35713:9;35709:17;35702:47;35766:131;35892:4;35766:131;:::i;:::-;35758:139;;35656:248;;;:::o;35910:419::-;36076:4;36114:2;36103:9;36099:18;36091:26;;36163:9;36157:4;36153:20;36149:1;36138:9;36134:17;36127:47;36191:131;36317:4;36191:131;:::i;:::-;36183:139;;36081:248;;;:::o;36335:222::-;36428:4;36466:2;36455:9;36451:18;36443:26;;36479:71;36547:1;36536:9;36532:17;36523:6;36479:71;:::i;:::-;36433:124;;;;:::o;36563:332::-;36684:4;36722:2;36711:9;36707:18;36699:26;;36735:71;36803:1;36792:9;36788:17;36779:6;36735:71;:::i;:::-;36816:72;36884:2;36873:9;36869:18;36860:6;36816:72;:::i;:::-;36689:206;;;;;:::o;36901:129::-;36935:6;36962:20;;:::i;:::-;36952:30;;36991:33;37019:4;37011:6;36991:33;:::i;:::-;36942:88;;;:::o;37036:75::-;37069:6;37102:2;37096:9;37086:19;;37076:35;:::o;37117:311::-;37194:4;37284:18;37276:6;37273:30;37270:2;;;37306:18;;:::i;:::-;37270:2;37356:4;37348:6;37344:17;37336:25;;37416:4;37410;37406:15;37398:23;;37199:229;;;:::o;37434:310::-;37510:4;37600:18;37592:6;37589:30;37586:2;;;37622:18;;:::i;:::-;37586:2;37672:4;37664:6;37660:17;37652:25;;37732:4;37726;37722:15;37714:23;;37515:229;;;:::o;37750:311::-;37827:4;37917:18;37909:6;37906:30;37903:2;;;37939:18;;:::i;:::-;37903:2;37989:4;37981:6;37977:17;37969:25;;38049:4;38043;38039:15;38031:23;;37832:229;;;:::o;38067:307::-;38128:4;38218:18;38210:6;38207:30;38204:2;;;38240:18;;:::i;:::-;38204:2;38278:29;38300:6;38278:29;:::i;:::-;38270:37;;38362:4;38356;38352:15;38344:23;;38133:241;;;:::o;38380:308::-;38442:4;38532:18;38524:6;38521:30;38518:2;;;38554:18;;:::i;:::-;38518:2;38592:29;38614:6;38592:29;:::i;:::-;38584:37;;38676:4;38670;38666:15;38658:23;;38447:241;;;:::o;38694:132::-;38761:4;38784:3;38776:11;;38814:4;38809:3;38805:14;38797:22;;38766:60;;;:::o;38832:114::-;38899:6;38933:5;38927:12;38917:22;;38906:40;;;:::o;38952:98::-;39003:6;39037:5;39031:12;39021:22;;39010:40;;;:::o;39056:99::-;39108:6;39142:5;39136:12;39126:22;;39115:40;;;:::o;39161:113::-;39231:4;39263;39258:3;39254:14;39246:22;;39236:38;;;:::o;39280:184::-;39379:11;39413:6;39408:3;39401:19;39453:4;39448:3;39444:14;39429:29;;39391:73;;;;:::o;39470:168::-;39553:11;39587:6;39582:3;39575:19;39627:4;39622:3;39618:14;39603:29;;39565:73;;;;:::o;39644:169::-;39728:11;39762:6;39757:3;39750:19;39802:4;39797:3;39793:14;39778:29;;39740:73;;;;:::o;39819:148::-;39921:11;39958:3;39943:18;;39933:34;;;;:::o;39973:305::-;40013:3;40032:20;40050:1;40032:20;:::i;:::-;40027:25;;40066:20;40084:1;40066:20;:::i;:::-;40061:25;;40220:1;40152:66;40148:74;40145:1;40142:81;40139:2;;;40226:18;;:::i;:::-;40139:2;40270:1;40267;40263:9;40256:16;;40017:261;;;;:::o;40284:185::-;40324:1;40341:20;40359:1;40341:20;:::i;:::-;40336:25;;40375:20;40393:1;40375:20;:::i;:::-;40370:25;;40414:1;40404:2;;40419:18;;:::i;:::-;40404:2;40461:1;40458;40454:9;40449:14;;40326:143;;;;:::o;40475:191::-;40515:4;40535:20;40553:1;40535:20;:::i;:::-;40530:25;;40569:20;40587:1;40569:20;:::i;:::-;40564:25;;40608:1;40605;40602:8;40599:2;;;40613:18;;:::i;:::-;40599:2;40658:1;40655;40651:9;40643:17;;40520:146;;;;:::o;40672:96::-;40709:7;40738:24;40756:5;40738:24;:::i;:::-;40727:35;;40717:51;;;:::o;40774:90::-;40808:7;40851:5;40844:13;40837:21;40826:32;;40816:48;;;:::o;40870:149::-;40906:7;40946:66;40939:5;40935:78;40924:89;;40914:105;;;:::o;41025:149::-;41061:7;41101:66;41094:5;41090:78;41079:89;;41069:105;;;:::o;41180:126::-;41217:7;41257:42;41250:5;41246:54;41235:65;;41225:81;;;:::o;41312:77::-;41349:7;41378:5;41367:16;;41357:32;;;:::o;41395:154::-;41479:6;41474:3;41469;41456:30;41541:1;41532:6;41527:3;41523:16;41516:27;41446:103;;;:::o;41555:307::-;41623:1;41633:113;41647:6;41644:1;41641:13;41633:113;;;41732:1;41727:3;41723:11;41717:18;41713:1;41708:3;41704:11;41697:39;41669:2;41666:1;41662:10;41657:15;;41633:113;;;41764:6;41761:1;41758:13;41755:2;;;41844:1;41835:6;41830:3;41826:16;41819:27;41755:2;41604:258;;;;:::o;41868:320::-;41912:6;41949:1;41943:4;41939:12;41929:22;;41996:1;41990:4;41986:12;42017:18;42007:2;;42073:4;42065:6;42061:17;42051:27;;42007:2;42135;42127:6;42124:14;42104:18;42101:38;42098:2;;;42154:18;;:::i;:::-;42098:2;41919:269;;;;:::o;42194:281::-;42277:27;42299:4;42277:27;:::i;:::-;42269:6;42265:40;42407:6;42395:10;42392:22;42371:18;42359:10;42356:34;42353:62;42350:2;;;42418:18;;:::i;:::-;42350:2;42458:10;42454:2;42447:22;42237:238;;;:::o;42481:233::-;42520:3;42543:24;42561:5;42543:24;:::i;:::-;42534:33;;42589:66;42582:5;42579:77;42576:2;;;42659:18;;:::i;:::-;42576:2;42706:1;42699:5;42695:13;42688:20;;42524:190;;;:::o;42720:176::-;42752:1;42769:20;42787:1;42769:20;:::i;:::-;42764:25;;42803:20;42821:1;42803:20;:::i;:::-;42798:25;;42842:1;42832:2;;42847:18;;:::i;:::-;42832:2;42888:1;42885;42881:9;42876:14;;42754:142;;;;:::o;42902:180::-;42950:77;42947:1;42940:88;43047:4;43044:1;43037:15;43071:4;43068:1;43061:15;43088:180;43136:77;43133:1;43126:88;43233:4;43230:1;43223:15;43257:4;43254:1;43247:15;43274:180;43322:77;43319:1;43312:88;43419:4;43416:1;43409:15;43443:4;43440:1;43433:15;43460:180;43508:77;43505:1;43498:88;43605:4;43602:1;43595:15;43629:4;43626:1;43619:15;43646:183;43681:3;43719:1;43701:16;43698:23;43695:2;;;43757:1;43754;43751;43736:23;43779:34;43810:1;43804:8;43779:34;:::i;:::-;43772:41;;43695:2;43685:144;:::o;43835:102::-;43876:6;43927:2;43923:7;43918:2;43911:5;43907:14;43903:28;43893:38;;43883:54;;;:::o;43943:106::-;43987:8;44036:5;44031:3;44027:15;44006:36;;43996:53;;;:::o;44055:239::-;44195:34;44191:1;44183:6;44179:14;44172:58;44264:22;44259:2;44251:6;44247:15;44240:47;44161:133;:::o;44300:227::-;44440:34;44436:1;44428:6;44424:14;44417:58;44509:10;44504:2;44496:6;44492:15;44485:35;44406:121;:::o;44533:179::-;44673:31;44669:1;44661:6;44657:14;44650:55;44639:73;:::o;44718:230::-;44858:34;44854:1;44846:6;44842:14;44835:58;44927:13;44922:2;44914:6;44910:15;44903:38;44824:124;:::o;44954:225::-;45094:34;45090:1;45082:6;45078:14;45071:58;45163:8;45158:2;45150:6;45146:15;45139:33;45060:119;:::o;45185:223::-;45325:34;45321:1;45313:6;45309:14;45302:58;45394:6;45389:2;45381:6;45377:15;45370:31;45291:117;:::o;45414:228::-;45554:34;45550:1;45542:6;45538:14;45531:58;45623:11;45618:2;45610:6;45606:15;45599:36;45520:122;:::o;45648:224::-;45788:34;45784:1;45776:6;45772:14;45765:58;45857:7;45852:2;45844:6;45840:15;45833:32;45754:118;:::o;45878:237::-;46018:34;46014:1;46006:6;46002:14;45995:58;46087:20;46082:2;46074:6;46070:15;46063:45;45984:131;:::o;46121:222::-;46261:34;46257:1;46249:6;46245:14;46238:58;46330:5;46325:2;46317:6;46313:15;46306:30;46227:116;:::o;46349:229::-;46489:34;46485:1;46477:6;46473:14;46466:58;46558:12;46553:2;46545:6;46541:15;46534:37;46455:123;:::o;46584:182::-;46724:34;46720:1;46712:6;46708:14;46701:58;46690:76;:::o;46772:228::-;46912:34;46908:1;46900:6;46896:14;46889:58;46981:11;46976:2;46968:6;46964:15;46957:36;46878:122;:::o;47006:228::-;47146:34;47142:1;47134:6;47130:14;47123:58;47215:11;47210:2;47202:6;47198:15;47191:36;47112:122;:::o;47240:227::-;47380:34;47376:1;47368:6;47364:14;47357:58;47449:10;47444:2;47436:6;47432:15;47425:35;47346:121;:::o;47473:220::-;47613:34;47609:1;47601:6;47597:14;47590:58;47682:3;47677:2;47669:6;47665:15;47658:28;47579:114;:::o;47699:711::-;47738:3;47776:4;47758:16;47755:26;47752:2;;;47784:5;;47752:2;47813:20;;:::i;:::-;47888:1;47870:16;47866:24;47863:1;47857:4;47842:49;47921:4;47915:11;48020:16;48013:4;48005:6;48001:17;47998:39;47965:18;47957:6;47954:30;47938:113;47935:2;;;48066:5;;;;47935:2;48112:6;48106:4;48102:17;48148:3;48142:10;48175:18;48167:6;48164:30;48161:2;;;48197:5;;;;;;48161:2;48245:6;48238:4;48233:3;48229:14;48225:27;48304:1;48286:16;48282:24;48276:4;48272:35;48267:3;48264:44;48261:2;;;48311:5;;;;;;;48261:2;48328:57;48376:6;48370:4;48366:17;48358:6;48354:30;48348:4;48328:57;:::i;:::-;48401:3;48394:10;;47742:668;;;;;;;:::o;48416:122::-;48489:24;48507:5;48489:24;:::i;:::-;48482:5;48479:35;48469:2;;48528:1;48525;48518:12;48469:2;48459:79;:::o;48544:116::-;48614:21;48629:5;48614:21;:::i;:::-;48607:5;48604:32;48594:2;;48650:1;48647;48640:12;48594:2;48584:76;:::o;48666:120::-;48738:23;48755:5;48738:23;:::i;:::-;48731:5;48728:34;48718:2;;48776:1;48773;48766:12;48718:2;48708:78;:::o;48792:120::-;48864:23;48881:5;48864:23;:::i;:::-;48857:5;48854:34;48844:2;;48902:1;48899;48892:12;48844:2;48834:78;:::o;48918:122::-;48991:24;49009:5;48991:24;:::i;:::-;48984:5;48981:35;48971:2;;49030:1;49027;49020:12;48971:2;48961:79;:::o

Swarm Source

ipfs://834658c69bd32e1e55f8dbda368830ca9e0ec8fe9bcb4f5de23a09fab2f4f2bb
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.