ETH Price: $3,203.70 (-3.94%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Alert Message203781652024-07-24 18:22:47504 days ago1721845367IN
0x0169B5e4...2BF67fe37
0 ETH0.000386145.08239072
Write Message203424342024-07-19 18:41:23509 days ago1721414483IN
0x0169B5e4...2BF67fe37
0 ETH0.001451426.21988205
Write Message203421922024-07-19 17:52:47509 days ago1721411567IN
0x0169B5e4...2BF67fe37
0 ETH0.001257266.69184591
Alert Message160852902022-11-30 20:49:231106 days ago1669841363IN
0x0169B5e4...2BF67fe37
0 ETH0.0004866113.17216478
Write Message160851832022-11-30 20:27:591106 days ago1669840079IN
0x0169B5e4...2BF67fe37
0 ETH0.0006828713.04535259
Set Linkage148428932022-05-25 16:31:511295 days ago1653496311IN
0x0169B5e4...2BF67fe37
0 ETH0.0019830369.08806871
Set Linkage148428932022-05-25 16:31:511295 days ago1653496311IN
0x0169B5e4...2BF67fe37
0 ETH0.0018448569.08806871
Set Linkage148428682022-05-25 16:25:561295 days ago1653495956IN
0x0169B5e4...2BF67fe37
0 ETH0.0023310467.93076724

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MaritalObligations

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}


// File contracts/Imports.sol

pragma solidity >=0.8.0 <0.9.0;

contract MetaData {
      function artworkDescription() public pure returns(string memory){
        return "Original marriage certificate of Ania Catherine and Dejha Ti. The institution of marriage historically has been an oppressive institution for women. The artists, who are married to each other and also have a collaborative art practice, consider their inhabitation of marriage to be both practical (1,138 rights are reserved for married couples in the U.S.), and also a durational subversive performance inhabiting a traditional institution in a queer and revolutionary way. Ti and Catherine convert something that has been a container for womens subservience to a foundation for a collaborative life of freedom, creativity, and a platform for their voices and ideas. The title, Let me check with the wife speaks to the mentioning of ones wife as a performative aspect of a certain genre of cis-heteromasculinity, which reveals itself as such when a woman does it. The collector of Let me check with the wife  receives the original physical copy of the artists marriage certificate, a digital image file version (modified to 9:16) as well as Marital Obligations (a dynamic NFT). The certificate has sensitive information censored for artist and family privacy";
      } 
      function medium() public pure returns(string memory){
        return "Scan of the original marriage certificate of Ania Catherine and Dejha Ti. The institution of marriage historically has been an oppressive institution for women. The artists, who are married to each other and also have a collaborative art practice, consider their inhabitation of marriage to be both practical (1,138 rights are reserved for married couples in the U.S.), and also a durational subversive performance inhabiting a traditional institution in a queer and revolutionary way. Ti and Catherine convert something that has been a container for womens subservience to a foundation for a collaborative life of freedom, creativity, and a platform for their voices and ideas. The title, Let me check with the wife speaks to the mentioning of ones wife as a performative aspect of a certain genre of cis-heteromasculinity, which reveals itself as such when a woman does it. The collector of Let me check with the wife  receives the original physical copy of the artists marriage certificate, a digital image file version (modified to 9:16) as well as Marital Obligations (a dynamic NFT). The certificate has sensitive information censored for artist and family privacy";
      } 
      function licenseAndCertificateOfMarriage() public pure returns(string memory){
        return "STATE OF CALIFORNIA CERTIFICATION OF VITAL RECORD COUNTY OF LOS ANGELES REGISTRAR-RECORDER/COUNTY CLERK 5 201719018002 CONFIDENTIAL LICENSE AND CERTIFICATE OF MARRIAGE MUST BE LEGIBLE - MAKE NO ERASURES, WHITEOUTS, OR OTHER ALTERATIONS USE DARK INK ONLY  LOCAL REGISTRATION NUMBER STATE FILE NUMBER [ ] Groom [x] Bride FIRST PERSON DATA 1A. FIRST NAME ANIA 1B. MIDDLE CATHERINE 1C. CURRENT LAST (CENSORED) 1D. LAST NAME AT BIRTH (IF DIFFERENT THAN 1C) 2. DATE OF BIRTH (MM/DD/CCYY) 02/19/1990 3. STATE/COUNTRY OF BIRTH CA 4. #PREV. MARRIAGE/SRDP 0 5A. LAST MARRIAGE/SRDP BY: [ ] DEATH [ ] DISSO [ ] ANNULMENT [ ] TERM SRDP [x]  N/A 5B. DATE ENDED (MM/DD/CCYY) --/--/---- 6. ADDRESS (CENSORED) ELECTRIC AVE 7. CITY VENICE 8. STATE/COUNTRY CA 9. ZIP CODE 90291 10A FULL BIRTH NAME OF FATHER/PARENT (CENSORED) 10B. STATE OF BIRTH (IF OUTSIDE U.S. ENTER COUNTRY) MEX 11A. FULL BIRTH NAME OF MOTHER/PARENT (CENSORED) 11B. STATE OF BIRTH (IF OUTSIDE U.S. ENTER COUNTRY) CA [  ] Groom [x] Bride SECOND PERSON DATA 12A. FIRST NAME DEJHA 12B. MIDDLE TI 12C. CURRENT LAST (CENSORED) 12D. LAST NAME AT BIRTH (IF DIFFERENT THAN 12C) 13. DATE OF BIRTH (MM/DD/CCYY) 08/19/1985 14. STATE/COUNTRY OF BIRTH FL 15. #PREV. MARRIAGE/SRDP 0 16A. LAST MARRIAGE/SRDP BY: [ ] DEATH [ ] DISSO [ ] ANNULMENT [ ] TERM SRDP [x] N/A 16B. DATE ENDED (MM/DD/CCYY) --/--/---- 17. ADDRESS (CENSORED) ELECTRIC AVE 18. CITY VENICE 19. STATE/COUNTRY CA 20. ZIP CODE 90291 21A FULL BIRTH NAME OF FATHER/PARENT (CENSORED) 21B. STATE OF BIRTH (IF OUTSIDE U.S. ENTER COUNTRY) FL 22A. FULL BIRTH NAME OF MOTHER/PARENT (CENSORED) 22B. STATE OF BIRTH (IF OUTSIDE U.S. ENTER COUNTRY) PA AFFIDAVIT WE, THE UNDERSIGNED, CURRENTLY LIVING TOGETHER AS SPOUSES, DECLARE UNDER PENALTY OF PERJURY UNDER THE LAWS OF THE STATE OF CALIFORNIA THAT WE ARE UNMARRIED AND THAT THE FOREGOING INFORMATION IS TRUE AND CORRECT TO BEST OF OUR KNOWLEDGE AND BELIEF. WE FURTHER DECLARE THAT NO LEGAL OBJECTION TO THE MARRIAGE, NOR TO THE ISSUANCE OF A LICENSE IS KNOWN TO US. WE ACKNOWLEDGE RECEIPT OF THE INFORMATION REQUIRED BY FAMILY CODE SECTION 358 AND HEREBY APPLY FOR A CONFIDENTIAL LICENSE AND CERTIFICATE OF MARRIAGE. 23. SIGNATURE OF PERSON LISTED IN FIELDS 1A-1D [SIGNATURE] 24. SIGNATURE OF PERSON LISTED IN FIELDS 12A-12D [SIGNATURE] LICENSE TO MARRY I, THE UNDERSIGNED, DO HEREBY CERTIFY THAT THE ABOVE-NAMED PARTIES TO BE MARRIED HAVE PERSONALLY APPEARED BEFORE ME  AND PROVED TO ME ON THE BASIS OF SATISFACTORY EVIDENCE TO BE THE PERSONS CLAIMED, OR THAT THE PERSON PERFORMING THE CEREMONY HAS PERSONALLY APPEARED BEFORE ME AND PRESENTED AN AFFIDAVIT SIGNED BY THE PARTIES TO BE MARRIED DECLARING THAT ONE OR BOTH OF THE PARTIES ARE PHYSICALLY UNABLE TO APPEAR AND EXPLAINING THE REASONS THEREFOR IN ACCORDANCE WITH FAMILY CODE SECTION 502. THE PARTIES HAVING FURTHER DECLARED THAT THEY MEET ALL THE REQUIREMENTS OF THE LAW, AND HAVING PAID THE FEES PRESCRIBED BY LAW, AUTHORIZATION AND LICENSE IS HEREBY GIVEN TO ANY PERSON DULY AUTHORIZED TO PERFORM A MARRIAGE CEREMONY WITHIN THE STATE OF CALIFORNIA, TO SOLEMNIZE THE MARRIAGE OF THE ABOVE-NAMED PERSONS PURSUANT TO FAMILY CODE SECTION 500. NOTE: THE MARRIAGE CEREMONY MUST TAKE PLACE IN THE STATE OF CALIFORNIA. 25A. ISSUE DATE (MM/DD/CCYY) 07/06/2017 25B. EXPIRES AFTER  (MM/DD/CCYY) 10/04/2017 25C. NAME OF COUNTY CLERK DEAN C. LOGAN 25D. SIGNATURE OF CLERK OR DEPUTY CLERK BY (CENSORED) 25E. MARRIAGE LICENSE NUMBER C2469551 25F. COUNTY OF ISSUE LOS ANGELES 25G. RETURN COMPLETED MARRIAGE LICENSE TO (INCLUDE ADDRESS): 12400 Imperial Highway, Norwalk, CA 90650 ITEMS 26A-26D COMPLETED ONLY IF LICENSE IS ISSUED BY NOTARY PUBLIC A NOTARY PUBLIC OR OTHER OFFICER COMPLETING THIS CERTIFICATE VERIFIES ONLY THE IDENTITY OF THE INDIVIDUAL WHO SIGNED THE DOCUMENT TO WHICH THIS CERTIFICATE IS ATTACHED, AND NOT THE TRUTHFULNESS, ACCURACY OR VALIDITY OF THAT DOCUMENT. 26A. STATE OF CALIFORNIA, COUNTY OF: ____________________________________ SUBSCRIBED AND SWORN TO (OR AFFIRMED) BEFORE ME ON THIS____DAY OF ________ 20______ BY _________________________ PROVED TO ME ON THE BASIS OF SATISFACTORY EVIDENCE TO BE THE PERSON(S) WHO APPEARED BEFORE ME. 26B. TYPED NAME OF NOTARY 26C. SIGNATURE OF NOTARY 26D. AFFIX NOTARY SEAL CERTIFICATION OF PERSON SOLEMNIZING MARRIAGE I, THE UNDERSIGNED, DECLARE UNDER PENALTY OF PERJURY UNDER THE LAWS OF THE STATE OF CALIFORNIA, THAT THE ABOVE-MENTIONED PARTIES WERE JOINED BY ME IN MARRIAGE IN ACCORDANCE WITH THE LAWS OF THE STATE OF CALIFORNIA. NOTE: THE MARRIAGE CEREMONY MUST TAKE PLACE IN THE STATE OF CALIFORNIA. 27A. DATE OF MARRIAGE (MM/DD/CCYY) 09/29/2017 (HANDWRITTEN) 27B. CITY OF MARRIAGE LOS ANGELES (HANDWRITTEN) 27C. COUNTY OF MARRIAGE LOS ANGELES (HANDWRITTEN) 28A. SIGNATURE OF PERSON SOLEMNIZING MARRIAGE [SIGNATURE] 28B. RELIGIOUS DENOMINATION (IF CLERGY) -UNITARIAN UNIVERSALIST (HANDWRITTEN) 28C. NAME OF PERSON SOLEMNIZING MARRIAGE (TYPE OR PRINT CLEARLY) (CENSORED) 28D. OFFICIAL TITLE WIZARD (HANDWRITTEN) 28E. ADDRESS, CITY, STATE/COUNTY, AND ZIP CODE (CENSORED) Blvd Venice, CA 90291 (HANDWRITTEN) NEW NAME(S) (IF ANY) (SEE REVERSE) NEW MIDDLE AND LAST NAME OF PERSON LISTED IN 1A-1D (IF ANY) FOR USE UPON SOLEMNIZATION OF THE MARRIAGE (SEE REVERSE FOR INFORMATION) 29A. FIRST - MUST BE SAME AS 1A 29B. MIDDLE 29C. LAST NEW MIDDLE AND LAST NAME OF PERSON LISTED IN 12A-12D (IF ANY) FOR USE UPON SOLEMNIZATION OF THE MARRIAGE (SEE REVERSE FOR INFORMATION) 30A. FIRST - MUST BE SAME AS 12A 30B. MIDDLE 30C. LAST COUNTY CLERK 31A. NAME OF COUNTY CLERK DEAN C. LOGAN 31B. SIGNATURE OF CLERK OR DEPUTY CLERK BY (CENSORED) 31C. DATE ACCEPTED FOR REGISTRATION NOV 03 2017 CALIFORNIA DEPARTMENT OF PUBLIC HEALTH - VITAL RECORDS VS-123 (01/01/2015) This is to certify that this document is a true copy of the official record filed with the Registrar-Recorder/County Clerk. [SIGNATURE] DEAN C. LOGAN Registrar-Recorder/County Clerk This copy is not valid unless prepared on an engraved border displaying the seal and signature of the Registrar-Recorder/County Clerk. NOV 09 2017 1000002054393 CALOSANG02 ANY ALTERATION OR ERASURE VOIDS THIS CERTIFICATE THE GREAT SEAL OF THE STATE OF CALIFORNIA EUREKA REGISTRAR-RECORDER/COUNTY CLERK COUNTY OF LOS ANGELES-CALIFORNIA";
      } 
      function reverseUtility() public pure returns(string memory){
        return 'As a hyperbolic flip on the expectation of utility with NFT artworks, and drawing on the concept of marital obligations, the collector will receive direction or might be expected to provide the artists with specific actions or gifts on their anniversary (July 19); this aspect of the artist-collector relationship is managed via a dynamic NFT entitled "Marital Obligations." In the case of divorce, there will be one final obligation and no further anniversary gifts expected. The QR code/Etherscan link added to the marriage certificate leads to the MaritalObligations smart contract which is the dynamic NFT and contains an on-chain transcription of the marriage certificate. This on-chain dynamic NFT is married to the primary contract, following it to whatever address owns it.';
      } 

      function archivalHygeine() public pure returns(string memory){
        return 'The "Let me check with the wife" (the "Artwork") primary smart contract generated on SuperRare is tied to the artists` original physical marriage certificate (a State of California issued vital record - License and Certificate of Marriage) and a digital copy (modified for 9:16) stored on IPFS managed by SuperRare-these digital and physical assets are not stored on the blockchain. To practice good archival hygiene and in the event that IPFS becomes unavailable and/or the physical marriage certificate is lost, the smart contract entitled MaritalObligations has been connected to the Artwork`s primary contract (see Etherscan link included in the primary contract`s attributes) and contains a text transcription of the original marriage certificate. By doing this, the artists` marriage certificate is fully stored on chain and is certified as the Artwork by the artists, Ania Catherine & Dejha Ti, and Operator LLC, a limited liability corporation based in Wyoming. Additionally, the physical marriage certificate includes a QR code stamp/Etherscan link to MaritalObligations. MaritalObligations contains the dynamic NFT (see Reverse Utility), which is married to the collector of the Artwork-this on-chain dynamic NFT is married to the primary contract, following it to whatever address owns it.';
      } 

      function termsOfUse() public pure returns(string memory){
        return 'Each token and deployed and governed by this smart contract (and any extensions thereof) (each, an "NFT") is associated with certain works of authorship or other content, whether or not copyrighted or copyrightable, and regardless of the format in which any of the foregoing is made available ("Related Content").  Related Content is separate from the associated NFT, and is not sold or otherwise transferred to the holder of such NFT, but is instead licensed to the holder as set forth in the Terms of Use available at https://www.operator.la/nft-tou (the "Terms").  Subject to compliance with the Terms, for as long as such owner holds an NFT, ownership of an NFT grants the holder the limited, personal, non-commercial, non-sublicensable, non-exclusive license to display and perform the Related Content associated with such NFT as more fully set forth in the Terms.  All other rights in and to the Related Content and any other intellectual property are reserved by Operator, LLC. Use of an NFT is subject to additional terms and conditions set forth in the Terms. Use of any token deployed and governed by this smart contract (and any extensions thereof) is additionally subject to the Terms of Use available at https://www.operator.la/nft-tou';
      } 
}


