ETH Price: $2,614.40 (+0.90%)

Token

 

Overview

Max Total Supply

1,476

Holders

114

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rektdeem.eth
0xf78800bee7892e0cf48fa5db1a988b9a592273c1
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:
Fragment

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Fragment.sol
//                        ROGUE TITANS
//
// MMMMMMXk;.;xXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNk:':kNMMMMMM
// MMWXkl;.   .,lkKWMMMMMMMMMMMMMMMMMMMMMMMMMMWXko;.   .;oOXWMM
// 0xc'.         ..:d0NMMMMMMMMMMMMMMMMMMMMN0xc'.         .'cxK
// .                 .,lkXWMMMMMMMMMMMMWXOo;.                 .
//                      .'cx0NMMMMMMWKxc'.                     
//                          .:kNNKOo;.                         
//          ;dc'.         .,cllc'..              ..:o;         
//         .lNWXOo;.   .;clc;.                .,lkXWNl.        
//         .lNMMMMN0dlllc,.               ..:d0NMMMMWl.        
//         .lNMMMMN0d:..               .,cllld0NMMMMNl.        
//         .lNWXkl,.                .;llc;..  .;okXWNl.        
//          ;o:..              .,;cllc,.         .'cd;         
//                          .;oONWNk:.                         
//                      .'cxKWMMMMMMN0xc'.                     
// .                 .;oOXWMMMMMMMMMMMMWXkl,.                 .
// Kxc'.         .'cxKWMMMMMMMMMMMMMMMMMMMMN0d:..         .'cd0
// MMWXOo;.   .;oOXWMMMMMMMMMMMMMMMMMMMMMMMMMMWXkl,.   .,lkXWMM
// MMMMMMNk:':kXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWXx;.:kXMMMMMM
//                                                                                            
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

///
///
///

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract Fragment is ERC1155, ReentrancyGuard, Ownable {

    event Activate();
    event Deactivate();

    event Approval(address indexed contactAddress, address indexed tokenOwner, uint tokens);

    uint256 constant private fragmentId = 1;
    
    uint256 constant public maxFragments = 50000;
    uint256 public numSmeltedFragments;
        
    address public traceContract;
    address constant public burnAddress = 0x0000000000000000000000000000000000000000;
    uint256 constant public traceThreshold = 20;
    
    bool public isSaleActive = false;
    
    uint256 constant private _smeltPrice = 0.05 ether;

    constructor() ERC1155("https://arweave.net/_AmiElq9b_FKa6Gdd2GCz22D-KNfJ1-liabhmiJkKk0") {}

    //
    // Activate the public sale
    //
    function initializeSale(address traceContract_) public onlyOwner {
        require(!isSaleActive, "First disable the Fragment smelting to re-initialize.");

        isSaleActive = true;
        traceContract = traceContract_;

        emit Activate();
    }

    //
    // Owner withdraw funds
    //
    function withdrawBalance() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    //
    // Toggle Activate/Deactivate ability to smelt fragments
    //
    function toggleSale() public onlyOwner {
        isSaleActive = !isSaleActive;

        if (isSaleActive == true) {
            emit Activate();
        } else {
            emit Deactivate();
        }
    }
    
    //
    // Mint the Fragment
    //
    function smeltFragment(uint256 numFragmentsRequested) external payable nonReentrant {
        IERC20 traceTokenImpl = IERC20(traceContract);
        uint256 traceBurnAmount = numFragmentsRequested * 20;

        require(isSaleActive, "Smelting Fragments is not active at this point in time.");
        require(numFragmentsRequested > 0, "You must smelt at least 1 whole Fragment.");
        require((numSmeltedFragments + numFragmentsRequested) <= maxFragments, "Requested count for Fragments exceeds the maximum smeltable Fragments.");
       
        require(msg.value >= (numFragmentsRequested * _smeltPrice), "Invalid amount of ETH sent.");
        
        require(traceTokenImpl.balanceOf(msg.sender) >= (traceBurnAmount), "You do not have enough $TRCE to mint a Fragment.");

        try traceTokenImpl.transferFrom(msg.sender, address(burnAddress), traceBurnAmount) {
        } catch (bytes memory) {
            revert("Failed to burn $TRCE - Please verify that you have approved the correct number of tokens. Reverting.");
        }
        
        numSmeltedFragments += numFragmentsRequested;
        _mint(msg.sender, fragmentId, numFragmentsRequested, "");
    }
}

