ETH Price: $2,986.72 (+4.38%)
Gas: 2 Gwei

Token

 

Overview

Max Total Supply

3,333

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x1546b970afc85bb7448b2c50504be0c4640408dd
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BloodyFacesMintPass

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : BloodyFacesMintPass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract BloodyFacesMintPass is ERC1155, Ownable, ERC1155Holder {
    bool public isMinted = false;
    uint public totalSupply = 3333;
    mapping(address => uint8) private _buyers;
    
    constructor() ERC1155("https://bloodyfaces.io/api/mintpass/{id}") {}

    function mintAllPasses() public onlyOwner {
        require(!isMinted, "Bloody Faces are already minted.");

        _mint(address(this), 0, totalSupply, "");
        isMinted = true;
    }

    function buyPass(uint256 _amount) public payable {
        require(_amount <= 3, "Maximum quantity is 3.");
        require(_amount > 0, "Minimum quantity is 1.");
        require(_buyers[msg.sender] + _amount <= 3, "Cannot buy more than 3 Bloody Faces pass.");
        require(balanceOf(address(this), 0) >= _amount, "Not enough Bloody Faces left.");
        require(msg.value == 0.03 ether * _amount, "Price is 0.03 eth.");

        this.safeTransferFrom(address(this), msg.sender, 0, _amount, "");
        for (uint8 i = 0; i < _amount; i++) {
            _buyers[msg.sender]++;
        }
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /*
    * @return Returns contract metadata used by OpenSea
    */
    function contractURI() public pure returns (string memory) {
        return "https://bloodyfaces.io/api/metadata";
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC1155Receiver) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT

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 3 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 12 : Address.sol
// SPDX-License-Identifier: MIT

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 6 of 12 : ERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155Receiver.sol";
import "../../../utils/introspection/ERC165.sol";

/**
 * @dev _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
    }
}

File 7 of 12 : ERC1155Holder.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC1155Receiver.sol";

/**
 * @dev _Available since v3.1._
 */
contract ERC1155Holder is ERC1155Receiver {
    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155BatchReceived.selector;
    }
}

File 8 of 12 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC1155.sol";

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

File 9 of 12 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

File 10 of 12 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

File 12 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAllPasses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600360146101000a81548160ff021916908315150217905550610d056004553480156200003257600080fd5b5060405180606001604052806028815260200162003c16602891396200005e816200008560201b60201c565b506200007f62000073620000a160201b60201c565b620000a960201b60201c565b62000284565b80600290805190602001906200009d9291906200016f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017d906200021f565b90600052602060002090601f016020900481019282620001a15760008555620001ed565b82601f10620001bc57805160ff1916838001178555620001ed565b82800160010185558215620001ed579182015b82811115620001ec578251825591602001919060010190620001cf565b5b509050620001fc919062000200565b5090565b5b808211156200021b57600081600090555060010162000201565b5090565b600060028204905060018216806200023857607f821691505b602082108114156200024f576200024e62000255565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61398280620002946000396000f3fe60806040526004361061011e5760003560e01c8063715018a6116100a0578063e8a3d48511610064578063e8a3d485146103b1578063e985e9c5146103dc578063f23a6e6114610419578063f242432a14610456578063f2fde38b1461047f5761011e565b8063715018a6146102f25780638da5cb5b14610309578063a22cb46514610334578063a4b5f6b61461035d578063bc197c81146103745761011e565b80632eb2c2d6116100e75780632eb2c2d61461022e5780633420f9b31461025757806336ae5040146102735780633ccfd60b1461029e5780634e1273f4146102b55761011e565b8062fdd58e1461012357806301ffc9a71461016057806302fe53051461019d5780630e89341c146101c657806318160ddd14610203575b600080fd5b34801561012f57600080fd5b5061014a600480360381019061014591906125f0565b6104a8565b60405161015791906133a4565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190612698565b610571565b60405161019491906130ec565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf91906126ea565b610583565b005b3480156101d257600080fd5b506101ed60048036038101906101e8919061272b565b61060b565b6040516101fa9190613122565b60405180910390f35b34801561020f57600080fd5b5061021861069f565b60405161022591906133a4565b60405180910390f35b34801561023a57600080fd5b5061025560048036038101906102509190612466565b6106a5565b005b610271600480360381019061026c919061272b565b610746565b005b34801561027f57600080fd5b50610288610a18565b60405161029591906130ec565b60405180910390f35b3480156102aa57600080fd5b506102b3610a2b565b005b3480156102c157600080fd5b506102dc60048036038101906102d7919061262c565b610af0565b6040516102e99190613093565b60405180910390f35b3480156102fe57600080fd5b50610307610ca1565b005b34801561031557600080fd5b5061031e610d29565b60405161032b9190612f5e565b60405180910390f35b34801561034057600080fd5b5061035b600480360381019061035691906125b4565b610d53565b005b34801561036957600080fd5b50610372610ed4565b005b34801561038057600080fd5b5061039b60048036038101906103969190612466565b610fdb565b6040516103a89190613107565b60405180910390f35b3480156103bd57600080fd5b506103c6610ff0565b6040516103d39190613122565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe919061242a565b611010565b60405161041091906130ec565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612525565b6110a4565b60405161044d9190613107565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612525565b6110b9565b005b34801561048b57600080fd5b506104a660048036038101906104a19190612401565b61115a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610510906131c4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061057c82611252565b9050919050565b61058b6112cc565b73ffffffffffffffffffffffffffffffffffffffff166105a9610d29565b73ffffffffffffffffffffffffffffffffffffffff16146105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f6906132e4565b60405180910390fd5b610608816112d4565b50565b60606002805461061a906136c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610646906136c7565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b50505050509050919050565b60045481565b6106ad6112cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106f357506106f2856106ed6112cc565b611010565b5b610732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610729906132a4565b60405180910390fd5b61073f85858585856112ee565b5050505050565b600381111561078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190613244565b60405180910390fd5b600081116107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490613304565b60405180910390fd5b600381600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661082a9190613542565b111561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290613284565b60405180910390fd5b806108773060006104a8565b10156108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af906131a4565b60405180910390fd5b80666a94d74f4300006108cb9190613598565b341461090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906131e4565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a30336000856040518563ffffffff1660e01b815260040161094c9493929190612fe1565b600060405180830381600087803b15801561096657600080fd5b505af115801561097a573d6000803e3d6000fd5b5050505060005b818160ff161015610a1457600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081819054906101000a900460ff16809291906109e890613742565b91906101000a81548160ff021916908360ff160217905550508080610a0c90613742565b915050610981565b5050565b600360149054906101000a900460ff1681565b610a336112cc565b73ffffffffffffffffffffffffffffffffffffffff16610a51610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906132e4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aed573d6000803e3d6000fd5b50565b60608151835114610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613344565b60405180910390fd5b6000835167ffffffffffffffff811115610b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ba75781602001602082028036833780820191505090505b50905060005b8451811015610c9657610c40858281518110610bf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104a8565b828281518110610c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610c8f906136f9565b9050610bad565b508091505092915050565b610ca96112cc565b73ffffffffffffffffffffffffffffffffffffffff16610cc7610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906132e4565b60405180910390fd5b610d27600061164e565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610d726112cc565b73ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613324565b60405180910390fd5b8060016000610dd66112cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e836112cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec891906130ec565b60405180910390a35050565b610edc6112cc565b73ffffffffffffffffffffffffffffffffffffffff16610efa610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f47906132e4565b60405180910390fd5b600360149054906101000a900460ff1615610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613184565b60405180910390fd5b610fbe30600060045460405180602001604052806000815250611714565b6001600360146101000a81548160ff021916908315150217905550565b600063bc197c8160e01b905095945050505050565b606060405180606001604052806023815260200161392a60239139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b6110c16112cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111075750611106856111016112cc565b611010565b5b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613224565b60405180910390fd5b61115385858585856118aa565b5050505050565b6111626112cc565b73ffffffffffffffffffffffffffffffffffffffff16611180610d29565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906132e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90613204565b60405180910390fd5b61124f8161164e565b50565b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c557506112c482611b2c565b5b9050919050565b600033905090565b80600290805190602001906112ea9291906120f9565b5050565b8151835114611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613264565b60405180910390fd5b60006113ac6112cc565b90506113bc818787878787611c0e565b60005b84518110156115b9576000858281518110611403577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611448577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906132c4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159e9190613542565b92505081905550505050806115b2906136f9565b90506113bf565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116309291906130b5565b60405180910390a4611646818787878787611c16565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613384565b60405180910390fd5b600061178e6112cc565b90506117af816000876117a088611de6565b6117a988611de6565b87611c0e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180e9190613542565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161188c9291906133bf565b60405180910390a46118a381600087878787611eac565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613264565b60405180910390fd5b60006119246112cc565b905061194481878761193588611de6565b61193e88611de6565b87611c0e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906132c4565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a909190613542565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b0d9291906133bf565b60405180910390a4611b23828888888888611eac565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bf757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c075750611c068261207c565b5b9050919050565b505050505050565b611c358473ffffffffffffffffffffffffffffffffffffffff166120e6565b15611dde578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c7b959493929190612f79565b602060405180830381600087803b158015611c9557600080fd5b505af1925050508015611cc657506040513d601f19601f82011682018060405250810190611cc391906126c1565b60015b611d5557611cd2613817565b80611cdd5750611d1a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119190613122565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613144565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613164565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611e2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611e595781602001602082028036833780820191505090505b5090508281600081518110611e97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611ecb8473ffffffffffffffffffffffffffffffffffffffff166120e6565b15612074578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f11959493929190613039565b602060405180830381600087803b158015611f2b57600080fd5b505af1925050508015611f5c57506040513d601f19601f82011682018060405250810190611f5991906126c1565b60015b611feb57611f68613817565b80611f735750611fb0565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa79190613122565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613144565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990613164565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b828054612105906136c7565b90600052602060002090601f016020900481019282612127576000855561216e565b82601f1061214057805160ff191683800117855561216e565b8280016001018555821561216e579182015b8281111561216d578251825591602001919060010190612152565b5b50905061217b919061217f565b5090565b5b80821115612198576000816000905550600101612180565b5090565b60006121af6121aa84613419565b6133e8565b905080838252602082019050828560208602820111156121ce57600080fd5b60005b858110156121fe57816121e488826122f0565b8452602084019350602083019250506001810190506121d1565b5050509392505050565b600061221b61221684613445565b6133e8565b9050808382526020820190508285602086028201111561223a57600080fd5b60005b8581101561226a578161225088826123ec565b84526020840193506020830192505060018101905061223d565b5050509392505050565b600061228761228284613471565b6133e8565b90508281526020810184848401111561229f57600080fd5b6122aa848285613685565b509392505050565b60006122c56122c0846134a1565b6133e8565b9050828152602081018484840111156122dd57600080fd5b6122e8848285613685565b509392505050565b6000813590506122ff816138cd565b92915050565b600082601f83011261231657600080fd5b813561232684826020860161219c565b91505092915050565b600082601f83011261234057600080fd5b8135612350848260208601612208565b91505092915050565b600081359050612368816138e4565b92915050565b60008135905061237d816138fb565b92915050565b600081519050612392816138fb565b92915050565b600082601f8301126123a957600080fd5b81356123b9848260208601612274565b91505092915050565b600082601f8301126123d357600080fd5b81356123e38482602086016122b2565b91505092915050565b6000813590506123fb81613912565b92915050565b60006020828403121561241357600080fd5b6000612421848285016122f0565b91505092915050565b6000806040838503121561243d57600080fd5b600061244b858286016122f0565b925050602061245c858286016122f0565b9150509250929050565b600080600080600060a0868803121561247e57600080fd5b600061248c888289016122f0565b955050602061249d888289016122f0565b945050604086013567ffffffffffffffff8111156124ba57600080fd5b6124c68882890161232f565b935050606086013567ffffffffffffffff8111156124e357600080fd5b6124ef8882890161232f565b925050608086013567ffffffffffffffff81111561250c57600080fd5b61251888828901612398565b9150509295509295909350565b600080600080600060a0868803121561253d57600080fd5b600061254b888289016122f0565b955050602061255c888289016122f0565b945050604061256d888289016123ec565b935050606061257e888289016123ec565b925050608086013567ffffffffffffffff81111561259b57600080fd5b6125a788828901612398565b9150509295509295909350565b600080604083850312156125c757600080fd5b60006125d5858286016122f0565b92505060206125e685828601612359565b9150509250929050565b6000806040838503121561260357600080fd5b6000612611858286016122f0565b9250506020612622858286016123ec565b9150509250929050565b6000806040838503121561263f57600080fd5b600083013567ffffffffffffffff81111561265957600080fd5b61266585828601612305565b925050602083013567ffffffffffffffff81111561268257600080fd5b61268e8582860161232f565b9150509250929050565b6000602082840312156126aa57600080fd5b60006126b88482850161236e565b91505092915050565b6000602082840312156126d357600080fd5b60006126e184828501612383565b91505092915050565b6000602082840312156126fc57600080fd5b600082013567ffffffffffffffff81111561271657600080fd5b612722848285016123c2565b91505092915050565b60006020828403121561273d57600080fd5b600061274b848285016123ec565b91505092915050565b60006127608383612f40565b60208301905092915050565b612775816135f2565b82525050565b6000612786826134e1565b612790818561350f565b935061279b836134d1565b8060005b838110156127cc5781516127b38882612754565b97506127be83613502565b92505060018101905061279f565b5085935050505092915050565b6127e281613604565b82525050565b6127f181613610565b82525050565b6000612802826134ec565b61280c8185613520565b935061281c818560208601613694565b612825816137f9565b840191505092915050565b61283981613673565b82525050565b600061284a826134f7565b6128548185613531565b9350612864818560208601613694565b61286d816137f9565b840191505092915050565b6000612885603483613531565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006128eb602883613531565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612951602083613531565b91507f426c6f6f64792046616365732061726520616c7265616479206d696e7465642e6000830152602082019050919050565b6000612991601d83613531565b91507f4e6f7420656e6f75676820426c6f6f6479204661636573206c6566742e0000006000830152602082019050919050565b60006129d1602b83613531565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000612a37601283613531565b91507f507269636520697320302e3033206574682e00000000000000000000000000006000830152602082019050919050565b6000612a77602683613531565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612add602983613531565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b43601683613531565b91507f4d6178696d756d207175616e7469747920697320332e000000000000000000006000830152602082019050919050565b6000612b83602583613531565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612be9602983613531565b91507f43616e6e6f7420627579206d6f7265207468616e203320426c6f6f647920466160008301527f63657320706173732e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c4f603283613531565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000612cb5602a83613531565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d1b602083613531565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d5b600083613520565b9150600082019050919050565b6000612d75601683613531565b91507f4d696e696d756d207175616e7469747920697320312e000000000000000000006000830152602082019050919050565b6000612db5602983613531565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e1b602983613531565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e81602883613531565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ee7602183613531565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612f498161365c565b82525050565b612f588161365c565b82525050565b6000602082019050612f73600083018461276c565b92915050565b600060a082019050612f8e600083018861276c565b612f9b602083018761276c565b8181036040830152612fad818661277b565b90508181036060830152612fc1818561277b565b90508181036080830152612fd581846127f7565b90509695505050505050565b600060a082019050612ff6600083018761276c565b613003602083018661276c565b6130106040830185612830565b61301d6060830184612f4f565b818103608083015261302e81612d4e565b905095945050505050565b600060a08201905061304e600083018861276c565b61305b602083018761276c565b6130686040830186612f4f565b6130756060830185612f4f565b818103608083015261308781846127f7565b90509695505050505050565b600060208201905081810360008301526130ad818461277b565b905092915050565b600060408201905081810360008301526130cf818561277b565b905081810360208301526130e3818461277b565b90509392505050565b600060208201905061310160008301846127d9565b92915050565b600060208201905061311c60008301846127e8565b92915050565b6000602082019050818103600083015261313c818461283f565b905092915050565b6000602082019050818103600083015261315d81612878565b9050919050565b6000602082019050818103600083015261317d816128de565b9050919050565b6000602082019050818103600083015261319d81612944565b9050919050565b600060208201905081810360008301526131bd81612984565b9050919050565b600060208201905081810360008301526131dd816129c4565b9050919050565b600060208201905081810360008301526131fd81612a2a565b9050919050565b6000602082019050818103600083015261321d81612a6a565b9050919050565b6000602082019050818103600083015261323d81612ad0565b9050919050565b6000602082019050818103600083015261325d81612b36565b9050919050565b6000602082019050818103600083015261327d81612b76565b9050919050565b6000602082019050818103600083015261329d81612bdc565b9050919050565b600060208201905081810360008301526132bd81612c42565b9050919050565b600060208201905081810360008301526132dd81612ca8565b9050919050565b600060208201905081810360008301526132fd81612d0e565b9050919050565b6000602082019050818103600083015261331d81612d68565b9050919050565b6000602082019050818103600083015261333d81612da8565b9050919050565b6000602082019050818103600083015261335d81612e0e565b9050919050565b6000602082019050818103600083015261337d81612e74565b9050919050565b6000602082019050818103600083015261339d81612eda565b9050919050565b60006020820190506133b96000830184612f4f565b92915050565b60006040820190506133d46000830185612f4f565b6133e16020830184612f4f565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561340f5761340e6137ca565b5b8060405250919050565b600067ffffffffffffffff821115613434576134336137ca565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134605761345f6137ca565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561348c5761348b6137ca565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156134bc576134bb6137ca565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061354d8261365c565b91506135588361365c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358d5761358c61376c565b5b828201905092915050565b60006135a38261365c565b91506135ae8361365c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e7576135e661376c565b5b828202905092915050565b60006135fd8261363c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061367e8261365c565b9050919050565b82818337600083830152505050565b60005b838110156136b2578082015181840152602081019050613697565b838111156136c1576000848401525b50505050565b600060028204905060018216806136df57607f821691505b602082108114156136f3576136f261379b565b5b50919050565b60006137048261365c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137375761373661376c565b5b600182019050919050565b600061374d82613666565b915060ff8214156137615761376061376c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015613827576138ca565b60046000803e61383860005161380a565b6308c379a0811461384957506138ca565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715613875575050506138ca565b808201805167ffffffffffffffff8111156138945750505050506138ca565b8060208301013d85018111156138af575050505050506138ca565b6138b8826137f9565b60208401016040528296505050505050505b90565b6138d6816135f2565b81146138e157600080fd5b50565b6138ed81613604565b81146138f857600080fd5b50565b61390481613610565b811461390f57600080fd5b50565b61391b8161365c565b811461392657600080fd5b5056fe68747470733a2f2f626c6f6f647966616365732e696f2f6170692f6d65746164617461a26469706673582212205a6b67617f5097af0fd6ba7832ff98bec146fc4c7e62268e876734725a9b312c64736f6c6343000800003368747470733a2f2f626c6f6f647966616365732e696f2f6170692f6d696e74706173732f7b69647d

Deployed Bytecode

0x60806040526004361061011e5760003560e01c8063715018a6116100a0578063e8a3d48511610064578063e8a3d485146103b1578063e985e9c5146103dc578063f23a6e6114610419578063f242432a14610456578063f2fde38b1461047f5761011e565b8063715018a6146102f25780638da5cb5b14610309578063a22cb46514610334578063a4b5f6b61461035d578063bc197c81146103745761011e565b80632eb2c2d6116100e75780632eb2c2d61461022e5780633420f9b31461025757806336ae5040146102735780633ccfd60b1461029e5780634e1273f4146102b55761011e565b8062fdd58e1461012357806301ffc9a71461016057806302fe53051461019d5780630e89341c146101c657806318160ddd14610203575b600080fd5b34801561012f57600080fd5b5061014a600480360381019061014591906125f0565b6104a8565b60405161015791906133a4565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190612698565b610571565b60405161019491906130ec565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf91906126ea565b610583565b005b3480156101d257600080fd5b506101ed60048036038101906101e8919061272b565b61060b565b6040516101fa9190613122565b60405180910390f35b34801561020f57600080fd5b5061021861069f565b60405161022591906133a4565b60405180910390f35b34801561023a57600080fd5b5061025560048036038101906102509190612466565b6106a5565b005b610271600480360381019061026c919061272b565b610746565b005b34801561027f57600080fd5b50610288610a18565b60405161029591906130ec565b60405180910390f35b3480156102aa57600080fd5b506102b3610a2b565b005b3480156102c157600080fd5b506102dc60048036038101906102d7919061262c565b610af0565b6040516102e99190613093565b60405180910390f35b3480156102fe57600080fd5b50610307610ca1565b005b34801561031557600080fd5b5061031e610d29565b60405161032b9190612f5e565b60405180910390f35b34801561034057600080fd5b5061035b600480360381019061035691906125b4565b610d53565b005b34801561036957600080fd5b50610372610ed4565b005b34801561038057600080fd5b5061039b60048036038101906103969190612466565b610fdb565b6040516103a89190613107565b60405180910390f35b3480156103bd57600080fd5b506103c6610ff0565b6040516103d39190613122565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe919061242a565b611010565b60405161041091906130ec565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612525565b6110a4565b60405161044d9190613107565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612525565b6110b9565b005b34801561048b57600080fd5b506104a660048036038101906104a19190612401565b61115a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610510906131c4565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061057c82611252565b9050919050565b61058b6112cc565b73ffffffffffffffffffffffffffffffffffffffff166105a9610d29565b73ffffffffffffffffffffffffffffffffffffffff16146105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f6906132e4565b60405180910390fd5b610608816112d4565b50565b60606002805461061a906136c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610646906136c7565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b50505050509050919050565b60045481565b6106ad6112cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806106f357506106f2856106ed6112cc565b611010565b5b610732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610729906132a4565b60405180910390fd5b61073f85858585856112ee565b5050505050565b600381111561078a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078190613244565b60405180910390fd5b600081116107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c490613304565b60405180910390fd5b600381600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1661082a9190613542565b111561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290613284565b60405180910390fd5b806108773060006104a8565b10156108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af906131a4565b60405180910390fd5b80666a94d74f4300006108cb9190613598565b341461090c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610903906131e4565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663f242432a30336000856040518563ffffffff1660e01b815260040161094c9493929190612fe1565b600060405180830381600087803b15801561096657600080fd5b505af115801561097a573d6000803e3d6000fd5b5050505060005b818160ff161015610a1457600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081819054906101000a900460ff16809291906109e890613742565b91906101000a81548160ff021916908360ff160217905550508080610a0c90613742565b915050610981565b5050565b600360149054906101000a900460ff1681565b610a336112cc565b73ffffffffffffffffffffffffffffffffffffffff16610a51610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610aa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9e906132e4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610aed573d6000803e3d6000fd5b50565b60608151835114610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613344565b60405180910390fd5b6000835167ffffffffffffffff811115610b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ba75781602001602082028036833780820191505090505b50905060005b8451811015610c9657610c40858281518110610bf2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516104a8565b828281518110610c79577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610c8f906136f9565b9050610bad565b508091505092915050565b610ca96112cc565b73ffffffffffffffffffffffffffffffffffffffff16610cc7610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906132e4565b60405180910390fd5b610d27600061164e565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610d726112cc565b73ffffffffffffffffffffffffffffffffffffffff161415610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090613324565b60405180910390fd5b8060016000610dd66112cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e836112cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ec891906130ec565b60405180910390a35050565b610edc6112cc565b73ffffffffffffffffffffffffffffffffffffffff16610efa610d29565b73ffffffffffffffffffffffffffffffffffffffff1614610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f47906132e4565b60405180910390fd5b600360149054906101000a900460ff1615610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613184565b60405180910390fd5b610fbe30600060045460405180602001604052806000815250611714565b6001600360146101000a81548160ff021916908315150217905550565b600063bc197c8160e01b905095945050505050565b606060405180606001604052806023815260200161392a60239139905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600063f23a6e6160e01b905095945050505050565b6110c16112cc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111075750611106856111016112cc565b611010565b5b611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613224565b60405180910390fd5b61115385858585856118aa565b5050505050565b6111626112cc565b73ffffffffffffffffffffffffffffffffffffffff16611180610d29565b73ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd906132e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123d90613204565b60405180910390fd5b61124f8161164e565b50565b60007f4e2312e0000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112c557506112c482611b2c565b5b9050919050565b600033905090565b80600290805190602001906112ea9291906120f9565b5050565b8151835114611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613264565b60405180910390fd5b60006113ac6112cc565b90506113bc818787878787611c0e565b60005b84518110156115b9576000858281518110611403577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611448577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906132c4565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159e9190613542565b92505081905550505050806115b2906136f9565b90506113bf565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116309291906130b5565b60405180910390a4611646818787878787611c16565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90613384565b60405180910390fd5b600061178e6112cc565b90506117af816000876117a088611de6565b6117a988611de6565b87611c0e565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461180e9190613542565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161188c9291906133bf565b60405180910390a46118a381600087878787611eac565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190613264565b60405180910390fd5b60006119246112cc565b905061194481878761193588611de6565b61193e88611de6565b87611c0e565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906132c4565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a909190613542565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611b0d9291906133bf565b60405180910390a4611b23828888888888611eac565b50505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bf757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c075750611c068261207c565b5b9050919050565b505050505050565b611c358473ffffffffffffffffffffffffffffffffffffffff166120e6565b15611dde578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611c7b959493929190612f79565b602060405180830381600087803b158015611c9557600080fd5b505af1925050508015611cc657506040513d601f19601f82011682018060405250810190611cc391906126c1565b60015b611d5557611cd2613817565b80611cdd5750611d1a565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119190613122565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4c90613144565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd390613164565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611e2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611e595781602001602082028036833780820191505090505b5090508281600081518110611e97577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b611ecb8473ffffffffffffffffffffffffffffffffffffffff166120e6565b15612074578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f11959493929190613039565b602060405180830381600087803b158015611f2b57600080fd5b505af1925050508015611f5c57506040513d601f19601f82011682018060405250810190611f5991906126c1565b60015b611feb57611f68613817565b80611f735750611fb0565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa79190613122565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613144565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206990613164565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b828054612105906136c7565b90600052602060002090601f016020900481019282612127576000855561216e565b82601f1061214057805160ff191683800117855561216e565b8280016001018555821561216e579182015b8281111561216d578251825591602001919060010190612152565b5b50905061217b919061217f565b5090565b5b80821115612198576000816000905550600101612180565b5090565b60006121af6121aa84613419565b6133e8565b905080838252602082019050828560208602820111156121ce57600080fd5b60005b858110156121fe57816121e488826122f0565b8452602084019350602083019250506001810190506121d1565b5050509392505050565b600061221b61221684613445565b6133e8565b9050808382526020820190508285602086028201111561223a57600080fd5b60005b8581101561226a578161225088826123ec565b84526020840193506020830192505060018101905061223d565b5050509392505050565b600061228761228284613471565b6133e8565b90508281526020810184848401111561229f57600080fd5b6122aa848285613685565b509392505050565b60006122c56122c0846134a1565b6133e8565b9050828152602081018484840111156122dd57600080fd5b6122e8848285613685565b509392505050565b6000813590506122ff816138cd565b92915050565b600082601f83011261231657600080fd5b813561232684826020860161219c565b91505092915050565b600082601f83011261234057600080fd5b8135612350848260208601612208565b91505092915050565b600081359050612368816138e4565b92915050565b60008135905061237d816138fb565b92915050565b600081519050612392816138fb565b92915050565b600082601f8301126123a957600080fd5b81356123b9848260208601612274565b91505092915050565b600082601f8301126123d357600080fd5b81356123e38482602086016122b2565b91505092915050565b6000813590506123fb81613912565b92915050565b60006020828403121561241357600080fd5b6000612421848285016122f0565b91505092915050565b6000806040838503121561243d57600080fd5b600061244b858286016122f0565b925050602061245c858286016122f0565b9150509250929050565b600080600080600060a0868803121561247e57600080fd5b600061248c888289016122f0565b955050602061249d888289016122f0565b945050604086013567ffffffffffffffff8111156124ba57600080fd5b6124c68882890161232f565b935050606086013567ffffffffffffffff8111156124e357600080fd5b6124ef8882890161232f565b925050608086013567ffffffffffffffff81111561250c57600080fd5b61251888828901612398565b9150509295509295909350565b600080600080600060a0868803121561253d57600080fd5b600061254b888289016122f0565b955050602061255c888289016122f0565b945050604061256d888289016123ec565b935050606061257e888289016123ec565b925050608086013567ffffffffffffffff81111561259b57600080fd5b6125a788828901612398565b9150509295509295909350565b600080604083850312156125c757600080fd5b60006125d5858286016122f0565b92505060206125e685828601612359565b9150509250929050565b6000806040838503121561260357600080fd5b6000612611858286016122f0565b9250506020612622858286016123ec565b9150509250929050565b6000806040838503121561263f57600080fd5b600083013567ffffffffffffffff81111561265957600080fd5b61266585828601612305565b925050602083013567ffffffffffffffff81111561268257600080fd5b61268e8582860161232f565b9150509250929050565b6000602082840312156126aa57600080fd5b60006126b88482850161236e565b91505092915050565b6000602082840312156126d357600080fd5b60006126e184828501612383565b91505092915050565b6000602082840312156126fc57600080fd5b600082013567ffffffffffffffff81111561271657600080fd5b612722848285016123c2565b91505092915050565b60006020828403121561273d57600080fd5b600061274b848285016123ec565b91505092915050565b60006127608383612f40565b60208301905092915050565b612775816135f2565b82525050565b6000612786826134e1565b612790818561350f565b935061279b836134d1565b8060005b838110156127cc5781516127b38882612754565b97506127be83613502565b92505060018101905061279f565b5085935050505092915050565b6127e281613604565b82525050565b6127f181613610565b82525050565b6000612802826134ec565b61280c8185613520565b935061281c818560208601613694565b612825816137f9565b840191505092915050565b61283981613673565b82525050565b600061284a826134f7565b6128548185613531565b9350612864818560208601613694565b61286d816137f9565b840191505092915050565b6000612885603483613531565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b60006128eb602883613531565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612951602083613531565b91507f426c6f6f64792046616365732061726520616c7265616479206d696e7465642e6000830152602082019050919050565b6000612991601d83613531565b91507f4e6f7420656e6f75676820426c6f6f6479204661636573206c6566742e0000006000830152602082019050919050565b60006129d1602b83613531565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000612a37601283613531565b91507f507269636520697320302e3033206574682e00000000000000000000000000006000830152602082019050919050565b6000612a77602683613531565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612add602983613531565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b43601683613531565b91507f4d6178696d756d207175616e7469747920697320332e000000000000000000006000830152602082019050919050565b6000612b83602583613531565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612be9602983613531565b91507f43616e6e6f7420627579206d6f7265207468616e203320426c6f6f647920466160008301527f63657320706173732e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c4f603283613531565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b6000612cb5602a83613531565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b6000612d1b602083613531565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d5b600083613520565b9150600082019050919050565b6000612d75601683613531565b91507f4d696e696d756d207175616e7469747920697320312e000000000000000000006000830152602082019050919050565b6000612db5602983613531565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e1b602983613531565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e81602883613531565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ee7602183613531565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b612f498161365c565b82525050565b612f588161365c565b82525050565b6000602082019050612f73600083018461276c565b92915050565b600060a082019050612f8e600083018861276c565b612f9b602083018761276c565b8181036040830152612fad818661277b565b90508181036060830152612fc1818561277b565b90508181036080830152612fd581846127f7565b90509695505050505050565b600060a082019050612ff6600083018761276c565b613003602083018661276c565b6130106040830185612830565b61301d6060830184612f4f565b818103608083015261302e81612d4e565b905095945050505050565b600060a08201905061304e600083018861276c565b61305b602083018761276c565b6130686040830186612f4f565b6130756060830185612f4f565b818103608083015261308781846127f7565b90509695505050505050565b600060208201905081810360008301526130ad818461277b565b905092915050565b600060408201905081810360008301526130cf818561277b565b905081810360208301526130e3818461277b565b90509392505050565b600060208201905061310160008301846127d9565b92915050565b600060208201905061311c60008301846127e8565b92915050565b6000602082019050818103600083015261313c818461283f565b905092915050565b6000602082019050818103600083015261315d81612878565b9050919050565b6000602082019050818103600083015261317d816128de565b9050919050565b6000602082019050818103600083015261319d81612944565b9050919050565b600060208201905081810360008301526131bd81612984565b9050919050565b600060208201905081810360008301526131dd816129c4565b9050919050565b600060208201905081810360008301526131fd81612a2a565b9050919050565b6000602082019050818103600083015261321d81612a6a565b9050919050565b6000602082019050818103600083015261323d81612ad0565b9050919050565b6000602082019050818103600083015261325d81612b36565b9050919050565b6000602082019050818103600083015261327d81612b76565b9050919050565b6000602082019050818103600083015261329d81612bdc565b9050919050565b600060208201905081810360008301526132bd81612c42565b9050919050565b600060208201905081810360008301526132dd81612ca8565b9050919050565b600060208201905081810360008301526132fd81612d0e565b9050919050565b6000602082019050818103600083015261331d81612d68565b9050919050565b6000602082019050818103600083015261333d81612da8565b9050919050565b6000602082019050818103600083015261335d81612e0e565b9050919050565b6000602082019050818103600083015261337d81612e74565b9050919050565b6000602082019050818103600083015261339d81612eda565b9050919050565b60006020820190506133b96000830184612f4f565b92915050565b60006040820190506133d46000830185612f4f565b6133e16020830184612f4f565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561340f5761340e6137ca565b5b8060405250919050565b600067ffffffffffffffff821115613434576134336137ca565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134605761345f6137ca565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561348c5761348b6137ca565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156134bc576134bb6137ca565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061354d8261365c565b91506135588361365c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561358d5761358c61376c565b5b828201905092915050565b60006135a38261365c565b91506135ae8361365c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e7576135e661376c565b5b828202905092915050565b60006135fd8261363c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061367e8261365c565b9050919050565b82818337600083830152505050565b60005b838110156136b2578082015181840152602081019050613697565b838111156136c1576000848401525b50505050565b600060028204905060018216806136df57607f821691505b602082108114156136f3576136f261379b565b5b50919050565b60006137048261365c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137375761373661376c565b5b600182019050919050565b600061374d82613666565b915060ff8214156137615761376061376c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b600060443d1015613827576138ca565b60046000803e61383860005161380a565b6308c379a0811461384957506138ca565b60405160043d036004823e80513d602482011167ffffffffffffffff82111715613875575050506138ca565b808201805167ffffffffffffffff8111156138945750505050506138ca565b8060208301013d85018111156138af575050505050506138ca565b6138b8826137f9565b60208401016040528296505050505050505b90565b6138d6816135f2565b81146138e157600080fd5b50565b6138ed81613604565b81146138f857600080fd5b50565b61390481613610565b811461390f57600080fd5b50565b61391b8161365c565b811461392657600080fd5b5056fe68747470733a2f2f626c6f6f647966616365732e696f2f6170692f6d65746164617461a26469706673582212205a6b67617f5097af0fd6ba7832ff98bec146fc4c7e62268e876734725a9b312c64736f6c63430008000033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.