// File base64-sol/[email protected]


pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}


// File contracts/MaritalObligations.sol

pragma solidity >=0.8.0 <0.9.0;
//SPDX-License-Identifier: MIT





contract MaritalObligations is ERC721, Ownable{

  IERC721 linkage;
  bool linkageSet;
  uint linkageId;

  string[] public phrases;
  uint anniv = 1626678000;

  MetaData public md;

  constructor(MetaData _md, IERC721 _linkage, uint _id) ERC721("Operator", "Operator"){
    md = _md;
    linkage = _linkage;
    linkageId = _id;
    _mint(msg.sender, 1);
    phrases.push("We do.");
  }
  function ownerOf(uint256 _tokenId) public view override returns(address){
        if(linkageId != 0){
        return linkage.ownerOf(linkageId);
        } else {
          return linkage.ownerOf(_tokenId);
        }
  }

  function balanceOf(address owner) public view virtual override returns (uint256) {
      if(owner == ownerOf(1)){
        return 1;
      } else {
        return 0;
      }
  }

  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
    require(from == address(0),"Token cannot be transfered");
  }

  function selector() public view returns(uint) {
    return (block.timestamp - anniv) / 52 weeks;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
  {
    string[3] memory parts = ['<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 1080 1920"> <style> .st0 { fill: #fff } div { color: white; font: 75px monospace; height: 100%; overflow: auto; } </style> <rect width="100%" height="100%" fill="black"></rect> <foreignObject x="100" y="500" width="766" height="700"> <div xmlns="http://www.w3.org/1999/xhtml">', phrases[selector()],'</div> </foreignObject> <svg x="10%" y="65%"> <g transform="scale(0.5)"> <path d="M254 694v-18l-13-29h10l8 20 7-20h10l-13 29v18h-9zm41 2c-6 0-10-2-13-7-3-4-5-10-5-18s2-15 5-19 7-6 13-6 11 2 14 6 4 10 4 19c0 8-1 14-4 18-3 5-8 7-14 7zm0-9c3 0 5-1 7-4l2-12-2-13c-2-3-4-4-7-4s-5 1-6 4l-2 13 2 12c1 3 3 4 6 4zm48-40h9v30c0 6-1 11-4 14s-7 5-12 5-9-2-12-5-4-8-4-14v-30h9v31l2 7c1 2 3 2 5 2s4 0 5-2l2-7v-31zm645 47-3-11h-13l-2 11h-10l13-47h12l12 47h-9zm-9-39-5 21h10l-5-21zm45 39-7-18h-6v18h-9v-47h14c5 0 9 1 12 3 3 3 4 6 4 11l-2 7-5 6 9 20h-10zm-9-25 6-2 2-6-2-5-6-2h-4v15h4zm31 25v-39h-10v-8h31v8h-11v39h-10zm26 0v-47h9v47h-9zm27-21c-4-1-6-3-8-5s-3-5-3-9 2-7 4-10c3-2 7-4 11-4 5 0 8 1 10 4 3 2 4 5 5 10l-9 1c0-3-1-4-2-5l-4-2-4 2-1 4 1 4 3 2 5 2c3 0 5 2 7 3l4 4 1 7c0 4-2 8-4 11-3 2-7 3-12 3-9 0-15-5-15-15h9l2 6c1 1 2 2 5 2l4-2 1-5-1-4-4-2-5-2zm33 21v-39h-11v-8h31v8h-11v39h-9zM297 568A273 273 0 0 1 22 293 273 273 0 0 1 297 18a273 273 0 0 1 275 275 273 273 0 0 1-275 275zm0-546A269 269 0 0 0 26 293a269 269 0 0 0 271 271 269 269 0 0 0 271-271A269 269 0 0 0 297 22zm430 575h660v4H727zm-708 0h554v4H19zm708-278h660v4H727z" class="st0" /> <path d="m1289 244-2 3-2 3-9 3h-2l-7-2h-5l-4 1-9 2-23 6h-2l2-1 13-5 4-2c2-1 2-3 1-4-1-2-3-3-5-3l-11-1-17 1h-2v-2l4-9c1-3 0-5-1-7l-1-2c-1-2-3-3-6-2s-6 3-8 6l-6 6a296 296 0 0 1-13 14h-2l1-2c4-3 4-4 1-7-1-2-3-3-5-1l-4 3-4-1c-1-3-3-3-5-2l-12 6-9 2-10 1-24 8c-2 1-3 1-3 3l3 5 2 1 8-1c6-1 12-4 17-6l11-4 11-3h2l1 1-5 1-1 2 3 9c1 1 1 2-1 4l-4 4-10 9-13 10-7 6-7 5-19 14-21 13-2 1-15 9-13 8-7 4-11 6-9 5-13 7-10 5-17 9-14 6-18 8-13 5-11 4-16 6a343 343 0 0 1-48 10c-5 1-10 0-15-1-6-2-10-7-12-14-1-5 0-10 1-16l3-10 5-13 9-16 9-11 6-8 5-6 3-3 1-1 6-7 11-11 13-11h2c3 1 5 1 8-1l8-3 6-3 11-5 6-3h1l11-5 2-1 7-3 6-3 5-2 8-3v2c2 2 4 3 7 1l4-2c2-1 2-2 2-3l2-1 2-2 2-1v1l1-2c0-2 2 0 2-1v-1c1-2 1-2 4-2l1-2v-1h1v-1l4 11c1 3 2 5 4 6 4 5 9 8 15 8h8l2-1 9-3 2-1 3-1 10-6 1-1 3-2 3-2 1-1c1 1 2 0 3-1 2-1 2-3 4-3h1l4-3 2-2 2-2c3 0 3-2 5-3l4-4h1l3-3 1-2 3-2 4-5 5-8 1-5c1-4 1-8-1-12l-4-5-3-4c-3-2-6-4-10-4h-1l-5-2h-1l-4 1-3 1-10 2-6 1c-3 0-5 2-8 3h-1l-7 3-3 1-3 2-4 1-8 4-3 2-7 3-2 1-6 4-4 2-2 1-8 4-3 2-3 2c-2 0-4 1-5 4h-3l-3 2-1 1-1 1c-2 0-3 2-5 3l-1 1-4 1v2l-2-1c0 2-2 3-4 3v1h-3l-9 3-16 5-9 4-16 6-13 6-14 6-11 6-8 3-17 7-10 5a764 764 0 0 1-28 9h-1l1-3 6-7 7-7 1-1 6-4 1-2 2-3c2 0 3-1 3-2 1-1 2-2 3-1-1-3 2-2 2-4l4-2 1-2c2-2 4-3 5-6h1l10-9 3-2h1l6-9 1-3c-2-3-5-6-9-5l-5 1-11 4-24 11-10 6-17 9-19 11-11 7-21 13-24 15-9 6-25 16h-1l1-2 2-2 4-4 6-4 11-10 4-4 5-4a98 98 0 0 0 16-14l2-1 2-2 2-1 12-9 11-10 11-8 12-9 6-5 11-7 21-14 3-2v-2l-1-1c-1-3-3-3-6-2l-4 2a544 544 0 0 0-25 18l-9 6-14 10-11 8-12 10-11 9-8 7-13 10-11 10-9 7-6 6-12 11-11 11-1 3c1 2 5 5 7 5l9-2a231 231 0 0 0 21-13l6-4 9-5 15-11 6-3 7-6 5-2 13-8 4-3 1-1 13-7 2-1 4-3 4-2 9-5 10-6 13-7 9-4 3-2 16-7 8-4h3l-1 2-4 4-9 8-16 14-9 8-8 7-9 10-5 6c-2 3-1 6 1 8 3 2 6 4 9 4l11-2 2-1 7-3 5-2 6-2 12-6h1l10-5 6-2 6-3 4-2h-2l4-2-1 2 7-4 2-1 3-1 10-4 25-11 6-2h4c-3 0-3 2-4 3h-1l-4 2-3 2v1c-1-1-2 0-2 1l-7 4-11 6-12 8c-2 1-2 1-1 3l-1 2c-1 2-2 5-5 5v3c-3-1-3-1-3 2-2-1-2-1-3 1l-3 4-3 1-3 4-1 2-2 1-5 5-1 1-2 3c-3 1-3 2-2 4h-2l-7 8-1 1-2 2-1 2-1 1-3 3-5 8-1 1-1 3-5 8-2 4-1 2-2 7-2 3-1 4v3l-1 2-1 1-1 5-1 4v-2l1-11v-1l1-3 1-5-1 1-2 9-1 1-1 2v17l5 9 9 7 13 4c7 1 14 1 21-1l9-1 12-3 9-3 10-3 11-4 9-4 10-3 2-1 1-1 6-2 8-3 13-7 4-2 6-2 7-4h1l6-3 9-5 12-6 14-7 6-4 10-5 5-4 11-6 3-3 5-2 3-2 4-2 3-3h2l5-4h1l1-1 6-4 14-10 15-10 18-15 8-6 5-5 4-2 1 4v2l1 2v2l2 7 2 10 1 3 1 6a65 65 0 0 1 1 8l3 4 4 1 2-1 4-9 5-13 2-5 5-12 6-10h6l13-4 6-1 9-2 7-2 8-3 13-3 5-1 7 2c3 1 7 1 10-1l4-2 1 2c0 2 2 2 3 3s2 0 2-1v-4l1-8v-4h-3zm-157 7-8 3h-4c-2 2-4 2-5 2a2033 2033 0 0 0-4 0l10-3 11-3h1l-1 1zm-258 35 1-1 5-2 1 1-7 2zm73-19c2 0 3-1 3-3 0-1 1-2 3-1 2 0 3-1 5-3l-4 1h-3c1-2 2-1 3-1l2-2 2-2 7-5 6-3-1-5 10-6 3-2v-1h2l8-5 13-7 10-5 9-4 4-3 10-5 14-6c5-2 11-5 17-6l8-2 9-1 12 1 9 4 3 3 1 6v3l-2 6-4 6c-3 5-7 8-11 12l-7 5a367 367 0 0 1-42 26l-12 4-9-1c-4-2-6-5-7-9s-2-9-1-14l-1-4-2-2-2-2-2 2v3l-1 2-13 11c-1 1-1 1-3-1l-3-1-15 6-26 11-3 1 1-1zM824 403c-2-1-1-2-1-4l1 3v1zm339-153h1v1h-1v-1zm32 8-5 12-7 14-5 12-7 17-1 2v-2l-2-9-2-3v-1l-1-3-1-4-2-7v-2l-1-2v-5l-1-2 1-2-1-4h2l3-1 6-5 8-6 3-2 11-2h4l-2 5zm3-11-10 1-3-1h2v-2l3-4 1-1 3-1c2-2 4-4 7-4l1-1 2-2v1l-3 12-3 2zm20 9-12 4-3 1v-1l2-6c1-2 2-2 3-2l13-1 8-1h2l-1 1-12 5zm170 17v-6c-1-4-1-7-3-10l-3-4-10-4h-31l-19 5-1 1h4l12-1h26l12 2c4 1 5 3 6 6l1 8 2 6 2 2h2v-5zm-92 71-1 1 1 1 1-1-1-1zm-337-85h-1 1zm349 286-22-10-21-6-7-2 19-26 5-7 3-4v-1 1-1l2-3 1-1 7-10c7-8 12-17 17-27l-1-1 2-3c0-3-2-4-5-4l-10 2h-1c-14 5-26 13-36 23l-13 14-2 1v1a234 234 0 0 0-20 30l-1 1-1 3-4 4c-2 2-4 5-6 5l-19 1-5 1v2l14 11-10 13c-10-12-18-1-27 2 1-4 2-8-3-9h-11l-10 6-25 20-10 8c2-4 2-7 4-9l4-7 10-16 9-12 2-4c2 0 2-2 3-3l10-14 25-36c3-5 3-8 0-12l-4 3-32 45a1691 1691 0 0 0-41 65c0 1 1 5 3 6 3 1 7 4 11 0l7-6 27-23 8-6 3 1-19 23c3 5 8 7 12 4l19-16c4-4 9-6 14-9l1 1-1 3-26 33c-1 1-2 3-1 4 1 4 10 4 12 1l12-14 16-20-1-4 3 1 3-4h-2l9-12c0 6 4 7 9 7l-6-15c9-4 19-1 30-3l-21 28-33 42c-5 8-12 15-18 22-1 2-1 3 2 4 5 2 8 1 12-5l22-30 18-23-1-1c7-7 13-15 18-24h1l6-8 1-1 1-2 8 1c11 3 23 5 35 10 7 2 14 7 20 12 4 2 4 7 2 11-4 9-11 16-18 22l-38 26-12 7c-4 1-5 3-7 6 3 5 8 6 12 3l18-12 20-12 2-1 2-2 2-2v1l6-6 6-6h1c0-1 0 0 0 0l10-10c3-4 6-8 6-14 0-11-7-18-16-22zm-182 0zm7-10h2-2zm13 21v-2 2zm62-22v-1c1 0 1 0 0 0h1v1h-1zm65-34v-1 1zm-45 24h-5l17-28 1-2a208 208 0 0 1 10-14c11-9 23-18 36-24v-1l5-1-1 1 1-1 6-1-2 4-48 66c-1 2-3 2-6 2l-14-1zm-6 44zm18-24zm7-8zm61 55zm-207-39-6-2-23 8-37 19-13 6-2-2 10-12 15-12c1-1 2-4 1-5l-4-3-6 2-11 10c-6 6-14 10-22 14l-1-1 16-15-3-6-6 2-18 19c-1 1 0 4 1 5 2 4 7 5 11 4l7-1 6 6c6 4 12 1 17-2l5-2 21-7 3-2 6-3 12-5 6-3-23 28-50 67c-15 21-28 43-42 65-5 8-8 17-12 25-1 2 0 4 1 5 4 3 11-1 12-7l1-7 8-15 28-43v-1l1-1h-1l1-2 3-4 6-10 10-12v-2l4-4a71 71 0 0 1 1-2l15-20 25-32 29-34c2-2 1-5-2-6zm-41 20h1l3-1 2-1-5 2h-1zm15-6 1-1-1 1zm-28 11h2-2zm-79-3 19-32c2-1 23-39 23-42l4-8 10-19 9-16 13-23 8-12 12-21 19-29c3-4 5-8 0-13l-3 2-8 13-35 60-25 46-21 40-22 37-21 29 3-6 2-4a305 305 0 0 1 7-15l3-7h1l9-21-1-1 1-2 1-6h1v-3l-1-7-1-2-1-3c-2-3-5-7-9-7l-15 2c-11 3-20 9-29 15a150 150 0 0 0-38 28l-17 17c-4 5-8 11-10 17l-2 1c-2 3-5 8-1 12 3 3 7 6 11 7 10 3 21 0 30-3l14-3 14-5-19 3-30 4c-8 0-11-3-12-11l-1 1 3-7 5-8 4-6 10-11 8-8 15-12 21-12 18-10 1-1 17-4c4 0 8 3 7 7l-4 20-34 72c-3 8-3 8 6 9l7-9 7-11 5-8h1l11-14zm-74 23v1h-1l1-1zm252-104 2-7 7-6h-6l6-4h-4c-3 1-7 2-8 4-2 4-2 9-2 14l3-2 2 1zm203 26-5-5c-3 1-5 3-6 6-2 2 3 6 5 6 4 0 6-2 6-7z" class="st0" /> <path d="m1289 456 2-1a202 202 0 0 0-2 1zm2-1zm-115 159h-1 1zm32-81z" class="st0" /> </g> </svg> </svg>'];
    string memory svgData = string(abi.encodePacked(parts[0], parts[1],parts[2]));
    string memory json = Base64.encode(
        bytes(
            string(
                abi.encodePacked(
                    '{"name": "Marital Obligations"',
                    ', "description": "Ania Catherine and Dejha Ti`s [Let Me Check with the Wife] (2022), the duo`s marriage certificate in physical and digital formats is completed with this dynamic NFT entitled [Marital Obligations]. As a hyperbolic flip on the expectation of utility with NFT artworks, and drawing on the concept of marital obligations, the collector will receive direction or might be expected to provide the artists with specific actions or gifts on their anniversary (July 19); this aspect of the artist-collector relationship is managed via a dynamic NFT entitled [Marital Obligations] which is non-transferable. In the case of divorce, there will be one final obligation and no further anniversary gifts expected. The QR code/Etherscan link added to the marriage certificate leads to the MaritalObligations smart contract which is connected directly to the dynamic NFT and contains an on-chain transcription of the marriage certificate.",',
                    '"image": "data:image/svg+xml;base64,',
                    Base64.encode(bytes(svgData)),
                    '"}'
                )
            )
        )
    );
    return string(abi.encodePacked("data:application/json;base64,", json));
}

  function artWorkDescription() public view returns(string memory) {
      return md.artworkDescription();
  }

  function medium() public view returns(string memory) {
      return md.medium(); 
  }

  function licenseAndCertificateOfMarriage() public view returns(string memory) {
      return md.licenseAndCertificateOfMarriage(); 
  }

  function reverseUtility() public view returns(string memory) {
      return md.reverseUtility();
  }

  function archivalHygeine() public view returns(string memory) {
      return md.archivalHygeine(); 
  }

  function termsOfUse() public view returns(string memory) {
    return md.termsOfUse();
  }

  function setLinkage(IERC721 _linkage,uint _id) public onlyOwner { 
    require(linkageSet == false,"Linkage already set and cannot be updated");
    linkage = _linkage;
    linkageId = _id;
  }

  function finalizeLinkage() public onlyOwner {
    require(linkageSet == false,"Linkage already set and cannot be updated");
    linkageSet = true;
  }

  function writeMessage(string memory _string) public onlyOwner{
    require(msg.sender == owner(), 'Not operator and cannot write to array');
    phrases.push(_string);
  }

  function alertMessage(string memory _string) public onlyOwner{
    require(msg.sender == owner(), 'Not operator and cannot write to array');
    phrases[selector()] = _string;
  }

  function editMessage(string memory _string, uint index) public onlyOwner {
    phrases[index] = _string;
  }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract MetaData","name":"_md","type":"address"},{"internalType":"contract IERC721","name":"_linkage","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"string","name":"_string","type":"string"}],"name":"alertMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"archivalHygeine","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"artWorkDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_string","type":"string"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"editMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalizeLinkage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"licenseAndCertificateOfMarriage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"md","outputs":[{"internalType":"contract MetaData","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"medium","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"phrases","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reverseUtility","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"selector","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"_linkage","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setLinkage","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":[],"name":"termsOfUse","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_string","type":"string"}],"name":"writeMessage","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526360f522f0600a553480156200001957600080fd5b5060405162004498380380620044988339810160408190526200003c9162000412565b60408051808201825260088082526727b832b930ba37b960c11b6020808401828152855180870190965292855284015281519192916200007f916000916200036c565b508051620000959060019060208401906200036c565b505050620000b2620000ac6200015e60201b60201c565b62000162565b600b80546001600160a01b038086166001600160a01b03199283161790925560078054928516929091169190911790556008819055620000f4336001620001b4565b60098054600181018255600091909152604080518082019091526006808252652bb29032379760d11b602090920191825262000154927f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0191906200036c565b50505050620004d4565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002105760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620002775760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000207565b62000285600083836200030e565b6001600160a01b0382166000908152600360205260408120805460019290620002b090849062000459565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831615620003675760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e2063616e6e6f74206265207472616e736665726564000000000000604482015260640162000207565b505050565b8280546200037a906200047e565b90600052602060002090601f0160209004810192826200039e5760008555620003e9565b82601f10620003b957805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e9578251825591602001919060010190620003cc565b50620003f7929150620003fb565b5090565b5b80821115620003f75760008155600101620003fc565b60008060006060848603121562000427578283fd5b83516200043481620004bb565b60208501519093506200044781620004bb565b80925050604084015190509250925092565b600082198211156200047957634e487b7160e01b81526011600452602481fd5b500190565b600181811c908216806200049357607f821691505b60208210811415620004b557634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0381168114620004d157600080fd5b50565b613fb480620004e46000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063846e1adc11610104578063be550934116100a2578063e985e9c511610071578063e985e9c5146103a7578063ea3d508a146103e3578063ed11d76f146103eb578063f2fde38b146103fe57600080fd5b8063be55093414610366578063c87b56dd14610379578063d33810531461038c578063e8b47a9a1461039f57600080fd5b806397ccd07b116100de57806397ccd07b14610325578063a22cb4651461032d578063b588bfad14610340578063b88d4fde1461035357600080fd5b8063846e1adc146103045780638da5cb5b1461030c57806395d89b411461031d57600080fd5b80634a0bf2a01161017c5780636352211e1161014b5780636352211e146102c057806370a08231146102d3578063715018a6146102f457806381b29bd6146102fc57600080fd5b80634a0bf2a01461028a5780634c30a6a3146102925780635d52c816146102a5578063605fc23c146102ad57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780631901ab641461025c57806323b872dd1461026457806342842e0e1461027757600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046119f8565b610411565b60405190151581526020015b60405180910390f35b61020f610463565b6040516101fe9190612132565b61022f61022a366004611b19565b6104f5565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119cd565b61058f565b005b61020f6106a5565b61025a6102723660046118df565b61072b565b61025a6102853660046118df565b61075c565b61020f610777565b61025a6102a03660046119cd565b6107bc565b61020f610836565b61025a6102bb366004611ad6565b61087b565b61022f6102ce366004611b19565b6108e4565b6102e66102e136600461186f565b6109a6565b6040519081526020016101fe565b61025a6109db565b61020f610a11565b61025a610a56565b6006546001600160a01b031661022f565b61020f610abf565b61020f610ace565b61025a61033b36600461199c565b610b13565b61025a61034e366004611a30565b610bd8565b61025a61036136600461191f565b610c73565b61025a610374366004611a30565b610cab565b61020f610387366004611b19565b610d45565b61020f61039a366004611b19565b610ee3565b61020f610f8f565b6101f26103b53660046118a7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e6610fd4565b600b5461022f906001600160a01b031681565b61025a61040c36600461186f565b610ff3565b60006001600160e01b031982166380ac58cd60e01b148061044257506001600160e01b03198216635b5e139f60e01b145b8061045d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104729061239f565b80601f016020809104026020016040519081016040528092919081815260200182805461049e9061239f565b80156104eb5780601f106104c0576101008083540402835291602001916104eb565b820191906000526020600020905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059a8261108e565b9050806001600160a01b0316836001600160a01b031614156106085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056a565b336001600160a01b0382161480610624575061062481336103b5565b6106965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056a565b6106a08383611105565b505050565b600b54604080516306406ad960e21b815290516060926001600160a01b031691631901ab64916004808301926000929190829003018186803b1580156106ea57600080fd5b505afa1580156106fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107269190810190611a63565b905090565b6107353382611173565b6107515760405162461bcd60e51b815260040161056a9061225b565b6106a083838361126a565b6106a083838360405180602001604052806000815250610c73565b600b5460408051630ac2cbf560e11b815290516060926001600160a01b03169163158597ea916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b031633146107e65760405162461bcd60e51b815260040161056a90612226565b600754600160a01b900460ff16156108105760405162461bcd60e51b815260040161056a906121dd565b600780546001600160a01b0319166001600160a01b039390931692909217909155600855565b600b5460408051632ea9640b60e11b815290516060926001600160a01b031691635d52c816916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b031633146108a55760405162461bcd60e51b815260040161056a90612226565b81600982815481106108c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200190805190602001906106a0929190611772565b6000600854600014610975576007546008546040516331a9108f60e11b81526001600160a01b0390921691636352211e916109259160040190815260200190565b60206040518083038186803b15801561093d57600080fd5b505afa158015610951573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045d919061188b565b6007546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401610925565b60006109b260016108e4565b6001600160a01b0316826001600160a01b031614156109d357506001919050565b506000919050565b6006546001600160a01b03163314610a055760405162461bcd60e51b815260040161056a90612226565b610a0f6000611415565b565b600b54604080516340d94deb60e11b815290516060926001600160a01b0316916381b29bd6916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b03163314610a805760405162461bcd60e51b815260040161056a90612226565b600754600160a01b900460ff1615610aaa5760405162461bcd60e51b815260040161056a906121dd565b6007805460ff60a01b1916600160a01b179055565b6060600180546104729061239f565b600b54604080516397ccd07b60e01b815290516060926001600160a01b0316916397ccd07b916004808301926000929190829003018186803b1580156106ea57600080fd5b6001600160a01b038216331415610b6c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610c025760405162461bcd60e51b815260040161056a90612226565b6006546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161056a90612197565b600980546001810182556000919091528151610c6f917f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01906020840190611772565b5050565b610c7d3383611173565b610c995760405162461bcd60e51b815260040161056a9061225b565b610ca584848484611467565b50505050565b6006546001600160a01b03163314610cd55760405162461bcd60e51b815260040161056a90612226565b6006546001600160a01b03163314610cff5760405162461bcd60e51b815260040161056a90612197565b806009610d0a610fd4565b81548110610d2857634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610c6f929190611772565b606060006040518060600160405280604051806101c001604052806101858152602001613dfa610185913981526020016009610d7f610fd4565b81548110610d9d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610db29061239f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde9061239f565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b50505050508152602001604051806119c0016040528061198881526020016124726119889139905280516020808301516040808501519051949550600094610e74949301611b79565b60405160208183030381529060405290506000610eb7610e938361149a565b604051602001610ea39190611bbc565b60405160208183030381529060405261149a565b905080604051602001610eca91906120b0565b6040516020818303038152906040529350505050919050565b60098181548110610ef357600080fd5b906000526020600020016000915090508054610f0e9061239f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3a9061239f565b8015610f875780601f10610f5c57610100808354040283529160200191610f87565b820191906000526020600020905b815481529060010190602001808311610f6a57829003601f168201915b505050505081565b600b546040805163745a3d4d60e11b815290516060926001600160a01b03169163e8b47a9a916004808301926000929190829003018186803b1580156106ea57600080fd5b60006301dfe200600a5442610fe9919061235c565b610726919061231d565b6006546001600160a01b0316331461101d5760405162461bcd60e51b815260040161056a90612226565b6001600160a01b0381166110825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b61108b81611415565b50565b6000818152600260205260408120546001600160a01b03168061045d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113a8261108e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056a565b60006111f78361108e565b9050806001600160a01b0316846001600160a01b031614806112325750836001600160a01b0316611227846104f5565b6001600160a01b0316145b8061126257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127d8261108e565b6001600160a01b0316146112e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056a565b6001600160a01b0382166113475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056a565b61135283838361160e565b61135d600082611105565b6001600160a01b038316600090815260036020526040812080546001929061138690849061235c565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b4908490612305565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61147284848461126a565b61147e84848484611665565b610ca55760405162461bcd60e51b815260040161056a90612145565b60608151600014156114ba57505060408051602081019091526000815290565b600060405180606001604052806040815260200161243260409139905060006003845160026114e99190612305565b6114f3919061231d565b6114fe90600461233d565b9050600061150d826020612305565b67ffffffffffffffff81111561153357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561155d576020820181803683370190505b509050818152600183018586518101602084015b818310156115c9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611571565b6003895106600181146115e357600281146115f457611600565b613d3d60f01b600119830152611600565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b038316156106a05760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e2063616e6e6f74206265207472616e736665726564000000000000604482015260640161056a565b60006001600160a01b0384163b1561176757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116a99033908990889088906004016120f5565b602060405180830381600087803b1580156116c357600080fd5b505af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611a14565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161056a90612145565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611262565b506001949350505050565b82805461177e9061239f565b90600052602060002090601f0160209004810192826117a057600085556117e6565b82601f106117b957805160ff19168380011785556117e6565b828001600101855582156117e6579182015b828111156117e65782518255916020019190600101906117cb565b506117f29291506117f6565b5090565b5b808211156117f257600081556001016117f7565b600061181e611819846122dd565b6122ac565b905082815283838301111561183257600080fd5b828260208301376000602084830101529392505050565b600082601f830112611859578081fd5b6118688383356020850161180b565b9392505050565b600060208284031215611880578081fd5b813561186881612406565b60006020828403121561189c578081fd5b815161186881612406565b600080604083850312156118b9578081fd5b82356118c481612406565b915060208301356118d481612406565b809150509250929050565b6000806000606084860312156118f3578081fd5b83356118fe81612406565b9250602084013561190e81612406565b929592945050506040919091013590565b60008060008060808587031215611934578081fd5b843561193f81612406565b9350602085013561194f81612406565b925060408501359150606085013567ffffffffffffffff811115611971578182fd5b8501601f81018713611981578182fd5b6119908782356020840161180b565b91505092959194509250565b600080604083850312156119ae578182fd5b82356119b981612406565b9150602083013580151581146118d4578182fd5b600080604083850312156119df578182fd5b82356119ea81612406565b946020939093013593505050565b600060208284031215611a09578081fd5b81356118688161241b565b600060208284031215611a25578081fd5b81516118688161241b565b600060208284031215611a41578081fd5b813567ffffffffffffffff811115611a57578182fd5b61126284828501611849565b600060208284031215611a74578081fd5b815167ffffffffffffffff811115611a8a578182fd5b8201601f81018413611a9a578182fd5b8051611aa8611819826122dd565b818152856020838501011115611abc578384fd5b611acd826020830160208601612373565b95945050505050565b60008060408385031215611ae8578182fd5b823567ffffffffffffffff811115611afe578283fd5b611b0a85828601611849565b95602094909401359450505050565b600060208284031215611b2a578081fd5b5035919050565b60008151808452611b49816020860160208601612373565b601f01601f19169290920160200192915050565b60008151611b6f818560208601612373565b9290920192915050565b60008451611b8b818460208901612373565b845190830190611b9f818360208901612373565b8451910190611bb2818360208801612373565b0195945050505050565b7f7b226e616d65223a20224d61726974616c204f626c69676174696f6e7322000081527f2c20226465736372697074696f6e223a2022416e696120436174686572696e65601e8201527f20616e642044656a68612054696073205b4c6574204d6520436865636b207769603e8201527f74682074686520576966655d202832303232292c207468652064756f6073206d605e8201527f6172726961676520636572746966696361746520696e20706879736963616c20607e8201527f616e64206469676974616c20666f726d61747320697320636f6d706c65746564609e8201527f207769746820746869732064796e616d6963204e465420656e7469746c65642060be8201527f5b4d61726974616c204f626c69676174696f6e735d2e2041732061206879706560de8201527f72626f6c696320666c6970206f6e20746865206578706563746174696f6e206f60fe8201527f66207574696c6974792077697468204e465420617274776f726b732c20616e6461011e8201527f2064726177696e67206f6e2074686520636f6e63657074206f66206d6172697461013e8201527f616c206f626c69676174696f6e732c2074686520636f6c6c6563746f7220776961015e8201527f6c6c207265636569766520646972656374696f6e206f72206d6967687420626561017e8201527f20657870656374656420746f2070726f7669646520746865206172746973747361019e8201527f207769746820737065636966696320616374696f6e73206f72206769667473206101be8201527f6f6e20746865697220616e6e697665727361727920284a756c79203139293b206101de8201527f7468697320617370656374206f6620746865206172746973742d636f6c6c65636101fe8201527f746f722072656c6174696f6e73686970206973206d616e61676564207669612061021e8201527f612064796e616d6963204e465420656e7469746c6564205b4d61726974616c2061023e8201527f4f626c69676174696f6e735d207768696368206973206e6f6e2d7472616e736661025e8201527f657261626c652e20496e207468652063617365206f66206469766f7263652c2061027e8201527f74686572652077696c6c206265206f6e652066696e616c206f626c696761746961029e8201527f6f6e20616e64206e6f206675727468657220616e6e69766572736172792067696102be8201527f6674732065787065637465642e2054686520515220636f64652f4574686572736102de8201527f63616e206c696e6b20616464656420746f20746865206d6172726961676520636102fe8201527f65727469666963617465206c6561647320746f20746865204d61726974616c4f61031e8201527f626c69676174696f6e7320736d61727420636f6e74726163742077686963682061033e8201527f697320636f6e6e6563746564206469726563746c7920746f207468652064796e61035e8201527f616d6963204e465420616e6420636f6e7461696e7320616e206f6e2d6368616961037e8201527f6e207472616e736372697074696f6e206f6620746865206d617272696167652061039e8201526d18d95c9d1a599a58d85d194b888b60921b6103be8201527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736103cc82015263194d8d0b60e21b6103ec82015260006118686120a26103f0840185611b5d565b61227d60f01b815260020190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516120e881601d850160208701612373565b91909101601d0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212890830184611b31565b9695505050505050565b6020815260006118686020830184611b31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4e6f74206f70657261746f7220616e642063616e6e6f7420777269746520746f60408201526520617272617960d01b606082015260800190565b60208082526029908201527f4c696e6b61676520616c72656164792073657420616e642063616e6e6f74206260408201526819481d5c19185d195960ba1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122d5576122d56123f0565b604052919050565b600067ffffffffffffffff8211156122f7576122f76123f0565b50601f01601f191660200190565b60008219821115612318576123186123da565b500190565b60008261233857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612357576123576123da565b500290565b60008282101561236e5761236e6123da565b500390565b60005b8381101561238e578181015183820152602001612376565b83811115610ca55750506000910152565b600181811c908216806123b357607f821691505b602082108114156123d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461108b57600080fd5b6001600160e01b03198116811461108b57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f6469763e203c2f666f726569676e4f626a6563743e203c73766720783d223130252220793d22363525223e203c67207472616e73666f726d3d227363616c6528302e3529223e203c7061746820643d224d32353420363934762d31386c2d31332d32396831306c3820323020372d32306831306c2d3133203239763138682d397a6d34312032632d3620302d31302d322d31332d372d332d342d352d31302d352d313873322d313520352d313920372d362031332d362031312032203134203620342031302034203139633020382d312031342d342031382d3320352d3820372d313420377a6d302d396333203020352d3120372d346c322d31322d322d3133632d322d332d342d342d372d34732d3520312d3620346c2d3220313320322031326331203320332034203620347a6d34382d34306839763330633020362d312031312d34203134732d3720352d313220352d392d322d31322d352d342d382d342d3134762d333068397633316c3220376331203220332032203520327334203020352d326c322d37762d33317a6d3634352034372d332d3131682d31336c2d32203131682d31306c31332d34376831326c3132203437682d397a6d2d392d33392d352032316831306c2d352d32317a6d34352033392d372d3138682d36763138682d39762d343768313463352030203920312031322033203320332034203620342031316c2d3220372d3520362039203230682d31307a6d2d392d323520362d3220322d362d322d352d362d32682d3476313568347a6d3331203235762d3339682d3130762d386833317638682d3131763339682d31307a6d32362030762d34376839763437682d397a6d32372d3231632d342d312d362d332d382d35732d332d352d332d3920322d3720342d313063332d3220372d342031312d3420352030203820312031302034203320322034203520352031306c2d39203163302d332d312d342d322d356c2d342d322d3420322d3120342031203420332032203520326333203020352032203720336c34203420312037633020342d3220382d342031312d3320322d3720332d313220332d3920302d31352d352d31352d313568396c3220366331203120322032203520326c342d3220312d352d312d342d342d322d352d327a6d3333203231762d3339682d3131762d386833317638682d3131763339682d397a4d323937203536384132373320323733203020302031203232203239332032373320323733203020302031203239372031386132373320323733203020302031203237352032373520323733203237332030203020312d323735203237357a6d302d353436413236392032363920302030203020323620323933613236392032363920302030203020323731203237312032363920323639203020302030203237312d3237314132363920323639203020302030203239372032327a6d34333020353735683636307634483732377a6d2d37303820306835353476344831397a6d3730382d323738683636307634483732377a2220636c6173733d2273743022202f3e203c7061746820643d226d31323839203234342d3220332d3220332d392033682d326c2d372d32682d356c2d3420312d3920322d32332036682d326c322d312031332d3520342d3263322d3120322d3320312d342d312d322d332d332d352d336c2d31312d312d31372031682d32762d326c342d3963312d3320302d352d312d376c2d312d32632d312d322d332d332d362d32732d3620332d3820366c2d36203661323936203239362030203020312d3133203134682d326c312d3263342d3320342d3420312d372d312d322d332d332d352d316c2d3420332d342d31632d312d332d332d332d352d326c2d313220362d3920322d313020312d32342038632d3220312d3320312d3320336c3320352032203120382d3163362d312031322d342031372d366c31312d342031312d3368326c3120312d3520312d3120322033203963312031203120322d3120346c2d3420342d313020392d31332031302d3720362d3720352d31392031342d32312031332d3220312d313520392d313320382d3720342d313120362d3920352d313320372d313020352d313720392d313420362d313820382d313320352d313120342d3136203661333433203334332030203020312d3438203130632d3520312d313020302d31352d312d362d322d31302d372d31322d31342d312d3520302d313020312d31366c332d313020352d313320392d313620392d313120362d3820352d3620332d3320312d3120362d372031312d31312031332d31316832633320312035203120382d316c382d3320362d332031312d3520362d3368316c31312d3520322d3120372d3320362d3320352d3220382d3376326332203220342033203720316c342d3263322d3120322d3220322d336c322d3120322d3220322d3176316c312d3263302d322032203020322d31762d3163312d3220312d3220342d326c312d32762d316831762d316c342031316331203320322035203420362034203520392038203135203868386c322d3120392d3320322d3120332d312031302d3620312d3120332d3220332d3220312d31633120312032203020332d3120322d3120322d3320342d3368316c342d3320322d3220322d326333203020332d3220352d336c342d3468316c332d3320312d3220332d3220342d3520352d3820312d3563312d3420312d382d312d31326c2d342d352d332d34632d332d322d362d342d31302d34682d316c2d352d32682d316c2d3420312d3320312d313020322d362031632d3320302d3520322d382033682d316c2d3720332d3320312d3320322d3420312d3820342d3320322d3720332d3220312d3620342d3420322d3220312d3820342d3320322d332032632d3220302d3420312d352034682d336c2d3320322d3120312d312031632d3220302d3320322d3520336c2d3120312d34203176326c2d322d31633020322d3220332d3420337631682d336c2d3920332d313620352d3920342d313620362d313320362d313420362d313120362d3820332d313720372d3130203561373634203736342030203020312d32382039682d316c312d3320362d3720372d3720312d3120362d3420312d3220322d336332203020332d3120332d3220312d3120322d3220332d312d312d3320322d3220322d346c342d3220312d3263322d3220342d3320352d3668316c31302d3920332d3268316c362d3920312d33632d322d332d352d362d392d356c2d3520312d313120342d32342031312d313020362d313720392d31392031312d313120372d32312031332d32342031352d3920362d3235203136682d316c312d3220322d3220342d3420362d342031312d313020342d3420352d346139382039382030203020302031362d31346c322d3120322d3220322d312031322d392031312d31302031312d382031322d3920362d352031312d372032312d313420332d32762d326c2d312d31632d312d332d332d332d362d326c2d34203261353434203534342030203020302d32352031386c2d3920362d31342031302d313120382d31322031302d313120392d3820372d31332031302d31312031302d3920372d3620362d31322031312d31312031312d3120336331203220352035203720356c392d3261323331203233312030203020302032312d31336c362d3420392d352031352d313120362d3320372d3620352d322031332d3820342d3320312d312031332d3720322d3120342d3320342d3220392d352031302d362031332d3720392d3420332d322031362d3720382d3468336c2d3120322d3420342d3920382d31362031342d3920382d3820372d392031302d352036632d3220332d312036203120382033203220362034203920346c31312d3220322d3120372d3320352d3220362d322031322d3668316c31302d3520362d3220362d3320342d32682d326c342d322d31203220372d3420322d3120332d312031302d342032352d313120362d326834632d3320302d3320322d342033682d316c2d3420322d3320327631632d312d312d3220302d3220316c2d3720342d313120362d31322038632d3220312d3220312d3120336c2d312032632d3120322d3220352d3520357633632d332d312d332d312d3320322d322d312d322d312d3320316c2d3320342d3320312d3320342d3120322d3220312d3520352d3120312d322033632d3320312d3320322d322034682d326c2d3720382d3120312d3220322d3120322d3120312d3320332d3520382d3120312d3120332d3520382d3220342d3120322d3220372d3220332d31203476336c2d3120322d3120312d3120352d312034762d326c312d3131762d316c312d3320312d352d3120312d3220392d3120312d3120327631376c3520392039203720313320346337203120313420312032312d316c392d312031322d3320392d332031302d332031312d3420392d342031302d3320322d3120312d3120362d3220382d332031332d3720342d3220362d3220372d3468316c362d3320392d352031322d362031342d3720362d342031302d3520352d342031312d3620332d3320352d3220332d3220342d3220332d3368326c352d3468316c312d3120362d342031342d31302031352d31302031382d313520382d3620352d3520342d322031203476326c31203276326c32203720322031302031203320312036613635203635203020302031203120386c3320342034203120322d3120342d3920352d313320322d3520352d313220362d313068366c31332d3420362d3120392d3220372d3220382d332031332d3320352d312037203263332031203720312031302d316c342d32203120326330203220322032203320337332203020322d31762d346c312d38762d34682d337a6d2d31353720372d382033682d34632d3220322d3420322d352032613230333320323033332030203020302d3420306c31302d332031312d3368316c2d3120317a6d2d32353820333520312d3120352d32203120312d3720327a6d37332d31396332203020332d3120332d3320302d3120312d3220332d312032203020332d3120352d336c2d342031682d3363312d3220322d3120332d316c322d3220322d3220372d3520362d332d312d352031302d3620332d32762d3168326c382d352031332d372031302d3520392d3420342d332031302d352031342d3663352d322031312d352031372d366c382d3220392d31203132203120392034203320332031203676336c2d3220362d342036632d3320352d3720382d31312031326c2d37203561333637203336372030203020312d34322032366c2d313220342d392d31632d342d322d362d352d372d39732d322d392d312d31346c2d312d342d322d322d322d322d32203276336c2d3120322d3133203131632d3120312d3120312d332d316c2d332d312d313520362d32362031312d33203120312d317a4d38323420343033632d322d312d312d322d312d346c31203376317a6d3333392d31353368317631682d31762d317a6d333220382d352031322d372031342d352031322d372031372d312032762d326c2d322d392d322d33762d316c2d312d332d312d342d322d37762d326c2d312d32762d356c2d312d3220312d322d312d3468326c332d3120362d3520382d3620332d322031312d3268346c2d3220357a6d332d31312d313020312d332d316832762d326c332d3420312d3120332d3163322d3220342d3420372d346c312d3120322d3276316c2d332031322d3320327a6d323020392d313220342d332031762d316c322d3663312d3220322d3220332d326c31332d3120382d3168326c2d3120312d313220357a6d313730203137762d36632d312d342d312d372d332d31306c2d332d342d31302d34682d33316c2d313920352d31203168346c31322d316832366c313220326334203120352033203620366c31203820322036203220326832762d357a6d2d39322037312d3120312031203120312d312d312d317a6d2d3333372d3835682d3120317a6d333439203238362d32322d31302d32312d362d372d322031392d323620352d3720332d34762d3120312d316c322d3320312d3120372d313063372d382031322d31372031372d32376c2d312d3120322d3363302d332d322d342d352d346c2d31302032682d31632d313420352d32362031332d33362032336c2d31332031342d322031763161323334203233342030203020302d32302033306c2d3120312d3120332d342034632d3220322d3420352d3620356c2d313920312d35203176326c31342031312d3130203133632d31302d31322d31382d312d3237203220312d3420322d382d332d39682d31316c2d313020362d32352032302d3130203863322d3420322d3720342d396c342d372031302d313620392d313220322d346332203020322d3220332d336c31302d31342032352d333663332d3520332d3820302d31326c2d3420332d3332203435613136393120313639312030203020302d3431203635633020312031203520332036203320312037203420313120306c372d362032372d323320382d36203320312d3139203233633320352038203720313220346c31392d313663342d3420392d362031342d396c3120312d3120332d3236203333632d3120312d3220332d31203420312034203130203420313220316c31322d31342031362d32302d312d342033203120332d34682d326c392d31326330203620342037203920376c2d362d313563392d342031392d312033302d336c2d32312032382d3333203432632d3520382d31322031352d31382032322d3120322d3120332032203420352032203820312031322d356c32322d33302031382d32332d312d3163372d372031332d31352031382d323468316c362d3820312d3120312d322038203163313120332032332035203335203130203720322031342037203230203132203420322034203720322031312d3420392d31312031362d31382032326c2d33382032362d31322037632d3420312d3520332d372036203320352038203620313220336c31382d31322032302d313220322d3120322d3220322d3276316c362d3620362d36683163302d3120302030203020306c31302d313063332d3420362d3820362d313420302d31312d372d31382d31362d32327a6d2d31383220307a6d372d313068322d327a6d3133203231762d3220327a6d36322d3232762d3163312030203120302030203068317631682d317a6d36352d3334762d3120317a6d2d3435203234682d356c31372d323820312d3261323038203230382030203020312031302d31346331312d392032332d31382033362d3234762d316c352d312d31203120312d3120362d312d3220342d3438203636632d3120322d3320322d3620326c2d31342d317a6d2d362034347a6d31382d32347a6d372d387a6d36312035357a6d2d3230372d33392d362d322d323320382d33372031392d313320362d322d322031302d31322031352d313263312d3120322d3420312d356c2d342d332d3620322d3131203130632d3620362d31342031302d32322031346c2d312d312031362d31352d332d362d3620322d3138203139632d3120312030203420312035203220342037203520313120346c372d31203620366336203420313220312031372d326c352d322032312d3720332d3220362d332031322d3520362d332d32332032382d3530203637632d31352032312d32382034332d34322036352d3520382d382031372d31322032352d3120322030203420312035203420332031312d312031322d376c312d3720382d31352032382d3433762d316c312d31682d316c312d3220332d3420362d31302031302d3132762d326c342d3461373120373120302030203120312d326c31352d32302032352d33322032392d333463322d3220312d352d322d367a6d2d343120323068316c332d3120322d312d352032682d317a6d31352d3620312d312d3120317a6d2d323820313168322d327a6d2d37392d332031392d333263322d312032332d33392032332d34326c342d382031302d313920392d31362031332d323320382d31322031322d32312031392d323963332d3420352d3820302d31336c2d3320322d382031332d33352036302d32352034362d32312034302d32322033372d323120323920332d3620322d34613330352033303520302030203120372d31356c332d3768316c392d32312d312d3120312d3220312d366831762d336c2d312d372d312d322d312d33632d322d332d352d372d392d376c2d31352032632d313120332d323020392d323920313561313530203135302030203020302d33382032386c2d3137203137632d3420352d382031312d31302031376c2d322031632d3220332d3520382d3120313220332033203720362031312037203130203320323120302033302d336c31342d332031342d352d313920332d33302034632d3820302d31312d332d31322d31316c2d31203120332d3720352d3820342d362031302d313120382d382031352d31322032312d31322031382d313020312d312031372d346334203020382033203720376c2d342032302d3334203732632d3320382d332038203620396c372d3920372d313120352d3868316c31312d31347a6d2d37342032337631682d316c312d317a6d3235322d31303420322d3720372d36682d366c362d34682d34632d3320312d3720322d3820342d3220342d3220392d322031346c332d32203220317a6d3230332032362d352d35632d3320312d3520332d3620362d32203220332036203520362034203020362d3220362d377a2220636c6173733d2273743022202f3e203c7061746820643d226d313238392034353620322d3161323032203230322030203020302d3220317a6d322d317a6d2d31313520313539682d3120317a6d33322d38317a2220636c6173733d2273743022202f3e203c2f673e203c2f7376673e203c2f7376673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c3a73706163653d227072657365727665222069643d224c617965725f312220783d22302220793d2230222076657273696f6e3d22312e31222076696577426f783d2230203020313038302031393230223e203c7374796c653e202e737430207b2066696c6c3a2023666666207d20646976207b20636f6c6f723a2077686974653b20666f6e743a2037357078206d6f6e6f73706163653b206865696768743a20313030253b206f766572666c6f773a206175746f3b207d203c2f7374796c653e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b223e3c2f726563743e203c666f726569676e4f626a65637420783d223130302220793d22353030222077696474683d2237363622206865696768743d22373030223e203c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c223ea2646970667358221220c767a0cc0b74b4a48a9869c8c5ae191f99634190fe05d53cc300cdb0ff154a9f64736f6c63430008040033000000000000000000000000420f67f0239fff147a1c5ccddeeb55b3d0292e58000000000000000000000000ade67943757ff34779bbe488b566833698dc0cee0000000000000000000000000000000000000000000000000000000000000003

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063846e1adc11610104578063be550934116100a2578063e985e9c511610071578063e985e9c5146103a7578063ea3d508a146103e3578063ed11d76f146103eb578063f2fde38b146103fe57600080fd5b8063be55093414610366578063c87b56dd14610379578063d33810531461038c578063e8b47a9a1461039f57600080fd5b806397ccd07b116100de57806397ccd07b14610325578063a22cb4651461032d578063b588bfad14610340578063b88d4fde1461035357600080fd5b8063846e1adc146103045780638da5cb5b1461030c57806395d89b411461031d57600080fd5b80634a0bf2a01161017c5780636352211e1161014b5780636352211e146102c057806370a08231146102d3578063715018a6146102f457806381b29bd6146102fc57600080fd5b80634a0bf2a01461028a5780634c30a6a3146102925780635d52c816146102a5578063605fc23c146102ad57600080fd5b8063095ea7b3116101b8578063095ea7b3146102475780631901ab641461025c57806323b872dd1461026457806342842e0e1461027757600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046119f8565b610411565b60405190151581526020015b60405180910390f35b61020f610463565b6040516101fe9190612132565b61022f61022a366004611b19565b6104f5565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046119cd565b61058f565b005b61020f6106a5565b61025a6102723660046118df565b61072b565b61025a6102853660046118df565b61075c565b61020f610777565b61025a6102a03660046119cd565b6107bc565b61020f610836565b61025a6102bb366004611ad6565b61087b565b61022f6102ce366004611b19565b6108e4565b6102e66102e136600461186f565b6109a6565b6040519081526020016101fe565b61025a6109db565b61020f610a11565b61025a610a56565b6006546001600160a01b031661022f565b61020f610abf565b61020f610ace565b61025a61033b36600461199c565b610b13565b61025a61034e366004611a30565b610bd8565b61025a61036136600461191f565b610c73565b61025a610374366004611a30565b610cab565b61020f610387366004611b19565b610d45565b61020f61039a366004611b19565b610ee3565b61020f610f8f565b6101f26103b53660046118a7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102e6610fd4565b600b5461022f906001600160a01b031681565b61025a61040c36600461186f565b610ff3565b60006001600160e01b031982166380ac58cd60e01b148061044257506001600160e01b03198216635b5e139f60e01b145b8061045d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104729061239f565b80601f016020809104026020016040519081016040528092919081815260200182805461049e9061239f565b80156104eb5780601f106104c0576101008083540402835291602001916104eb565b820191906000526020600020905b8154815290600101906020018083116104ce57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061059a8261108e565b9050806001600160a01b0316836001600160a01b031614156106085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056a565b336001600160a01b0382161480610624575061062481336103b5565b6106965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056a565b6106a08383611105565b505050565b600b54604080516306406ad960e21b815290516060926001600160a01b031691631901ab64916004808301926000929190829003018186803b1580156106ea57600080fd5b505afa1580156106fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107269190810190611a63565b905090565b6107353382611173565b6107515760405162461bcd60e51b815260040161056a9061225b565b6106a083838361126a565b6106a083838360405180602001604052806000815250610c73565b600b5460408051630ac2cbf560e11b815290516060926001600160a01b03169163158597ea916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b031633146107e65760405162461bcd60e51b815260040161056a90612226565b600754600160a01b900460ff16156108105760405162461bcd60e51b815260040161056a906121dd565b600780546001600160a01b0319166001600160a01b039390931692909217909155600855565b600b5460408051632ea9640b60e11b815290516060926001600160a01b031691635d52c816916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b031633146108a55760405162461bcd60e51b815260040161056a90612226565b81600982815481106108c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200190805190602001906106a0929190611772565b6000600854600014610975576007546008546040516331a9108f60e11b81526001600160a01b0390921691636352211e916109259160040190815260200190565b60206040518083038186803b15801561093d57600080fd5b505afa158015610951573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061045d919061188b565b6007546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401610925565b60006109b260016108e4565b6001600160a01b0316826001600160a01b031614156109d357506001919050565b506000919050565b6006546001600160a01b03163314610a055760405162461bcd60e51b815260040161056a90612226565b610a0f6000611415565b565b600b54604080516340d94deb60e11b815290516060926001600160a01b0316916381b29bd6916004808301926000929190829003018186803b1580156106ea57600080fd5b6006546001600160a01b03163314610a805760405162461bcd60e51b815260040161056a90612226565b600754600160a01b900460ff1615610aaa5760405162461bcd60e51b815260040161056a906121dd565b6007805460ff60a01b1916600160a01b179055565b6060600180546104729061239f565b600b54604080516397ccd07b60e01b815290516060926001600160a01b0316916397ccd07b916004808301926000929190829003018186803b1580156106ea57600080fd5b6001600160a01b038216331415610b6c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b03163314610c025760405162461bcd60e51b815260040161056a90612226565b6006546001600160a01b03163314610c2c5760405162461bcd60e51b815260040161056a90612197565b600980546001810182556000919091528151610c6f917f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af01906020840190611772565b5050565b610c7d3383611173565b610c995760405162461bcd60e51b815260040161056a9061225b565b610ca584848484611467565b50505050565b6006546001600160a01b03163314610cd55760405162461bcd60e51b815260040161056a90612226565b6006546001600160a01b03163314610cff5760405162461bcd60e51b815260040161056a90612197565b806009610d0a610fd4565b81548110610d2857634e487b7160e01b600052603260045260246000fd5b906000526020600020019080519060200190610c6f929190611772565b606060006040518060600160405280604051806101c001604052806101858152602001613dfa610185913981526020016009610d7f610fd4565b81548110610d9d57634e487b7160e01b600052603260045260246000fd5b906000526020600020018054610db29061239f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde9061239f565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b50505050508152602001604051806119c0016040528061198881526020016124726119889139905280516020808301516040808501519051949550600094610e74949301611b79565b60405160208183030381529060405290506000610eb7610e938361149a565b604051602001610ea39190611bbc565b60405160208183030381529060405261149a565b905080604051602001610eca91906120b0565b6040516020818303038152906040529350505050919050565b60098181548110610ef357600080fd5b906000526020600020016000915090508054610f0e9061239f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3a9061239f565b8015610f875780601f10610f5c57610100808354040283529160200191610f87565b820191906000526020600020905b815481529060010190602001808311610f6a57829003601f168201915b505050505081565b600b546040805163745a3d4d60e11b815290516060926001600160a01b03169163e8b47a9a916004808301926000929190829003018186803b1580156106ea57600080fd5b60006301dfe200600a5442610fe9919061235c565b610726919061231d565b6006546001600160a01b0316331461101d5760405162461bcd60e51b815260040161056a90612226565b6001600160a01b0381166110825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056a565b61108b81611415565b50565b6000818152600260205260408120546001600160a01b03168061045d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113a8261108e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056a565b60006111f78361108e565b9050806001600160a01b0316846001600160a01b031614806112325750836001600160a01b0316611227846104f5565b6001600160a01b0316145b8061126257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661127d8261108e565b6001600160a01b0316146112e55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161056a565b6001600160a01b0382166113475760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056a565b61135283838361160e565b61135d600082611105565b6001600160a01b038316600090815260036020526040812080546001929061138690849061235c565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b4908490612305565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61147284848461126a565b61147e84848484611665565b610ca55760405162461bcd60e51b815260040161056a90612145565b60608151600014156114ba57505060408051602081019091526000815290565b600060405180606001604052806040815260200161243260409139905060006003845160026114e99190612305565b6114f3919061231d565b6114fe90600461233d565b9050600061150d826020612305565b67ffffffffffffffff81111561153357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561155d576020820181803683370190505b509050818152600183018586518101602084015b818310156115c9576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611571565b6003895106600181146115e357600281146115f457611600565b613d3d60f01b600119830152611600565b603d60f81b6000198301525b509398975050505050505050565b6001600160a01b038316156106a05760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e2063616e6e6f74206265207472616e736665726564000000000000604482015260640161056a565b60006001600160a01b0384163b1561176757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116a99033908990889088906004016120f5565b602060405180830381600087803b1580156116c357600080fd5b505af19250505080156116f3575060408051601f3d908101601f191682019092526116f091810190611a14565b60015b61174d573d808015611721576040519150601f19603f3d011682016040523d82523d6000602084013e611726565b606091505b5080516117455760405162461bcd60e51b815260040161056a90612145565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611262565b506001949350505050565b82805461177e9061239f565b90600052602060002090601f0160209004810192826117a057600085556117e6565b82601f106117b957805160ff19168380011785556117e6565b828001600101855582156117e6579182015b828111156117e65782518255916020019190600101906117cb565b506117f29291506117f6565b5090565b5b808211156117f257600081556001016117f7565b600061181e611819846122dd565b6122ac565b905082815283838301111561183257600080fd5b828260208301376000602084830101529392505050565b600082601f830112611859578081fd5b6118688383356020850161180b565b9392505050565b600060208284031215611880578081fd5b813561186881612406565b60006020828403121561189c578081fd5b815161186881612406565b600080604083850312156118b9578081fd5b82356118c481612406565b915060208301356118d481612406565b809150509250929050565b6000806000606084860312156118f3578081fd5b83356118fe81612406565b9250602084013561190e81612406565b929592945050506040919091013590565b60008060008060808587031215611934578081fd5b843561193f81612406565b9350602085013561194f81612406565b925060408501359150606085013567ffffffffffffffff811115611971578182fd5b8501601f81018713611981578182fd5b6119908782356020840161180b565b91505092959194509250565b600080604083850312156119ae578182fd5b82356119b981612406565b9150602083013580151581146118d4578182fd5b600080604083850312156119df578182fd5b82356119ea81612406565b946020939093013593505050565b600060208284031215611a09578081fd5b81356118688161241b565b600060208284031215611a25578081fd5b81516118688161241b565b600060208284031215611a41578081fd5b813567ffffffffffffffff811115611a57578182fd5b61126284828501611849565b600060208284031215611a74578081fd5b815167ffffffffffffffff811115611a8a578182fd5b8201601f81018413611a9a578182fd5b8051611aa8611819826122dd565b818152856020838501011115611abc578384fd5b611acd826020830160208601612373565b95945050505050565b60008060408385031215611ae8578182fd5b823567ffffffffffffffff811115611afe578283fd5b611b0a85828601611849565b95602094909401359450505050565b600060208284031215611b2a578081fd5b5035919050565b60008151808452611b49816020860160208601612373565b601f01601f19169290920160200192915050565b60008151611b6f818560208601612373565b9290920192915050565b60008451611b8b818460208901612373565b845190830190611b9f818360208901612373565b8451910190611bb2818360208801612373565b0195945050505050565b7f7b226e616d65223a20224d61726974616c204f626c69676174696f6e7322000081527f2c20226465736372697074696f6e223a2022416e696120436174686572696e65601e8201527f20616e642044656a68612054696073205b4c6574204d6520436865636b207769603e8201527f74682074686520576966655d202832303232292c207468652064756f6073206d605e8201527f6172726961676520636572746966696361746520696e20706879736963616c20607e8201527f616e64206469676974616c20666f726d61747320697320636f6d706c65746564609e8201527f207769746820746869732064796e616d6963204e465420656e7469746c65642060be8201527f5b4d61726974616c204f626c69676174696f6e735d2e2041732061206879706560de8201527f72626f6c696320666c6970206f6e20746865206578706563746174696f6e206f60fe8201527f66207574696c6974792077697468204e465420617274776f726b732c20616e6461011e8201527f2064726177696e67206f6e2074686520636f6e63657074206f66206d6172697461013e8201527f616c206f626c69676174696f6e732c2074686520636f6c6c6563746f7220776961015e8201527f6c6c207265636569766520646972656374696f6e206f72206d6967687420626561017e8201527f20657870656374656420746f2070726f7669646520746865206172746973747361019e8201527f207769746820737065636966696320616374696f6e73206f72206769667473206101be8201527f6f6e20746865697220616e6e697665727361727920284a756c79203139293b206101de8201527f7468697320617370656374206f6620746865206172746973742d636f6c6c65636101fe8201527f746f722072656c6174696f6e73686970206973206d616e61676564207669612061021e8201527f612064796e616d6963204e465420656e7469746c6564205b4d61726974616c2061023e8201527f4f626c69676174696f6e735d207768696368206973206e6f6e2d7472616e736661025e8201527f657261626c652e20496e207468652063617365206f66206469766f7263652c2061027e8201527f74686572652077696c6c206265206f6e652066696e616c206f626c696761746961029e8201527f6f6e20616e64206e6f206675727468657220616e6e69766572736172792067696102be8201527f6674732065787065637465642e2054686520515220636f64652f4574686572736102de8201527f63616e206c696e6b20616464656420746f20746865206d6172726961676520636102fe8201527f65727469666963617465206c6561647320746f20746865204d61726974616c4f61031e8201527f626c69676174696f6e7320736d61727420636f6e74726163742077686963682061033e8201527f697320636f6e6e6563746564206469726563746c7920746f207468652064796e61035e8201527f616d6963204e465420616e6420636f6e7461696e7320616e206f6e2d6368616961037e8201527f6e207472616e736372697074696f6e206f6620746865206d617272696167652061039e8201526d18d95c9d1a599a58d85d194b888b60921b6103be8201527f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736103cc82015263194d8d0b60e21b6103ec82015260006118686120a26103f0840185611b5d565b61227d60f01b815260020190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516120e881601d850160208701612373565b91909101601d0192915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061212890830184611b31565b9695505050505050565b6020815260006118686020830184611b31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4e6f74206f70657261746f7220616e642063616e6e6f7420777269746520746f60408201526520617272617960d01b606082015260800190565b60208082526029908201527f4c696e6b61676520616c72656164792073657420616e642063616e6e6f74206260408201526819481d5c19185d195960ba1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122d5576122d56123f0565b604052919050565b600067ffffffffffffffff8211156122f7576122f76123f0565b50601f01601f191660200190565b60008219821115612318576123186123da565b500190565b60008261233857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612357576123576123da565b500290565b60008282101561236e5761236e6123da565b500390565b60005b8381101561238e578181015183820152602001612376565b83811115610ca55750506000910152565b600181811c908216806123b357607f821691505b602082108114156123d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461108b57600080fd5b6001600160e01b03198116811461108b57600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f6469763e203c2f666f726569676e4f626a6563743e203c73766720783d223130252220793d22363525223e203c67207472616e73666f726d3d227363616c6528302e3529223e203c7061746820643d224d32353420363934762d31386c2d31332d32396831306c3820323020372d32306831306c2d3133203239763138682d397a6d34312032632d3620302d31302d322d31332d372d332d342d352d31302d352d313873322d313520352d313920372d362031332d362031312032203134203620342031302034203139633020382d312031342d342031382d3320352d3820372d313420377a6d302d396333203020352d3120372d346c322d31322d322d3133632d322d332d342d342d372d34732d3520312d3620346c2d3220313320322031326331203320332034203620347a6d34382d34306839763330633020362d312031312d34203134732d3720352d313220352d392d322d31322d352d342d382d342d3134762d333068397633316c3220376331203220332032203520327334203020352d326c322d37762d33317a6d3634352034372d332d3131682d31336c2d32203131682d31306c31332d34376831326c3132203437682d397a6d2d392d33392d352032316831306c2d352d32317a6d34352033392d372d3138682d36763138682d39762d343768313463352030203920312031322033203320332034203620342031316c2d3220372d3520362039203230682d31307a6d2d392d323520362d3220322d362d322d352d362d32682d3476313568347a6d3331203235762d3339682d3130762d386833317638682d3131763339682d31307a6d32362030762d34376839763437682d397a6d32372d3231632d342d312d362d332d382d35732d332d352d332d3920322d3720342d313063332d3220372d342031312d3420352030203820312031302034203320322034203520352031306c2d39203163302d332d312d342d322d356c2d342d322d3420322d3120342031203420332032203520326333203020352032203720336c34203420312037633020342d3220382d342031312d3320322d3720332d313220332d3920302d31352d352d31352d313568396c3220366331203120322032203520326c342d3220312d352d312d342d342d322d352d327a6d3333203231762d3339682d3131762d386833317638682d3131763339682d397a4d323937203536384132373320323733203020302031203232203239332032373320323733203020302031203239372031386132373320323733203020302031203237352032373520323733203237332030203020312d323735203237357a6d302d353436413236392032363920302030203020323620323933613236392032363920302030203020323731203237312032363920323639203020302030203237312d3237314132363920323639203020302030203239372032327a6d34333020353735683636307634483732377a6d2d37303820306835353476344831397a6d3730382d323738683636307634483732377a2220636c6173733d2273743022202f3e203c7061746820643d226d31323839203234342d3220332d3220332d392033682d326c2d372d32682d356c2d3420312d3920322d32332036682d326c322d312031332d3520342d3263322d3120322d3320312d342d312d322d332d332d352d336c2d31312d312d31372031682d32762d326c342d3963312d3320302d352d312d376c2d312d32632d312d322d332d332d362d32732d3620332d3820366c2d36203661323936203239362030203020312d3133203134682d326c312d3263342d3320342d3420312d372d312d322d332d332d352d316c2d3420332d342d31632d312d332d332d332d352d326c2d313220362d3920322d313020312d32342038632d3220312d3320312d3320336c3320352032203120382d3163362d312031322d342031372d366c31312d342031312d3368326c3120312d3520312d3120322033203963312031203120322d3120346c2d3420342d313020392d31332031302d3720362d3720352d31392031342d32312031332d3220312d313520392d313320382d3720342d313120362d3920352d313320372d313020352d313720392d313420362d313820382d313320352d313120342d3136203661333433203334332030203020312d3438203130632d3520312d313020302d31352d312d362d322d31302d372d31322d31342d312d3520302d313020312d31366c332d313020352d313320392d313620392d313120362d3820352d3620332d3320312d3120362d372031312d31312031332d31316832633320312035203120382d316c382d3320362d332031312d3520362d3368316c31312d3520322d3120372d3320362d3320352d3220382d3376326332203220342033203720316c342d3263322d3120322d3220322d336c322d3120322d3220322d3176316c312d3263302d322032203020322d31762d3163312d3220312d3220342d326c312d32762d316831762d316c342031316331203320322035203420362034203520392038203135203868386c322d3120392d3320322d3120332d312031302d3620312d3120332d3220332d3220312d31633120312032203020332d3120322d3120322d3320342d3368316c342d3320322d3220322d326333203020332d3220352d336c342d3468316c332d3320312d3220332d3220342d3520352d3820312d3563312d3420312d382d312d31326c2d342d352d332d34632d332d322d362d342d31302d34682d316c2d352d32682d316c2d3420312d3320312d313020322d362031632d3320302d3520322d382033682d316c2d3720332d3320312d3320322d3420312d3820342d3320322d3720332d3220312d3620342d3420322d3220312d3820342d3320322d332032632d3220302d3420312d352034682d336c2d3320322d3120312d312031632d3220302d3320322d3520336c2d3120312d34203176326c2d322d31633020322d3220332d3420337631682d336c2d3920332d313620352d3920342d313620362d313320362d313420362d313120362d3820332d313720372d3130203561373634203736342030203020312d32382039682d316c312d3320362d3720372d3720312d3120362d3420312d3220322d336332203020332d3120332d3220312d3120322d3220332d312d312d3320322d3220322d346c342d3220312d3263322d3220342d3320352d3668316c31302d3920332d3268316c362d3920312d33632d322d332d352d362d392d356c2d3520312d313120342d32342031312d313020362d313720392d31392031312d313120372d32312031332d32342031352d3920362d3235203136682d316c312d3220322d3220342d3420362d342031312d313020342d3420352d346139382039382030203020302031362d31346c322d3120322d3220322d312031322d392031312d31302031312d382031322d3920362d352031312d372032312d313420332d32762d326c2d312d31632d312d332d332d332d362d326c2d34203261353434203534342030203020302d32352031386c2d3920362d31342031302d313120382d31322031302d313120392d3820372d31332031302d31312031302d3920372d3620362d31322031312d31312031312d3120336331203220352035203720356c392d3261323331203233312030203020302032312d31336c362d3420392d352031352d313120362d3320372d3620352d322031332d3820342d3320312d312031332d3720322d3120342d3320342d3220392d352031302d362031332d3720392d3420332d322031362d3720382d3468336c2d3120322d3420342d3920382d31362031342d3920382d3820372d392031302d352036632d3220332d312036203120382033203220362034203920346c31312d3220322d3120372d3320352d3220362d322031322d3668316c31302d3520362d3220362d3320342d32682d326c342d322d31203220372d3420322d3120332d312031302d342032352d313120362d326834632d3320302d3320322d342033682d316c2d3420322d3320327631632d312d312d3220302d3220316c2d3720342d313120362d31322038632d3220312d3220312d3120336c2d312032632d3120322d3220352d3520357633632d332d312d332d312d3320322d322d312d322d312d3320316c2d3320342d3320312d3320342d3120322d3220312d3520352d3120312d322033632d3320312d3320322d322034682d326c2d3720382d3120312d3220322d3120322d3120312d3320332d3520382d3120312d3120332d3520382d3220342d3120322d3220372d3220332d31203476336c2d3120322d3120312d3120352d312034762d326c312d3131762d316c312d3320312d352d3120312d3220392d3120312d3120327631376c3520392039203720313320346337203120313420312032312d316c392d312031322d3320392d332031302d332031312d3420392d342031302d3320322d3120312d3120362d3220382d332031332d3720342d3220362d3220372d3468316c362d3320392d352031322d362031342d3720362d342031302d3520352d342031312d3620332d3320352d3220332d3220342d3220332d3368326c352d3468316c312d3120362d342031342d31302031352d31302031382d313520382d3620352d3520342d322031203476326c31203276326c32203720322031302031203320312036613635203635203020302031203120386c3320342034203120322d3120342d3920352d313320322d3520352d313220362d313068366c31332d3420362d3120392d3220372d3220382d332031332d3320352d312037203263332031203720312031302d316c342d32203120326330203220322032203320337332203020322d31762d346c312d38762d34682d337a6d2d31353720372d382033682d34632d3220322d3420322d352032613230333320323033332030203020302d3420306c31302d332031312d3368316c2d3120317a6d2d32353820333520312d3120352d32203120312d3720327a6d37332d31396332203020332d3120332d3320302d3120312d3220332d312032203020332d3120352d336c2d342031682d3363312d3220322d3120332d316c322d3220322d3220372d3520362d332d312d352031302d3620332d32762d3168326c382d352031332d372031302d3520392d3420342d332031302d352031342d3663352d322031312d352031372d366c382d3220392d31203132203120392034203320332031203676336c2d3220362d342036632d3320352d3720382d31312031326c2d37203561333637203336372030203020312d34322032366c2d313220342d392d31632d342d322d362d352d372d39732d322d392d312d31346c2d312d342d322d322d322d322d32203276336c2d3120322d3133203131632d3120312d3120312d332d316c2d332d312d313520362d32362031312d33203120312d317a4d38323420343033632d322d312d312d322d312d346c31203376317a6d3333392d31353368317631682d31762d317a6d333220382d352031322d372031342d352031322d372031372d312032762d326c2d322d392d322d33762d316c2d312d332d312d342d322d37762d326c2d312d32762d356c2d312d3220312d322d312d3468326c332d3120362d3520382d3620332d322031312d3268346c2d3220357a6d332d31312d313020312d332d316832762d326c332d3420312d3120332d3163322d3220342d3420372d346c312d3120322d3276316c2d332031322d3320327a6d323020392d313220342d332031762d316c322d3663312d3220322d3220332d326c31332d3120382d3168326c2d3120312d313220357a6d313730203137762d36632d312d342d312d372d332d31306c2d332d342d31302d34682d33316c2d313920352d31203168346c31322d316832366c313220326334203120352033203620366c31203820322036203220326832762d357a6d2d39322037312d3120312031203120312d312d312d317a6d2d3333372d3835682d3120317a6d333439203238362d32322d31302d32312d362d372d322031392d323620352d3720332d34762d3120312d316c322d3320312d3120372d313063372d382031322d31372031372d32376c2d312d3120322d3363302d332d322d342d352d346c2d31302032682d31632d313420352d32362031332d33362032336c2d31332031342d322031763161323334203233342030203020302d32302033306c2d3120312d3120332d342034632d3220322d3420352d3620356c2d313920312d35203176326c31342031312d3130203133632d31302d31322d31382d312d3237203220312d3420322d382d332d39682d31316c2d313020362d32352032302d3130203863322d3420322d3720342d396c342d372031302d313620392d313220322d346332203020322d3220332d336c31302d31342032352d333663332d3520332d3820302d31326c2d3420332d3332203435613136393120313639312030203020302d3431203635633020312031203520332036203320312037203420313120306c372d362032372d323320382d36203320312d3139203233633320352038203720313220346c31392d313663342d3420392d362031342d396c3120312d3120332d3236203333632d3120312d3220332d31203420312034203130203420313220316c31322d31342031362d32302d312d342033203120332d34682d326c392d31326330203620342037203920376c2d362d313563392d342031392d312033302d336c2d32312032382d3333203432632d3520382d31322031352d31382032322d3120322d3120332032203420352032203820312031322d356c32322d33302031382d32332d312d3163372d372031332d31352031382d323468316c362d3820312d3120312d322038203163313120332032332035203335203130203720322031342037203230203132203420322034203720322031312d3420392d31312031362d31382032326c2d33382032362d31322037632d3420312d3520332d372036203320352038203620313220336c31382d31322032302d313220322d3120322d3220322d3276316c362d3620362d36683163302d3120302030203020306c31302d313063332d3420362d3820362d313420302d31312d372d31382d31362d32327a6d2d31383220307a6d372d313068322d327a6d3133203231762d3220327a6d36322d3232762d3163312030203120302030203068317631682d317a6d36352d3334762d3120317a6d2d3435203234682d356c31372d323820312d3261323038203230382030203020312031302d31346331312d392032332d31382033362d3234762d316c352d312d31203120312d3120362d312d3220342d3438203636632d3120322d3320322d3620326c2d31342d317a6d2d362034347a6d31382d32347a6d372d387a6d36312035357a6d2d3230372d33392d362d322d323320382d33372031392d313320362d322d322031302d31322031352d313263312d3120322d3420312d356c2d342d332d3620322d3131203130632d3620362d31342031302d32322031346c2d312d312031362d31352d332d362d3620322d3138203139632d3120312030203420312035203220342037203520313120346c372d31203620366336203420313220312031372d326c352d322032312d3720332d3220362d332031322d3520362d332d32332032382d3530203637632d31352032312d32382034332d34322036352d3520382d382031372d31322032352d3120322030203420312035203420332031312d312031322d376c312d3720382d31352032382d3433762d316c312d31682d316c312d3220332d3420362d31302031302d3132762d326c342d3461373120373120302030203120312d326c31352d32302032352d33322032392d333463322d3220312d352d322d367a6d2d343120323068316c332d3120322d312d352032682d317a6d31352d3620312d312d3120317a6d2d323820313168322d327a6d2d37392d332031392d333263322d312032332d33392032332d34326c342d382031302d313920392d31362031332d323320382d31322031322d32312031392d323963332d3420352d3820302d31336c2d3320322d382031332d33352036302d32352034362d32312034302d32322033372d323120323920332d3620322d34613330352033303520302030203120372d31356c332d3768316c392d32312d312d3120312d3220312d366831762d336c2d312d372d312d322d312d33632d322d332d352d372d392d376c2d31352032632d313120332d323020392d323920313561313530203135302030203020302d33382032386c2d3137203137632d3420352d382031312d31302031376c2d322031632d3220332d3520382d3120313220332033203720362031312037203130203320323120302033302d336c31342d332031342d352d313920332d33302034632d3820302d31312d332d31322d31316c2d31203120332d3720352d3820342d362031302d313120382d382031352d31322032312d31322031382d313020312d312031372d346334203020382033203720376c2d342032302d3334203732632d3320382d332038203620396c372d3920372d313120352d3868316c31312d31347a6d2d37342032337631682d316c312d317a6d3235322d31303420322d3720372d36682d366c362d34682d34632d3320312d3720322d3820342d3220342d3220392d322031346c332d32203220317a6d3230332032362d352d35632d3320312d3520332d3620362d32203220332036203520362034203020362d3220362d377a2220636c6173733d2273743022202f3e203c7061746820643d226d313238392034353620322d3161323032203230322030203020302d3220317a6d322d317a6d2d31313520313539682d3120317a6d33322d38317a2220636c6173733d2273743022202f3e203c2f673e203c2f7376673e203c2f7376673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f7376672220786d6c3a73706163653d227072657365727665222069643d224c617965725f312220783d22302220793d2230222076657273696f6e3d22312e31222076696577426f783d2230203020313038302031393230223e203c7374796c653e202e737430207b2066696c6c3a2023666666207d20646976207b20636f6c6f723a2077686974653b20666f6e743a2037357078206d6f6e6f73706163653b206865696768743a20313030253b206f766572666c6f773a206175746f3b207d203c2f7374796c653e203c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b223e3c2f726563743e203c666f726569676e4f626a65637420783d223130302220793d22353030222077696474683d2237363622206865696768743d22373030223e203c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f313939392f7868746d6c223ea2646970667358221220c767a0cc0b74b4a48a9869c8c5ae191f99634190fe05d53cc300cdb0ff154a9f64736f6c63430008040033

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