File 2 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);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 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 5 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 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 7 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 8 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 9 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 10 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 11 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 12 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Activate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contactAddress","type":"address"},{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Approval","type":"event"},{"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":[],"name":"Deactivate","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":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"traceContract_","type":"address"}],"name":"initializeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFragments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numSmeltedFragments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numFragmentsRequested","type":"uint256"}],"name":"smeltFragment","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"traceContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"traceThreshold","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":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060600160405280603f815260200162003e2f603f913962000058816200008760201b60201c565b5060016003819055506200008162000075620000a360201b60201c565b620000ab60201b60201c565b62000286565b80600290805190602001906200009f92919062000171565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017f9062000221565b90600052602060002090601f016020900481019282620001a35760008555620001ef565b82601f10620001be57805160ff1916838001178555620001ef565b82800160010185558215620001ef579182015b82811115620001ee578251825591602001919060010190620001d1565b5b509050620001fe919062000202565b5090565b5b808211156200021d57600081600090555060010162000203565b5090565b600060028204905060018216806200023a57607f821691505b6020821081141562000251576200025062000257565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b9980620002966000396000f3fe6080604052600436106101295760003560e01c8063715018a6116100ab578063c004f19f1161006f578063c004f19f146103ac578063e2e74a59146103d7578063e985e9c514610400578063ebdc06be1461043d578063f242432a14610468578063f2fde38b1461049157610129565b8063715018a61461030e57806373667529146103255780637d8966e4146103415780638da5cb5b14610358578063a22cb4651461038357610129565b8063443434da116100f2578063443434da146102395780634e1273f414610264578063564566a8146102a15780635fd8c710146102cc57806370d5ae05146102e357610129565b8062fdd58e1461012e57806301ffc9a71461016b5780630e89341c146101a85780632eb2c2d6146101e557806331710dfb1461020e575b600080fd5b34801561013a57600080fd5b5061015560048036038101906101509190612586565b6104ba565b6040516101629190612f6c565b60405180910390f35b34801561017757600080fd5b50610192600480360381019061018d919061266b565b610583565b60405161019f9190612c8f565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca91906126c5565b610665565b6040516101dc9190612caa565b60405180910390f35b3480156101f157600080fd5b5061020c600480360381019061020791906123e0565b6106f9565b005b34801561021a57600080fd5b5061022361079a565b6040516102309190612f6c565b60405180910390f35b34801561024557600080fd5b5061024e6107a0565b60405161025b9190612b22565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906125c6565b6107c6565b6040516102989190612c36565b60405180910390f35b3480156102ad57600080fd5b506102b66108df565b6040516102c39190612c8f565b60405180910390f35b3480156102d857600080fd5b506102e16108f2565b005b3480156102ef57600080fd5b506102f86109bd565b6040516103059190612b22565b60405180910390f35b34801561031a57600080fd5b506103236109c2565b005b61033f600480360381019061033a91906126c5565b610a4a565b005b34801561034d57600080fd5b50610356610e11565b005b34801561036457600080fd5b5061036d610f33565b60405161037a9190612b22565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612546565b610f5d565b005b3480156103b857600080fd5b506103c16110de565b6040516103ce9190612f6c565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612373565b6110e4565b005b34801561040c57600080fd5b50610427600480360381019061042291906123a0565b61123b565b6040516104349190612c8f565b60405180910390f35b34801561044957600080fd5b506104526112cf565b60405161045f9190612f6c565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906124af565b6112d4565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612373565b611375565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561052b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052290612d0c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065e575061065d8261146d565b5b9050919050565b60606002805461067490613235565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090613235565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b50505050509050919050565b6107016114d7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107475750610746856107416114d7565b61123b565b5b610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612dac565b60405180910390fd5b61079385858585856114df565b5050505050565b60055481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060815183511461080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612ecc565b60405180910390fd5b6000835167ffffffffffffffff8111156108295761082861336e565b5b6040519080825280602002602001820160405280156108575781602001602082028036833780820191505090505b50905060005b84518110156108d4576108a485828151811061087c5761087b61333f565b5b60200260200101518583815181106108975761089661333f565b5b60200260200101516104ba565b8282815181106108b7576108b661333f565b5b602002602001018181525050806108cd90613298565b905061085d565b508091505092915050565b600660149054906101000a900460ff1681565b6108fa6114d7565b73ffffffffffffffffffffffffffffffffffffffff16610918610f33565b73ffffffffffffffffffffffffffffffffffffffff161461096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612e0c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109b9573d6000803e3d6000fd5b5050565b600081565b6109ca6114d7565b73ffffffffffffffffffffffffffffffffffffffff166109e8610f33565b73ffffffffffffffffffffffffffffffffffffffff1614610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590612e0c565b60405180910390fd5b610a4860006117f3565b565b60026003541415610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612f2c565b60405180910390fd5b60026003819055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601483610ace9190613125565b9050600660149054906101000a900460ff16610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690612f4c565b60405180910390fd5b60008311610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990612d6c565b60405180910390fd5b61c35083600554610b7391906130cf565b1115610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612e2c565b60405180910390fd5b66b1a2bc2ec5000083610bc79190613125565b341015610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090612dcc565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c439190612b22565b60206040518083038186803b158015610c5b57600080fd5b505afa158015610c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9391906126f2565b1015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90612e4c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd336000846040518463ffffffff1660e01b8152600401610d1293929190612ba5565b602060405180830381600087803b158015610d2c57600080fd5b505af1925050508015610d5d57506040513d601f19601f82011682018060405250810190610d5a919061263e565b60015b610dce573d8060008114610d8d576040519150601f19603f3d011682016040523d82523d6000602084013e610d92565b606091505b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612e8c565b60405180910390fd5b508260056000828254610de191906130cf565b92505081905550610e0433600185604051806020016040528060008152506118b9565b5050600160038190555050565b610e196114d7565b73ffffffffffffffffffffffffffffffffffffffff16610e37610f33565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612e0c565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff02191690831515021790555060011515600660149054906101000a900460ff1615151415610f04577f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a1610f31565b7fc2a8834045efeaf0b37df1cf2e5979bff82a0c7f93c99b649a004940ef3cda4560405160405180910390a15b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610f7c6114d7565b73ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612eac565b60405180910390fd5b8060016000610fe06114d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108d6114d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d29190612c8f565b60405180910390a35050565b61c35081565b6110ec6114d7565b73ffffffffffffffffffffffffffffffffffffffff1661110a610f33565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790612e0c565b60405180910390fd5b600660149054906101000a900460ff16156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790612e6c565b60405180910390fd5b6001600660146101000a81548160ff02191690831515021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b6112dc6114d7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061132257506113218561131c6114d7565b61123b565b5b611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612d4c565b60405180910390fd5b61136e8585858585611a4f565b5050505050565b61137d6114d7565b73ffffffffffffffffffffffffffffffffffffffff1661139b610f33565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890612d2c565b60405180910390fd5b61146a816117f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90612eec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90612d8c565b60405180910390fd5b600061159d6114d7565b90506115ad818787878787611cd1565b60005b845181101561175e5760008582815181106115ce576115cd61333f565b5b6020026020010151905060008583815181106115ed576115ec61333f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612dec565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174391906130cf565b925050819055505050508061175790613298565b90506115b0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117d5929190612c58565b60405180910390a46117eb818787878787611cd9565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090612f0c565b60405180910390fd5b60006119336114d7565b90506119548160008761194588611ec0565b61194e88611ec0565b87611cd1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b391906130cf565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611a31929190612f87565b60405180910390a4611a4881600087878787611f3a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690612d8c565b60405180910390fd5b6000611ac96114d7565b9050611ae9818787611ada88611ec0565b611ae388611ec0565b87611cd1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790612dec565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3591906130cf565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611cb2929190612f87565b60405180910390a4611cc8828888888888611f3a565b50505050505050565b505050505050565b611cf88473ffffffffffffffffffffffffffffffffffffffff16612121565b15611eb8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d3e959493929190612b3d565b602060405180830381600087803b158015611d5857600080fd5b505af1925050508015611d8957506040513d601f19601f82011682018060405250810190611d869190612698565b60015b611e2f57611d9561339d565b806308c379a01415611df25750611daa613a71565b80611db55750611df4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de99190612caa565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690612ccc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90612cec565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611edf57611ede61336e565b5b604051908082528060200260200182016040528015611f0d5781602001602082028036833780820191505090505b5090508281600081518110611f2557611f2461333f565b5b60200260200101818152505080915050919050565b611f598473ffffffffffffffffffffffffffffffffffffffff16612121565b15612119578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f9f959493929190612bdc565b602060405180830381600087803b158015611fb957600080fd5b505af1925050508015611fea57506040513d601f19601f82011682018060405250810190611fe79190612698565b60015b61209057611ff661339d565b806308c379a01415612053575061200b613a71565b806120165750612055565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9190612caa565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790612ccc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90612cec565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b600061214761214284612fd5565b612fb0565b9050808382526020820190508285602086028201111561216a576121696133c4565b5b60005b8581101561219a57816121808882612256565b84526020840193506020830192505060018101905061216d565b5050509392505050565b60006121b76121b284613001565b612fb0565b905080838252602082019050828560208602820111156121da576121d96133c4565b5b60005b8581101561220a57816121f08882612349565b8452602084019350602083019250506001810190506121dd565b5050509392505050565b60006122276122228461302d565b612fb0565b905082815260208101848484011115612243576122426133c9565b5b61224e8482856131f3565b509392505050565b60008135905061226581613b07565b92915050565b600082601f8301126122805761227f6133bf565b5b8135612290848260208601612134565b91505092915050565b600082601f8301126122ae576122ad6133bf565b5b81356122be8482602086016121a4565b91505092915050565b6000813590506122d681613b1e565b92915050565b6000815190506122eb81613b1e565b92915050565b60008135905061230081613b35565b92915050565b60008151905061231581613b35565b92915050565b600082601f8301126123305761232f6133bf565b5b8135612340848260208601612214565b91505092915050565b60008135905061235881613b4c565b92915050565b60008151905061236d81613b4c565b92915050565b600060208284031215612389576123886133d3565b5b600061239784828501612256565b91505092915050565b600080604083850312156123b7576123b66133d3565b5b60006123c585828601612256565b92505060206123d685828601612256565b9150509250929050565b600080600080600060a086880312156123fc576123fb6133d3565b5b600061240a88828901612256565b955050602061241b88828901612256565b945050604086013567ffffffffffffffff81111561243c5761243b6133ce565b5b61244888828901612299565b935050606086013567ffffffffffffffff811115612469576124686133ce565b5b61247588828901612299565b925050608086013567ffffffffffffffff811115612496576124956133ce565b5b6124a28882890161231b565b9150509295509295909350565b600080600080600060a086880312156124cb576124ca6133d3565b5b60006124d988828901612256565b95505060206124ea88828901612256565b94505060406124fb88828901612349565b935050606061250c88828901612349565b925050608086013567ffffffffffffffff81111561252d5761252c6133ce565b5b6125398882890161231b565b9150509295509295909350565b6000806040838503121561255d5761255c6133d3565b5b600061256b85828601612256565b925050602061257c858286016122c7565b9150509250929050565b6000806040838503121561259d5761259c6133d3565b5b60006125ab85828601612256565b92505060206125bc85828601612349565b9150509250929050565b600080604083850312156125dd576125dc6133d3565b5b600083013567ffffffffffffffff8111156125fb576125fa6133ce565b5b6126078582860161226b565b925050602083013567ffffffffffffffff811115612628576126276133ce565b5b61263485828601612299565b9150509250929050565b600060208284031215612654576126536133d3565b5b6000612662848285016122dc565b91505092915050565b600060208284031215612681576126806133d3565b5b600061268f848285016122f1565b91505092915050565b6000602082840312156126ae576126ad6133d3565b5b60006126bc84828501612306565b91505092915050565b6000602082840312156126db576126da6133d3565b5b60006126e984828501612349565b91505092915050565b600060208284031215612708576127076133d3565b5b60006127168482850161235e565b91505092915050565b600061272b8383612b04565b60208301905092915050565b6127408161317f565b82525050565b60006127518261306e565b61275b818561309c565b93506127668361305e565b8060005b8381101561279757815161277e888261271f565b97506127898361308f565b92505060018101905061276a565b5085935050505092915050565b6127ad81613191565b82525050565b60006127be82613079565b6127c881856130ad565b93506127d8818560208601613202565b6127e1816133d8565b840191505092915050565b60006127f782613084565b61280181856130be565b9350612811818560208601613202565b61281a816133d8565b840191505092915050565b60006128326034836130be565b915061283d826133f6565b604082019050919050565b60006128556028836130be565b915061286082613445565b604082019050919050565b6000612878602b836130be565b915061288382613494565b604082019050919050565b600061289b6026836130be565b91506128a6826134e3565b604082019050919050565b60006128be6029836130be565b91506128c982613532565b604082019050919050565b60006128e16029836130be565b91506128ec82613581565b604082019050919050565b60006129046025836130be565b915061290f826135d0565b604082019050919050565b60006129276032836130be565b91506129328261361f565b604082019050919050565b600061294a601b836130be565b91506129558261366e565b602082019050919050565b600061296d602a836130be565b915061297882613697565b604082019050919050565b60006129906020836130be565b915061299b826136e6565b602082019050919050565b60006129b36046836130be565b91506129be8261370f565b606082019050919050565b60006129d66030836130be565b91506129e182613784565b604082019050919050565b60006129f96035836130be565b9150612a04826137d3565b604082019050919050565b6000612a1c6064836130be565b9150612a2782613822565b608082019050919050565b6000612a3f6029836130be565b9150612a4a826138bd565b604082019050919050565b6000612a626029836130be565b9150612a6d8261390c565b604082019050919050565b6000612a856028836130be565b9150612a908261395b565b604082019050919050565b6000612aa86021836130be565b9150612ab3826139aa565b604082019050919050565b6000612acb601f836130be565b9150612ad6826139f9565b602082019050919050565b6000612aee6037836130be565b9150612af982613a22565b604082019050919050565b612b0d816131e9565b82525050565b612b1c816131e9565b82525050565b6000602082019050612b376000830184612737565b92915050565b600060a082019050612b526000830188612737565b612b5f6020830187612737565b8181036040830152612b718186612746565b90508181036060830152612b858185612746565b90508181036080830152612b9981846127b3565b90509695505050505050565b6000606082019050612bba6000830186612737565b612bc76020830185612737565b612bd46040830184612b13565b949350505050565b600060a082019050612bf16000830188612737565b612bfe6020830187612737565b612c0b6040830186612b13565b612c186060830185612b13565b8181036080830152612c2a81846127b3565b90509695505050505050565b60006020820190508181036000830152612c508184612746565b905092915050565b60006040820190508181036000830152612c728185612746565b90508181036020830152612c868184612746565b90509392505050565b6000602082019050612ca460008301846127a4565b92915050565b60006020820190508181036000830152612cc481846127ec565b905092915050565b60006020820190508181036000830152612ce581612825565b9050919050565b60006020820190508181036000830152612d0581612848565b9050919050565b60006020820190508181036000830152612d258161286b565b9050919050565b60006020820190508181036000830152612d458161288e565b9050919050565b60006020820190508181036000830152612d65816128b1565b9050919050565b60006020820190508181036000830152612d85816128d4565b9050919050565b60006020820190508181036000830152612da5816128f7565b9050919050565b60006020820190508181036000830152612dc58161291a565b9050919050565b60006020820190508181036000830152612de58161293d565b9050919050565b60006020820190508181036000830152612e0581612960565b9050919050565b60006020820190508181036000830152612e2581612983565b9050919050565b60006020820190508181036000830152612e45816129a6565b9050919050565b60006020820190508181036000830152612e65816129c9565b9050919050565b60006020820190508181036000830152612e85816129ec565b9050919050565b60006020820190508181036000830152612ea581612a0f565b9050919050565b60006020820190508181036000830152612ec581612a32565b9050919050565b60006020820190508181036000830152612ee581612a55565b9050919050565b60006020820190508181036000830152612f0581612a78565b9050919050565b60006020820190508181036000830152612f2581612a9b565b9050919050565b60006020820190508181036000830152612f4581612abe565b9050919050565b60006020820190508181036000830152612f6581612ae1565b9050919050565b6000602082019050612f816000830184612b13565b92915050565b6000604082019050612f9c6000830185612b13565b612fa96020830184612b13565b9392505050565b6000612fba612fcb565b9050612fc68282613267565b919050565b6000604051905090565b600067ffffffffffffffff821115612ff057612fef61336e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561301c5761301b61336e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130485761304761336e565b5b613051826133d8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006130da826131e9565b91506130e5836131e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311a576131196132e1565b5b828201905092915050565b6000613130826131e9565b915061313b836131e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613174576131736132e1565b5b828202905092915050565b600061318a826131c9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613220578082015181840152602081019050613205565b8381111561322f576000848401525b50505050565b6000600282049050600182168061324d57607f821691505b6020821081141561326157613260613310565b5b50919050565b613270826133d8565b810181811067ffffffffffffffff8211171561328f5761328e61336e565b5b80604052505050565b60006132a3826131e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132d6576132d56132e1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156133bc5760046000803e6133b96000516133e9565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f596f75206d75737420736d656c74206174206c6561737420312077686f6c652060008201527f467261676d656e742e0000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74206f66204554482073656e742e0000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52657175657374656420636f756e7420666f7220467261676d656e747320657860008201527f636565647320746865206d6178696d756d20736d656c7461626c65204672616760208201527f6d656e74732e0000000000000000000000000000000000000000000000000000604082015250565b7f596f7520646f206e6f74206861766520656e6f75676820245452434520746f2060008201527f6d696e74206120467261676d656e742e00000000000000000000000000000000602082015250565b7f46697273742064697361626c652074686520467261676d656e7420736d656c7460008201527f696e6720746f2072652d696e697469616c697a652e0000000000000000000000602082015250565b7f4661696c656420746f206275726e202454524345202d20506c6561736520766560008201527f72696679207468617420796f75206861766520617070726f766564207468652060208201527f636f7272656374206e756d626572206f6620746f6b656e732e2052657665727460408201527f696e672e00000000000000000000000000000000000000000000000000000000606082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f536d656c74696e6720467261676d656e7473206973206e6f742061637469766560008201527f206174207468697320706f696e7420696e2074696d652e000000000000000000602082015250565b600060443d1015613a8157613b04565b613a89612fcb565b60043d036004823e80513d602482011167ffffffffffffffff82111715613ab1575050613b04565b808201805167ffffffffffffffff811115613acf5750505050613b04565b80602083010160043d038501811115613aec575050505050613b04565b613afb82602001850186613267565b82955050505050505b90565b613b108161317f565b8114613b1b57600080fd5b50565b613b2781613191565b8114613b3257600080fd5b50565b613b3e8161319d565b8114613b4957600080fd5b50565b613b55816131e9565b8114613b6057600080fd5b5056fea2646970667358221220737cdf9112334379c5393090e6775928b8205af59612ba9e17d0197d5ac0a7fd64736f6c6343000807003368747470733a2f2f617277656176652e6e65742f5f416d69456c7139625f464b61364764643247437a3232442d4b4e664a312d6c696162686d694a6b4b6b30