000000000000000000000000420f67f0239fff147a1c5ccddeeb55b3d0292e58000000000000000000000000ade67943757ff34779bbe488b566833698dc0cee0000000000000000000000000000000000000000000000000000000000000003

-----Decoded View---------------
Arg [0] : _md (address): 0x420f67F0239fff147a1C5ccDdeEb55b3d0292e58
Arg [1] : _linkage (address): 0xAdE67943757ff34779bBe488b566833698dc0cEE
Arg [2] : _id (uint256): 3

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000420f67f0239fff147a1c5ccddeeb55b3d0292e58
Arg [1] : 000000000000000000000000ade67943757ff34779bbe488b566833698dc0cee
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003


Deployed Bytecode Sourcemap

52826:11210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20753:305;;;;;;:::i;:::-;;:::i;:::-;;;11663:14:1;;11656:22;11638:41;;11626:2;11611:18;20753:305:0;;;;;;;;21698:100;;;:::i;:::-;;;;;;;:::i;23257:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10961:32:1;;;10943:51;;10931:2;10916:18;23257:221:0;10898:102:1;22780:411:0;;;;;;:::i;:::-;;:::i;:::-;;63093:92;;;:::i;24147:339::-;;;;;;:::i;:::-;;:::i;24557:185::-;;;;;;:::i;:::-;;:::i;62522:110::-;;;:::i;63191:197::-;;;;;;:::i;:::-;;:::i;62874:102::-;;;:::i;63921:110::-;;;;;;:::i;:::-;;:::i;53235:225::-;;;;;;:::i;:::-;;:::i;53466:182::-;;;;;;:::i;:::-;;:::i;:::-;;;18294:25:1;;;18282:2;18267:18;53466:182:0;18249:76:1;34529:94:0;;;:::i;62731:137::-;;;:::i;63394:153::-;;;:::i;33878:87::-;33951:6;;-1:-1:-1;;;;;33951:6:0;33878:87;;21867:104;;;:::i;62638:87::-;;;:::i;23550:295::-;;;;;;:::i;:::-;;:::i;63553:174::-;;;;;;:::i;:::-;;:::i;24813:328::-;;;;;;:::i;:::-;;:::i;63733:182::-;;;;;;:::i;:::-;;:::i;53936:8580::-;;;;;;:::i;:::-;;:::i;52940:23::-;;;;;;:::i;:::-;;:::i;62982:105::-;;;:::i;23916:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24037:25:0;;;24013:4;24037:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23916:164;53828:102;;;:::i;52998:18::-;;;;;-1:-1:-1;;;;;52998:18:0;;;34778:192;;;;;;:::i;:::-;;:::i;20753:305::-;20855:4;-1:-1:-1;;;;;;20892:40:0;;-1:-1:-1;;;20892:40:0;;:105;;-1:-1:-1;;;;;;;20949:48:0;;-1:-1:-1;;;20949:48:0;20892:105;:158;;;-1:-1:-1;;;;;;;;;;19362:40:0;;;21014:36;20872:178;20753:305;-1:-1:-1;;20753:305:0:o;21698:100::-;21752:13;21785:5;21778:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:100;:::o;23257:221::-;23333:7;26740:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26740:16:0;23353:73;;;;-1:-1:-1;;;23353:73:0;;16346:2:1;23353:73:0;;;16328:21:1;16385:2;16365:18;;;16358:30;16424:34;16404:18;;;16397:62;-1:-1:-1;;;16475:18:1;;;16468:42;16527:19;;23353:73:0;;;;;;;;;-1:-1:-1;23446:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23446:24:0;;23257:221::o;22780:411::-;22861:13;22877:23;22892:7;22877:14;:23::i;:::-;22861:39;;22925:5;-1:-1:-1;;;;;22919:11:0;:2;-1:-1:-1;;;;;22919:11:0;;;22911:57;;;;-1:-1:-1;;;22911:57:0;;17530:2:1;22911:57:0;;;17512:21:1;17569:2;17549:18;;;17542:30;17608:34;17588:18;;;17581:62;-1:-1:-1;;;17659:18:1;;;17652:31;17700:19;;22911:57:0;17502:223:1;22911:57:0;16241:10;-1:-1:-1;;;;;23003:21:0;;;;:62;;-1:-1:-1;23028:37:0;23045:5;16241:10;23916:164;:::i;23028:37::-;22981:168;;;;-1:-1:-1;;;22981:168:0;;14746:2:1;22981:168:0;;;14728:21:1;14785:2;14765:18;;;14758:30;14824:34;14804:18;;;14797:62;14895:26;14875:18;;;14868:54;14939:19;;22981:168:0;14718:246:1;22981:168:0;23162:21;23171:2;23175:7;23162:8;:21::i;:::-;22780:411;;;:::o;63093:92::-;63164:2;;:15;;;-1:-1:-1;;;63164:15:0;;;;63135:13;;-1:-1:-1;;;;;63164:2:0;;:13;;:15;;;;;:2;;:15;;;;;;;:2;:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63164:15:0;;;;;;;;;;;;:::i;:::-;63157:22;;63093:92;:::o;24147:339::-;24342:41;16241:10;24375:7;24342:18;:41::i;:::-;24334:103;;;;-1:-1:-1;;;24334:103:0;;;;;;;:::i;:::-;24450:28;24460:4;24466:2;24470:7;24450:9;:28::i;24557:185::-;24695:39;24712:4;24718:2;24722:7;24695:39;;;;;;;;;;;;:16;:39::i;62522:110::-;62603:2;;:23;;;-1:-1:-1;;;62603:23:0;;;;62572:13;;-1:-1:-1;;;;;62603:2:0;;:21;;:23;;;;;:2;;:23;;;;;;;:2;:23;;;;;;;;;;63191:197;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;63271:10:::1;::::0;-1:-1:-1;;;63271:10:0;::::1;;;:19;63263:72;;;;-1:-1:-1::0;;;63263:72:0::1;;;;;;;:::i;:::-;63342:7;:18:::0;;-1:-1:-1;;;;;;63342:18:0::1;-1:-1:-1::0;;;;;63342:18:0;;;::::1;::::0;;;::::1;::::0;;;63367:9:::1;:15:::0;63191:197::o;62874:102::-;62951:2;;:19;;;-1:-1:-1;;;62951:19:0;;;;62920:13;;-1:-1:-1;;;;;62951:2:0;;:17;;:19;;;;;:2;;:19;;;;;;;:2;:19;;;;;;;;;;63921:110;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;64018:7:::1;64001;64009:5;64001:14;;;;;;-1:-1:-1::0;;;64001:14:0::1;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;:::i;53235:225::-:0;53299:7;53321:9;;53334:1;53321:14;53318:137;;53354:7;;53370:9;;53354:26;;-1:-1:-1;;;53354:26:0;;-1:-1:-1;;;;;53354:7:0;;;;:15;;:26;;;;18294:25:1;;;18282:2;18267:18;;18249:76;53354:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;53318:137::-;53418:7;;:25;;-1:-1:-1;;;53418:25:0;;;;;18294::1;;;-1:-1:-1;;;;;53418:7:0;;;;:15;;18267:18:1;;53418:25:0;18249:76:1;53466:182:0;53538:7;53568:10;53576:1;53568:7;:10::i;:::-;-1:-1:-1;;;;;53559:19:0;:5;-1:-1:-1;;;;;53559:19:0;;53556:87;;;-1:-1:-1;53597:1:0;;53466:182;-1:-1:-1;53466:182:0:o;53556:87::-;-1:-1:-1;53632:1:0;;53466:182;-1:-1:-1;53466:182:0:o;34529:94::-;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;34594:21:::1;34612:1;34594:9;:21::i;:::-;34529:94::o:0;62731:137::-;62825:2;;:36;;;-1:-1:-1;;;62825:36:0;;;;62794:13;;-1:-1:-1;;;;;62825:2:0;;:34;;:36;;;;;:2;;:36;;;;;;;:2;:36;;;;;;;;;;63394:153;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;63453:10:::1;::::0;-1:-1:-1;;;63453:10:0;::::1;;;:19;63445:72;;;;-1:-1:-1::0;;;63445:72:0::1;;;;;;;:::i;:::-;63524:10;:17:::0;;-1:-1:-1;;;;63524:17:0::1;-1:-1:-1::0;;;63524:17:0::1;::::0;;63394:153::o;21867:104::-;21923:13;21956:7;21949:14;;;;;:::i;62638:87::-;62707:2;;:11;;;-1:-1:-1;;;62707:11:0;;;;62676:13;;-1:-1:-1;;;;;62707:2:0;;:9;;:11;;;;;:2;;:11;;;;;;;:2;:11;;;;;;;;;;23550:295;-1:-1:-1;;;;;23653:24:0;;16241:10;23653:24;;23645:62;;;;-1:-1:-1;;;23645:62:0;;13572:2:1;23645:62:0;;;13554:21:1;13611:2;13591:18;;;13584:30;13650:27;13630:18;;;13623:55;13695:18;;23645:62:0;13544:175:1;23645:62:0;16241:10;23720:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23720:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23720:53:0;;;;;;;;;;23789:48;;11638:41:1;;;23720:42:0;;16241:10;23789:48;;11611:18:1;23789:48:0;;;;;;;23550:295;;:::o;63553:174::-;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;33951:6;;-1:-1:-1;;;;;33951:6:0;63629:10:::1;:21;63621:72;;;;-1:-1:-1::0;;;63621:72:0::1;;;;;;;:::i;:::-;63700:7;:21:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;63700:21:0;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;;63553:174:::0;:::o;24813:328::-;24988:41;16241:10;25021:7;24988:18;:41::i;:::-;24980:103;;;;-1:-1:-1;;;24980:103:0;;;;;;;:::i;:::-;25094:39;25108:4;25114:2;25118:7;25127:5;25094:13;:39::i;:::-;24813:328;;;;:::o;63733:182::-;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;33951:6;;-1:-1:-1;;;;;33951:6:0;63809:10:::1;:21;63801:72;;;;-1:-1:-1::0;;;63801:72:0::1;;;;;;;:::i;:::-;63902:7;63880;63888:10;:8;:10::i;:::-;63880:19;;;;;;-1:-1:-1::0;;;63880:19:0::1;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;:::i;53936:8580::-:0;54021:13;54046:22;:6978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54465:7;54473:10;:8;:10::i;:::-;54465:19;;;;;;-1:-1:-1;;;54465:19:0;;;;;;;;;;;;;;;;54046:6978;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61079:8;;;61089;;;;61098;;;;;61062:45;;54046:6978;;-1:-1:-1;61031:21:0;;61062:45;;61079:8;61062:45;;:::i;:::-;;;;;;;;;;;;;61031:77;;61115:18;61136:1299;62327:29;62347:7;62327:13;:29::i;:::-;61205:1197;;;;;;;;:::i;:::-;;;;;;;;;;;;;61136:13;:1299::i;:::-;61115:1320;;62506:4;62456:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;62442:70;;;;;53936:8580;;;:::o;52940:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62982:105::-;63060:2;;:20;;;-1:-1:-1;;;63060:20:0;;;;63029:13;;-1:-1:-1;;;;;63060:2:0;;:18;;:20;;;;;:2;;:20;;;;;;;:2;:20;;;;;;;;;;53828:102;53868:4;53916:8;53907:5;;53889:15;:23;;;;:::i;:::-;53888:36;;;;:::i;34778:192::-;33951:6;;-1:-1:-1;;;;;33951:6:0;16241:10;34098:23;34090:68;;;;-1:-1:-1;;;34090:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34867:22:0;::::1;34859:73;;;::::0;-1:-1:-1;;;34859:73:0;;12760:2:1;34859:73:0::1;::::0;::::1;12742:21:1::0;12799:2;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;-1:-1:-1;;;12889:18:1;;;12882:36;12935:19;;34859:73:0::1;12732:228:1::0;34859:73:0::1;34943:19;34953:8;34943:9;:19::i;:::-;34778:192:::0;:::o;21392:239::-;21464:7;21500:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21500:16:0;21535:19;21527:73;;;;-1:-1:-1;;;21527:73:0;;15171:2:1;21527:73:0;;;15153:21:1;15210:2;15190:18;;;15183:30;15249:34;15229:18;;;15222:62;-1:-1:-1;;;15300:18:1;;;15293:39;15349:19;;21527:73:0;15143:231:1;30633:174:0;30708:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30708:29:0;-1:-1:-1;;;;;30708:29:0;;;;;;;;:24;;30762:23;30708:24;30762:14;:23::i;:::-;-1:-1:-1;;;;;30753:46:0;;;;;;;;;;;30633:174;;:::o;26945:348::-;27038:4;26740:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26740:16:0;27055:73;;;;-1:-1:-1;;;27055:73:0;;14333:2:1;27055:73:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;-1:-1:-1;;;14462:18:1;;;14455:42;14514:19;;27055:73:0;14305:234:1;27055:73:0;27139:13;27155:23;27170:7;27155:14;:23::i;:::-;27139:39;;27208:5;-1:-1:-1;;;;;27197:16:0;:7;-1:-1:-1;;;;;27197:16:0;;:51;;;;27241:7;-1:-1:-1;;;;;27217:31:0;:20;27229:7;27217:11;:20::i;:::-;-1:-1:-1;;;;;27217:31:0;;27197:51;:87;;;-1:-1:-1;;;;;;24037:25:0;;;24013:4;24037:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27252:32;27189:96;26945:348;-1:-1:-1;;;;26945:348:0:o;29937:578::-;30096:4;-1:-1:-1;;;;;30069:31:0;:23;30084:7;30069:14;:23::i;:::-;-1:-1:-1;;;;;30069:31:0;;30061:85;;;;-1:-1:-1;;;30061:85:0;;17120:2:1;30061:85:0;;;17102:21:1;17159:2;17139:18;;;17132:30;17198:34;17178:18;;;17171:62;-1:-1:-1;;;17249:18:1;;;17242:39;17298:19;;30061:85:0;17092:231:1;30061:85:0;-1:-1:-1;;;;;30165:16:0;;30157:65;;;;-1:-1:-1;;;30157:65:0;;13167:2:1;30157:65:0;;;13149:21:1;13206:2;13186:18;;;13179:30;13245:34;13225:18;;;13218:62;-1:-1:-1;;;13296:18:1;;;13289:34;13340:19;;30157:65:0;13139:226:1;30157:65:0;30235:39;30256:4;30262:2;30266:7;30235:20;:39::i;:::-;30339:29;30356:1;30360:7;30339:8;:29::i;:::-;-1:-1:-1;;;;;30381:15:0;;;;;;:9;:15;;;;;:20;;30400:1;;30381:15;:20;;30400:1;;30381:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30412:13:0;;;;;;:9;:13;;;;;:18;;30429:1;;30412:13;:18;;30429:1;;30412:18;:::i;:::-;;;;-1:-1:-1;;30441:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30441:21:0;-1:-1:-1;;;;;30441:21:0;;;;;;;;;30480:27;;30441:16;;30480:27;;;;;;;29937:578;;;:::o;34978:173::-;35053:6;;;-1:-1:-1;;;;;35070:17:0;;;-1:-1:-1;;;;;;35070:17:0;;;;;;;35103:40;;35053:6;;;35070:17;35053:6;;35103:40;;35034:16;;35103:40;34978:173;;:::o;26023:315::-;26180:28;26190:4;26196:2;26200:7;26180:9;:28::i;:::-;26227:48;26250:4;26256:2;26260:7;26269:5;26227:22;:48::i;:::-;26219:111;;;;-1:-1:-1;;;26219:111:0;;;;;;;:::i;48539:1912::-;48597:13;48627:4;:11;48642:1;48627:16;48623:31;;;-1:-1:-1;;48645:9:0;;;;;;;;;-1:-1:-1;48645:9:0;;;48539:1912::o;48623:31::-;48706:19;48728:12;;;;;;;;;;;;;;;;;48706:34;;48792:18;48838:1;48819:4;:11;48833:1;48819:15;;;;:::i;:::-;48818:21;;;;:::i;:::-;48813:27;;:1;:27;:::i;:::-;48792:48;-1:-1:-1;48923:20:0;48957:15;48792:48;48970:2;48957:15;:::i;:::-;48946:27;;;;;;-1:-1:-1;;;48946:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48946:27:0;;48923:50;;49070:10;49062:6;49055:26;49165:1;49158:5;49154:13;49224:4;49275;49269:11;49260:7;49256:25;49371:2;49363:6;49359:15;49444:754;49463:6;49454:7;49451:19;49444:754;;;49563:1;49554:7;49550:15;49539:26;;49602:7;49596:14;49728:4;49720:5;49716:2;49712:14;49708:25;49698:8;49694:40;49688:47;49677:9;49669:67;49782:1;49771:9;49767:17;49754:30;;49861:4;49853:5;49849:2;49845:14;49841:25;49831:8;49827:40;49821:47;49810:9;49802:67;49915:1;49904:9;49900:17;49887:30;;49994:4;49986:5;49983:1;49978:14;49974:25;49964:8;49960:40;49954:47;49943:9;49935:67;50048:1;50037:9;50033:17;50020:30;;50127:4;50119:5;50107:25;50097:8;50093:40;50087:47;50076:9;50068:67;-1:-1:-1;50181:1:0;50166:17;49444:754;;;50271:1;50264:4;50258:11;50254:19;50292:1;50287:54;;;;50360:1;50355:52;;;;50247:160;;50287:54;-1:-1:-1;;;;;50303:17:0;;50296:43;50287:54;;50355:52;-1:-1:-1;;;;;50371:17:0;;50364:41;50247:160;-1:-1:-1;50437:6:0;;48539:1912;-1:-1:-1;;;;;;;;48539:1912:0:o;53654:168::-;-1:-1:-1;;;;;53768:18:0;;;53760:56;;;;-1:-1:-1;;;53760:56:0;;15991:2:1;53760:56:0;;;15973:21:1;16030:2;16010:18;;;16003:30;16069:28;16049:18;;;16042:56;16115:18;;53760:56:0;15963:176:1;31372:799:0;31527:4;-1:-1:-1;;;;;31548:13:0;;8522:20;8570:8;31544:620;;31584:72;;-1:-1:-1;;;31584:72:0;;-1:-1:-1;;;;;31584:36:0;;;;;:72;;16241:10;;31635:4;;31641:7;;31650:5;;31584:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31584:72:0;;;;;;;;-1:-1:-1;;31584:72:0;;;;;;;;;;;;:::i;:::-;;;31580:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31826:13:0;;31822:272;;31869:60;;-1:-1:-1;;;31869:60:0;;;;;;;:::i;31822:272::-;32044:6;32038:13;32029:6;32025:2;32021:15;32014:38;31580:529;-1:-1:-1;;;;;;31707:51:0;-1:-1:-1;;;31707:51:0;;-1:-1:-1;31700:58:0;;31544:620;-1:-1:-1;32148:4:0;31372:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:2;;;239:1;236;229:12;198:2;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;88:262;;;;;:::o;355:229::-;398:5;451:3;444:4;436:6;432:17;428:27;418:2;;473:5;466;459:20;418:2;499:79;574:3;565:6;552:20;545:4;537:6;533:17;499:79;:::i;:::-;490:88;408:176;-1:-1:-1;;;408:176:1:o;589:257::-;648:6;701:2;689:9;680:7;676:23;672:32;669:2;;;722:6;714;707:22;669:2;766:9;753:23;785:31;810:5;785:31;:::i;851:261::-;921:6;974:2;962:9;953:7;949:23;945:32;942:2;;;995:6;987;980:22;942:2;1032:9;1026:16;1051:31;1076:5;1051:31;:::i;1117:398::-;1185:6;1193;1246:2;1234:9;1225:7;1221:23;1217:32;1214:2;;;1267:6;1259;1252:22;1214:2;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:1;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1204:311;;;;;:::o;1520:466::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:2;;;1687:6;1679;1672:22;1634:2;1731:9;1718:23;1750:31;1775:5;1750:31;:::i;:::-;1800:5;-1:-1:-1;1857:2:1;1842:18;;1829:32;1870:33;1829:32;1870:33;:::i;:::-;1624:362;;1922:7;;-1:-1:-1;;;1976:2:1;1961:18;;;;1948:32;;1624:362::o;1991:824::-;2086:6;2094;2102;2110;2163:3;2151:9;2142:7;2138:23;2134:33;2131:2;;;2185:6;2177;2170:22;2131:2;2229:9;2216:23;2248:31;2273:5;2248:31;:::i;:::-;2298:5;-1:-1:-1;2355:2:1;2340:18;;2327:32;2368:33;2327:32;2368:33;:::i;:::-;2420:7;-1:-1:-1;2474:2:1;2459:18;;2446:32;;-1:-1:-1;2529:2:1;2514:18;;2501:32;2556:18;2545:30;;2542:2;;;2593:6;2585;2578:22;2542:2;2621:22;;2674:4;2666:13;;2662:27;-1:-1:-1;2652:2:1;;2708:6;2700;2693:22;2652:2;2736:73;2801:7;2796:2;2783:16;2778:2;2774;2770:11;2736:73;:::i;:::-;2726:83;;;2121:694;;;;;;;:::o;2820:436::-;2885:6;2893;2946:2;2934:9;2925:7;2921:23;2917:32;2914:2;;;2967:6;2959;2952:22;2914:2;3011:9;2998:23;3030:31;3055:5;3030:31;:::i;:::-;3080:5;-1:-1:-1;3137:2:1;3122:18;;3109:32;3179:15;;3172:23;3160:36;;3150:2;;3215:6;3207;3200:22;3261:325;3329:6;3337;3390:2;3378:9;3369:7;3365:23;3361:32;3358:2;;;3411:6;3403;3396:22;3358:2;3455:9;3442:23;3474:31;3499:5;3474:31;:::i;:::-;3524:5;3576:2;3561:18;;;;3548:32;;-1:-1:-1;;;3348:238:1:o;3591:255::-;3649:6;3702:2;3690:9;3681:7;3677:23;3673:32;3670:2;;;3723:6;3715;3708:22;3670:2;3767:9;3754:23;3786:30;3810:5;3786:30;:::i;3851:259::-;3920:6;3973:2;3961:9;3952:7;3948:23;3944:32;3941:2;;;3994:6;3986;3979:22;3941:2;4031:9;4025:16;4050:30;4074:5;4050:30;:::i;4460:342::-;4529:6;4582:2;4570:9;4561:7;4557:23;4553:32;4550:2;;;4603:6;4595;4588:22;4550:2;4648:9;4635:23;4681:18;4673:6;4670:30;4667:2;;;4718:6;4710;4703:22;4667:2;4746:50;4788:7;4779:6;4768:9;4764:22;4746:50;:::i;4807:675::-;4887:6;4940:2;4928:9;4919:7;4915:23;4911:32;4908:2;;;4961:6;4953;4946:22;4908:2;4999:9;4993:16;5032:18;5024:6;5021:30;5018:2;;;5069:6;5061;5054:22;5018:2;5097:22;;5150:4;5142:13;;5138:27;-1:-1:-1;5128:2:1;;5184:6;5176;5169:22;5128:2;5218;5212:9;5243:48;5259:31;5287:2;5259:31;:::i;5243:48::-;5314:2;5307:5;5300:17;5354:7;5349:2;5344;5340;5336:11;5332:20;5329:33;5326:2;;;5380:6;5372;5365:22;5326:2;5398:54;5449:2;5444;5437:5;5433:14;5428:2;5424;5420:11;5398:54;:::i;:::-;5471:5;4898:584;-1:-1:-1;;;;;4898:584:1:o;5487:410::-;5565:6;5573;5626:2;5614:9;5605:7;5601:23;5597:32;5594:2;;;5647:6;5639;5632:22;5594:2;5692:9;5679:23;5725:18;5717:6;5714:30;5711:2;;;5762:6;5754;5747:22;5711:2;5790:50;5832:7;5823:6;5812:9;5808:22;5790:50;:::i;:::-;5780:60;5887:2;5872:18;;;;5859:32;;-1:-1:-1;;;;5584:313:1:o;5902:190::-;5961:6;6014:2;6002:9;5993:7;5989:23;5985:32;5982:2;;;6035:6;6027;6020:22;5982:2;-1:-1:-1;6063:23:1;;5972:120;-1:-1:-1;5972:120:1:o;6097:257::-;6138:3;6176:5;6170:12;6203:6;6198:3;6191:19;6219:63;6275:6;6268:4;6263:3;6259:14;6252:4;6245:5;6241:16;6219:63;:::i;:::-;6336:2;6315:15;-1:-1:-1;;6311:29:1;6302:39;;;;6343:4;6298:50;;6146:208;-1:-1:-1;;6146:208:1:o;6359:185::-;6401:3;6439:5;6433:12;6454:52;6499:6;6494:3;6487:4;6480:5;6476:16;6454:52;:::i;:::-;6522:16;;;;;6409:135;-1:-1:-1;;6409:135:1:o;6899:664::-;7126:3;7164:6;7158:13;7180:53;7226:6;7221:3;7214:4;7206:6;7202:17;7180:53;:::i;:::-;7296:13;;7255:16;;;;7318:57;7296:13;7255:16;7352:4;7340:17;;7318:57;:::i;:::-;7442:13;;7397:20;;;7464:57;7442:13;7397:20;7498:4;7486:17;;7464:57;:::i;:::-;7537:20;;7134:429;-1:-1:-1;;;;;7134:429:1:o;7568:2771::-;8133:66;8121:79;;8230:66;8225:2;8216:12;;8209:88;8327:34;8322:2;8313:12;;8306:56;8392:34;8387:2;8378:12;;8371:56;8458:34;8452:3;8443:13;;8436:57;8524:34;8518:3;8509:13;;8502:57;8590:34;8584:3;8575:13;;8568:57;8656:34;8650:3;8641:13;;8634:57;8722:34;8716:3;8707:13;;8700:57;8788:34;8782:3;8773:13;;8766:57;8854:34;8848:3;8839:13;;8832:57;8920:34;8914:3;8905:13;;8898:57;8986:34;8980:3;8971:13;;8964:57;9052:34;9046:3;9037:13;;9030:57;9118:34;9112:3;9103:13;;9096:57;9184:34;9178:3;9169:13;;9162:57;9250:34;9244:3;9235:13;;9228:57;9316:34;9310:3;9301:13;;9294:57;9382:34;9376:3;9367:13;;9360:57;9448:34;9442:3;9433:13;;9426:57;9514:34;9508:3;9499:13;;9492:57;9580:34;9574:3;9565:13;;9558:57;9646:34;9640:3;9631:13;;9624:57;9712:34;9706:3;9697:13;;9690:57;9778:34;9772:3;9763:13;;9756:57;9844:34;9838:3;9829:13;;9822:57;9910:34;9904:3;9895:13;;9888:57;9976:34;9970:3;9961:13;;9954:57;10042:34;10036:3;10027:13;;10020:57;10108:34;10102:3;10093:13;;10086:57;-1:-1:-1;;;10168:3:1;10159:13;;10152:63;6626:66;10326:3;10317:13;;6614:79;-1:-1:-1;;;6709:12:1;;;6702:28;-1:-1:-1;10231:102:1;10261:71;6746:12;;;10279:6;10261:71;:::i;:::-;-1:-1:-1;;;6834:27:1;;6886:1;6877:11;;6824:70;10344:448;10606:31;10601:3;10594:44;10576:3;10667:6;10661:13;10683:62;10738:6;10733:2;10728:3;10724:12;10717:4;10709:6;10705:17;10683:62;:::i;:::-;10765:16;;;;10783:2;10761:25;;10584:208;-1:-1:-1;;10584:208:1:o;11005:488::-;-1:-1:-1;;;;;11274:15:1;;;11256:34;;11326:15;;11321:2;11306:18;;11299:43;11373:2;11358:18;;11351:34;;;11421:3;11416:2;11401:18;;11394:31;;;11199:4;;11442:45;;11467:19;;11459:6;11442:45;:::i;:::-;11434:53;11208:285;-1:-1:-1;;;;;;11208:285:1:o;11915:219::-;12064:2;12053:9;12046:21;12027:4;12084:44;12124:2;12113:9;12109:18;12101:6;12084:44;:::i;12139:414::-;12341:2;12323:21;;;12380:2;12360:18;;;12353:30;12419:34;12414:2;12399:18;;12392:62;-1:-1:-1;;;12485:2:1;12470:18;;12463:48;12543:3;12528:19;;12313:240::o;13724:402::-;13926:2;13908:21;;;13965:2;13945:18;;;13938:30;14004:34;13999:2;13984:18;;13977:62;-1:-1:-1;;;14070:2:1;14055:18;;14048:36;14116:3;14101:19;;13898:228::o;15379:405::-;15581:2;15563:21;;;15620:2;15600:18;;;15593:30;15659:34;15654:2;15639:18;;15632:62;-1:-1:-1;;;15725:2:1;15710:18;;15703:39;15774:3;15759:19;;15553:231::o;16557:356::-;16759:2;16741:21;;;16778:18;;;16771:30;16837:34;16832:2;16817:18;;16810:62;16904:2;16889:18;;16731:182::o;17730:413::-;17932:2;17914:21;;;17971:2;17951:18;;;17944:30;18010:34;18005:2;17990:18;;17983:62;-1:-1:-1;;;18076:2:1;18061:18;;18054:47;18133:3;18118:19;;17904:239::o;18330:275::-;18401:2;18395:9;18466:2;18447:13;;-1:-1:-1;;18443:27:1;18431:40;;18501:18;18486:34;;18522:22;;;18483:62;18480:2;;;18548:18;;:::i;:::-;18584:2;18577:22;18375:230;;-1:-1:-1;18375:230:1:o;18610:186::-;18658:4;18691:18;18683:6;18680:30;18677:2;;;18713:18;;:::i;:::-;-1:-1:-1;18779:2:1;18758:15;-1:-1:-1;;18754:29:1;18785:4;18750:40;;18667:129::o;18801:128::-;18841:3;18872:1;18868:6;18865:1;18862:13;18859:2;;;18878:18;;:::i;:::-;-1:-1:-1;18914:9:1;;18849:80::o;18934:217::-;18974:1;19000;18990:2;;-1:-1:-1;;;19025:31:1;;19079:4;19076:1;19069:15;19107:4;19032:1;19097:15;18990:2;-1:-1:-1;19136:9:1;;18980:171::o;19156:168::-;19196:7;19262:1;19258;19254:6;19250:14;19247:1;19244:21;19239:1;19232:9;19225:17;19221:45;19218:2;;;19269:18;;:::i;:::-;-1:-1:-1;19309:9:1;;19208:116::o;19329:125::-;19369:4;19397:1;19394;19391:8;19388:2;;;19402:18;;:::i;:::-;-1:-1:-1;19439:9:1;;19378:76::o;19459:258::-;19531:1;19541:113;19555:6;19552:1;19549:13;19541:113;;;19631:11;;;19625:18;19612:11;;;19605:39;19577:2;19570:10;19541:113;;;19672:6;19669:1;19666:13;19663:2;;;-1:-1:-1;;19707:1:1;19689:16;;19682:27;19512:205::o;19722:380::-;19801:1;19797:12;;;;19844;;;19865:2;;19919:4;19911:6;19907:17;19897:27;;19865:2;19972;19964:6;19961:14;19941:18;19938:38;19935:2;;;20018:10;20013:3;20009:20;20006:1;19999:31;20053:4;20050:1;20043:15;20081:4;20078:1;20071:15;19935:2;;19777:325;;;:::o;20107:127::-;20168:10;20163:3;20159:20;20156:1;20149:31;20199:4;20196:1;20189:15;20223:4;20220:1;20213:15;20239:127;20300:10;20295:3;20291:20;20288:1;20281:31;20331:4;20328:1;20321:15;20355:4;20352:1;20345:15;20371:131;-1:-1:-1;;;;;20446:31:1;;20436:42;;20426:2;;20492:1;20489;20482:12;20507:131;-1:-1:-1;;;;;;20581:32:1;;20571:43;;20561:2;;20628:1;20625;20618:12

Swarm Source

ipfs://c767a0cc0b74b4a48a9869c8c5ae191f99634190fe05d53cc300cdb0ff154a9f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.