Deployed Bytecode

0x6080604052600436106101295760003560e01c8063715018a6116100ab578063c004f19f1161006f578063c004f19f146103ac578063e2e74a59146103d7578063e985e9c514610400578063ebdc06be1461043d578063f242432a14610468578063f2fde38b1461049157610129565b8063715018a61461030e57806373667529146103255780637d8966e4146103415780638da5cb5b14610358578063a22cb4651461038357610129565b8063443434da116100f2578063443434da146102395780634e1273f414610264578063564566a8146102a15780635fd8c710146102cc57806370d5ae05146102e357610129565b8062fdd58e1461012e57806301ffc9a71461016b5780630e89341c146101a85780632eb2c2d6146101e557806331710dfb1461020e575b600080fd5b34801561013a57600080fd5b5061015560048036038101906101509190612586565b6104ba565b6040516101629190612f6c565b60405180910390f35b34801561017757600080fd5b50610192600480360381019061018d919061266b565b610583565b60405161019f9190612c8f565b60405180910390f35b3480156101b457600080fd5b506101cf60048036038101906101ca91906126c5565b610665565b6040516101dc9190612caa565b60405180910390f35b3480156101f157600080fd5b5061020c600480360381019061020791906123e0565b6106f9565b005b34801561021a57600080fd5b5061022361079a565b6040516102309190612f6c565b60405180910390f35b34801561024557600080fd5b5061024e6107a0565b60405161025b9190612b22565b60405180910390f35b34801561027057600080fd5b5061028b600480360381019061028691906125c6565b6107c6565b6040516102989190612c36565b60405180910390f35b3480156102ad57600080fd5b506102b66108df565b6040516102c39190612c8f565b60405180910390f35b3480156102d857600080fd5b506102e16108f2565b005b3480156102ef57600080fd5b506102f86109bd565b6040516103059190612b22565b60405180910390f35b34801561031a57600080fd5b506103236109c2565b005b61033f600480360381019061033a91906126c5565b610a4a565b005b34801561034d57600080fd5b50610356610e11565b005b34801561036457600080fd5b5061036d610f33565b60405161037a9190612b22565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612546565b610f5d565b005b3480156103b857600080fd5b506103c16110de565b6040516103ce9190612f6c565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612373565b6110e4565b005b34801561040c57600080fd5b50610427600480360381019061042291906123a0565b61123b565b6040516104349190612c8f565b60405180910390f35b34801561044957600080fd5b506104526112cf565b60405161045f9190612f6c565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906124af565b6112d4565b005b34801561049d57600080fd5b506104b860048036038101906104b39190612373565b611375565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561052b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052290612d0c565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061065e575061065d8261146d565b5b9050919050565b60606002805461067490613235565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090613235565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b50505050509050919050565b6107016114d7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806107475750610746856107416114d7565b61123b565b5b610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612dac565b60405180910390fd5b61079385858585856114df565b5050505050565b60055481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060815183511461080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612ecc565b60405180910390fd5b6000835167ffffffffffffffff8111156108295761082861336e565b5b6040519080825280602002602001820160405280156108575781602001602082028036833780820191505090505b50905060005b84518110156108d4576108a485828151811061087c5761087b61333f565b5b60200260200101518583815181106108975761089661333f565b5b60200260200101516104ba565b8282815181106108b7576108b661333f565b5b602002602001018181525050806108cd90613298565b905061085d565b508091505092915050565b600660149054906101000a900460ff1681565b6108fa6114d7565b73ffffffffffffffffffffffffffffffffffffffff16610918610f33565b73ffffffffffffffffffffffffffffffffffffffff161461096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590612e0c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109b9573d6000803e3d6000fd5b5050565b600081565b6109ca6114d7565b73ffffffffffffffffffffffffffffffffffffffff166109e8610f33565b73ffffffffffffffffffffffffffffffffffffffff1614610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590612e0c565b60405180910390fd5b610a4860006117f3565b565b60026003541415610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8790612f2c565b60405180910390fd5b60026003819055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000601483610ace9190613125565b9050600660149054906101000a900460ff16610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690612f4c565b60405180910390fd5b60008311610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990612d6c565b60405180910390fd5b61c35083600554610b7391906130cf565b1115610bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bab90612e2c565b60405180910390fd5b66b1a2bc2ec5000083610bc79190613125565b341015610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090612dcc565b60405180910390fd5b808273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c439190612b22565b60206040518083038186803b158015610c5b57600080fd5b505afa158015610c6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9391906126f2565b1015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90612e4c565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166323b872dd336000846040518463ffffffff1660e01b8152600401610d1293929190612ba5565b602060405180830381600087803b158015610d2c57600080fd5b505af1925050508015610d5d57506040513d601f19601f82011682018060405250810190610d5a919061263e565b60015b610dce573d8060008114610d8d576040519150601f19603f3d011682016040523d82523d6000602084013e610d92565b606091505b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612e8c565b60405180910390fd5b508260056000828254610de191906130cf565b92505081905550610e0433600185604051806020016040528060008152506118b9565b5050600160038190555050565b610e196114d7565b73ffffffffffffffffffffffffffffffffffffffff16610e37610f33565b73ffffffffffffffffffffffffffffffffffffffff1614610e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8490612e0c565b60405180910390fd5b600660149054906101000a900460ff1615600660146101000a81548160ff02191690831515021790555060011515600660149054906101000a900460ff1615151415610f04577f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a1610f31565b7fc2a8834045efeaf0b37df1cf2e5979bff82a0c7f93c99b649a004940ef3cda4560405160405180910390a15b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8173ffffffffffffffffffffffffffffffffffffffff16610f7c6114d7565b73ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca90612eac565b60405180910390fd5b8060016000610fe06114d7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108d6114d7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d29190612c8f565b60405180910390a35050565b61c35081565b6110ec6114d7565b73ffffffffffffffffffffffffffffffffffffffff1661110a610f33565b73ffffffffffffffffffffffffffffffffffffffff1614611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790612e0c565b60405180910390fd5b600660149054906101000a900460ff16156111b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a790612e6c565b60405180910390fd5b6001600660146101000a81548160ff02191690831515021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601481565b6112dc6114d7565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061132257506113218561131c6114d7565b61123b565b5b611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612d4c565b60405180910390fd5b61136e8585858585611a4f565b5050505050565b61137d6114d7565b73ffffffffffffffffffffffffffffffffffffffff1661139b610f33565b73ffffffffffffffffffffffffffffffffffffffff16146113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890612d2c565b60405180910390fd5b61146a816117f3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114611523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151a90612eec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a90612d8c565b60405180910390fd5b600061159d6114d7565b90506115ad818787878787611cd1565b60005b845181101561175e5760008582815181106115ce576115cd61333f565b5b6020026020010151905060008583815181106115ed576115ec61333f565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168590612dec565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461174391906130cf565b925050819055505050508061175790613298565b90506115b0565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117d5929190612c58565b60405180910390a46117eb818787878787611cd9565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090612f0c565b60405180910390fd5b60006119336114d7565b90506119548160008761194588611ec0565b61194e88611ec0565b87611cd1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119b391906130cf565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611a31929190612f87565b60405180910390a4611a4881600087878787611f3a565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690612d8c565b60405180910390fd5b6000611ac96114d7565b9050611ae9818787611ada88611ec0565b611ae388611ec0565b87611cd1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7790612dec565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c3591906130cf565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611cb2929190612f87565b60405180910390a4611cc8828888888888611f3a565b50505050505050565b505050505050565b611cf88473ffffffffffffffffffffffffffffffffffffffff16612121565b15611eb8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401611d3e959493929190612b3d565b602060405180830381600087803b158015611d5857600080fd5b505af1925050508015611d8957506040513d601f19601f82011682018060405250810190611d869190612698565b60015b611e2f57611d9561339d565b806308c379a01415611df25750611daa613a71565b80611db55750611df4565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de99190612caa565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690612ccc565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90612cec565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611edf57611ede61336e565b5b604051908082528060200260200182016040528015611f0d5781602001602082028036833780820191505090505b5090508281600081518110611f2557611f2461333f565b5b60200260200101818152505080915050919050565b611f598473ffffffffffffffffffffffffffffffffffffffff16612121565b15612119578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611f9f959493929190612bdc565b602060405180830381600087803b158015611fb957600080fd5b505af1925050508015611fea57506040513d601f19601f82011682018060405250810190611fe79190612698565b60015b61209057611ff661339d565b806308c379a01415612053575061200b613a71565b806120165750612055565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a9190612caa565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790612ccc565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e90612cec565b60405180910390fd5b505b505050505050565b600080823b905060008111915050919050565b600061214761214284612fd5565b612fb0565b9050808382526020820190508285602086028201111561216a576121696133c4565b5b60005b8581101561219a57816121808882612256565b84526020840193506020830192505060018101905061216d565b5050509392505050565b60006121b76121b284613001565b612fb0565b905080838252602082019050828560208602820111156121da576121d96133c4565b5b60005b8581101561220a57816121f08882612349565b8452602084019350602083019250506001810190506121dd565b5050509392505050565b60006122276122228461302d565b612fb0565b905082815260208101848484011115612243576122426133c9565b5b61224e8482856131f3565b509392505050565b60008135905061226581613b07565b92915050565b600082601f8301126122805761227f6133bf565b5b8135612290848260208601612134565b91505092915050565b600082601f8301126122ae576122ad6133bf565b5b81356122be8482602086016121a4565b91505092915050565b6000813590506122d681613b1e565b92915050565b6000815190506122eb81613b1e565b92915050565b60008135905061230081613b35565b92915050565b60008151905061231581613b35565b92915050565b600082601f8301126123305761232f6133bf565b5b8135612340848260208601612214565b91505092915050565b60008135905061235881613b4c565b92915050565b60008151905061236d81613b4c565b92915050565b600060208284031215612389576123886133d3565b5b600061239784828501612256565b91505092915050565b600080604083850312156123b7576123b66133d3565b5b60006123c585828601612256565b92505060206123d685828601612256565b9150509250929050565b600080600080600060a086880312156123fc576123fb6133d3565b5b600061240a88828901612256565b955050602061241b88828901612256565b945050604086013567ffffffffffffffff81111561243c5761243b6133ce565b5b61244888828901612299565b935050606086013567ffffffffffffffff811115612469576124686133ce565b5b61247588828901612299565b925050608086013567ffffffffffffffff811115612496576124956133ce565b5b6124a28882890161231b565b9150509295509295909350565b600080600080600060a086880312156124cb576124ca6133d3565b5b60006124d988828901612256565b95505060206124ea88828901612256565b94505060406124fb88828901612349565b935050606061250c88828901612349565b925050608086013567ffffffffffffffff81111561252d5761252c6133ce565b5b6125398882890161231b565b9150509295509295909350565b6000806040838503121561255d5761255c6133d3565b5b600061256b85828601612256565b925050602061257c858286016122c7565b9150509250929050565b6000806040838503121561259d5761259c6133d3565b5b60006125ab85828601612256565b92505060206125bc85828601612349565b9150509250929050565b600080604083850312156125dd576125dc6133d3565b5b600083013567ffffffffffffffff8111156125fb576125fa6133ce565b5b6126078582860161226b565b925050602083013567ffffffffffffffff811115612628576126276133ce565b5b61263485828601612299565b9150509250929050565b600060208284031215612654576126536133d3565b5b6000612662848285016122dc565b91505092915050565b600060208284031215612681576126806133d3565b5b600061268f848285016122f1565b91505092915050565b6000602082840312156126ae576126ad6133d3565b5b60006126bc84828501612306565b91505092915050565b6000602082840312156126db576126da6133d3565b5b60006126e984828501612349565b91505092915050565b600060208284031215612708576127076133d3565b5b60006127168482850161235e565b91505092915050565b600061272b8383612b04565b60208301905092915050565b6127408161317f565b82525050565b60006127518261306e565b61275b818561309c565b93506127668361305e565b8060005b8381101561279757815161277e888261271f565b97506127898361308f565b92505060018101905061276a565b5085935050505092915050565b6127ad81613191565b82525050565b60006127be82613079565b6127c881856130ad565b93506127d8818560208601613202565b6127e1816133d8565b840191505092915050565b60006127f782613084565b61280181856130be565b9350612811818560208601613202565b61281a816133d8565b840191505092915050565b60006128326034836130be565b915061283d826133f6565b604082019050919050565b60006128556028836130be565b915061286082613445565b604082019050919050565b6000612878602b836130be565b915061288382613494565b604082019050919050565b600061289b6026836130be565b91506128a6826134e3565b604082019050919050565b60006128be6029836130be565b91506128c982613532565b604082019050919050565b60006128e16029836130be565b91506128ec82613581565b604082019050919050565b60006129046025836130be565b915061290f826135d0565b604082019050919050565b60006129276032836130be565b91506129328261361f565b604082019050919050565b600061294a601b836130be565b91506129558261366e565b602082019050919050565b600061296d602a836130be565b915061297882613697565b604082019050919050565b60006129906020836130be565b915061299b826136e6565b602082019050919050565b60006129b36046836130be565b91506129be8261370f565b606082019050919050565b60006129d66030836130be565b91506129e182613784565b604082019050919050565b60006129f96035836130be565b9150612a04826137d3565b604082019050919050565b6000612a1c6064836130be565b9150612a2782613822565b608082019050919050565b6000612a3f6029836130be565b9150612a4a826138bd565b604082019050919050565b6000612a626029836130be565b9150612a6d8261390c565b604082019050919050565b6000612a856028836130be565b9150612a908261395b565b604082019050919050565b6000612aa86021836130be565b9150612ab3826139aa565b604082019050919050565b6000612acb601f836130be565b9150612ad6826139f9565b602082019050919050565b6000612aee6037836130be565b9150612af982613a22565b604082019050919050565b612b0d816131e9565b82525050565b612b1c816131e9565b82525050565b6000602082019050612b376000830184612737565b92915050565b600060a082019050612b526000830188612737565b612b5f6020830187612737565b8181036040830152612b718186612746565b90508181036060830152612b858185612746565b90508181036080830152612b9981846127b3565b90509695505050505050565b6000606082019050612bba6000830186612737565b612bc76020830185612737565b612bd46040830184612b13565b949350505050565b600060a082019050612bf16000830188612737565b612bfe6020830187612737565b612c0b6040830186612b13565b612c186060830185612b13565b8181036080830152612c2a81846127b3565b90509695505050505050565b60006020820190508181036000830152612c508184612746565b905092915050565b60006040820190508181036000830152612c728185612746565b90508181036020830152612c868184612746565b90509392505050565b6000602082019050612ca460008301846127a4565b92915050565b60006020820190508181036000830152612cc481846127ec565b905092915050565b60006020820190508181036000830152612ce581612825565b9050919050565b60006020820190508181036000830152612d0581612848565b9050919050565b60006020820190508181036000830152612d258161286b565b9050919050565b60006020820190508181036000830152612d458161288e565b9050919050565b60006020820190508181036000830152612d65816128b1565b9050919050565b60006020820190508181036000830152612d85816128d4565b9050919050565b60006020820190508181036000830152612da5816128f7565b9050919050565b60006020820190508181036000830152612dc58161291a565b9050919050565b60006020820190508181036000830152612de58161293d565b9050919050565b60006020820190508181036000830152612e0581612960565b9050919050565b60006020820190508181036000830152612e2581612983565b9050919050565b60006020820190508181036000830152612e45816129a6565b9050919050565b60006020820190508181036000830152612e65816129c9565b9050919050565b60006020820190508181036000830152612e85816129ec565b9050919050565b60006020820190508181036000830152612ea581612a0f565b9050919050565b60006020820190508181036000830152612ec581612a32565b9050919050565b60006020820190508181036000830152612ee581612a55565b9050919050565b60006020820190508181036000830152612f0581612a78565b9050919050565b60006020820190508181036000830152612f2581612a9b565b9050919050565b60006020820190508181036000830152612f4581612abe565b9050919050565b60006020820190508181036000830152612f6581612ae1565b9050919050565b6000602082019050612f816000830184612b13565b92915050565b6000604082019050612f9c6000830185612b13565b612fa96020830184612b13565b9392505050565b6000612fba612fcb565b9050612fc68282613267565b919050565b6000604051905090565b600067ffffffffffffffff821115612ff057612fef61336e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561301c5761301b61336e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156130485761304761336e565b5b613051826133d8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006130da826131e9565b91506130e5836131e9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561311a576131196132e1565b5b828201905092915050565b6000613130826131e9565b915061313b836131e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613174576131736132e1565b5b828202905092915050565b600061318a826131c9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613220578082015181840152602081019050613205565b8381111561322f576000848401525b50505050565b6000600282049050600182168061324d57607f821691505b6020821081141561326157613260613310565b5b50919050565b613270826133d8565b810181811067ffffffffffffffff8211171561328f5761328e61336e565b5b80604052505050565b60006132a3826131e9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132d6576132d56132e1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156133bc5760046000803e6133b96000516133e9565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f596f75206d75737420736d656c74206174206c6561737420312077686f6c652060008201527f467261676d656e742e0000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74206f66204554482073656e742e0000000000600082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52657175657374656420636f756e7420666f7220467261676d656e747320657860008201527f636565647320746865206d6178696d756d20736d656c7461626c65204672616760208201527f6d656e74732e0000000000000000000000000000000000000000000000000000604082015250565b7f596f7520646f206e6f74206861766520656e6f75676820245452434520746f2060008201527f6d696e74206120467261676d656e742e00000000000000000000000000000000602082015250565b7f46697273742064697361626c652074686520467261676d656e7420736d656c7460008201527f696e6720746f2072652d696e697469616c697a652e0000000000000000000000602082015250565b7f4661696c656420746f206275726e202454524345202d20506c6561736520766560008201527f72696679207468617420796f75206861766520617070726f766564207468652060208201527f636f7272656374206e756d626572206f6620746f6b656e732e2052657665727460408201527f696e672e00000000000000000000000000000000000000000000000000000000606082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f536d656c74696e6720467261676d656e7473206973206e6f742061637469766560008201527f206174207468697320706f696e7420696e2074696d652e000000000000000000602082015250565b600060443d1015613a8157613b04565b613a89612fcb565b60043d036004823e80513d602482011167ffffffffffffffff82111715613ab1575050613b04565b808201805167ffffffffffffffff811115613acf5750505050613b04565b80602083010160043d038501811115613aec575050505050613b04565b613afb82602001850186613267565b82955050505050505b90565b613b108161317f565b8114613b1b57600080fd5b50565b613b2781613191565b8114613b3257600080fd5b50565b613b3e8161319d565b8114613b4957600080fd5b50565b613b55816131e9565b8114613b6057600080fd5b5056fea2646970667358221220737cdf9112334379c5393090e6775928b8205af59612ba9e17d0197d5ac0a7fd64736f6c63430008070033

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.