ETH Price: $2,989.45 (+4.48%)
Gas: 1 Gwei

Token

Blank Token (BLT)
 

Overview

Max Total Supply

1,051 BLT

Holders

598

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BLT
0x35a438536977c742ca7c2857a43e83b9a62b259d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Blank Token is a **deflationary collection** for artists and collectors launched on the Ethereum blockchain. **Burn two Blank Tokens** *(#0 - #1399)* to claim a vinyl token by musical artist [SGAR](https://solo.to/sgar). The Vinyl Tokens start from #1400 to #2099 and grant their owner additional benefits relating to Blank Studio curations. Burn site: https://burn.blankstudio.art *(352 burnt)* Blank Studio is a curation platform enabling artists from a plethora of backgrounds to disrupt the digital world. Join our collective today to participate in future drops from our talented artists.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlankToken

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : BlankToken.sol
/*
    Blank Token
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@rari-capital/solmate/src/tokens/ERC721.sol";
import "./SignedAllowance.sol";
import "./Base64.sol";

/// @title Blank Token
/// @author of the contract filio.eth (twitter.com/filmakarov)

contract BlankToken is ERC721, Ownable, SignedAllowance {  

    using Strings for uint256;
    using Counters for Counters.Counter;

    /*///////////////////////////////////////////////////////////////
                                GENERAL STORAGE
    //////////////////////////////////////////////////////////////*/

    // _tokenIds.current() will always return the last minted tokenId # + 1
    // it is actually the amount of minted tokens as we mint consistently startin from #0
    Counters.Counter private _tokenIds;

    uint256 public constant MAX_ITEMS = 1400;

    string public baseURI;
    bool public saleState;
    bool public mergingActive;

    uint256 public totalBurned;
    
    /*///////////////////////////////////////////////////////////////
                                INITIALISATION
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _myBase) ERC721("Blank Token", "BLT") {
            baseURI = _myBase; 
    }

    /*///////////////////////////////////////////////////////////////
                        MINTING LOGIC
    //////////////////////////////////////////////////////////////*/

    function mint(address to, uint256 nonce, bytes memory signature) public {
        require (saleState, "Presale not active");
 
        require(totalSupply() + 1 <= MAX_ITEMS, ">MaxSupply");
        
        // this will throw if the allowance has already been used or is not valid
        _useAllowance(to, nonce, signature);

        // If you try to re-enter here thru onERC721Received, function will revert
        // Counter won't increment and your token will be overminted by the next minter.
        // Your allowance will be marked as used at this moment, i.e. wasted 
        _safeMint(to, _tokenIds.current()); 
        _tokenIds.increment();        
    }

    // adminMint
    function adminMint(address to, uint256 qty) public onlyOwner {
        for (uint256 i = 0; i < qty; i++) {
            _safeMint(to, _tokenIds.current()); 
            _tokenIds.increment();
        }
    }

    // burn 2 get 1
    function mergeTokens(uint256 tokenId1, uint256 tokenId2) public {
        require(mergingActive, "Blank Token: Merging has not started yet");
        require(ownerOf(tokenId1) == msg.sender && ownerOf(tokenId2) == msg.sender, "Blank Token: must own tokens to merge");
        _burn(tokenId1);
        _burn(tokenId2);
        totalBurned += 2;

        // If you try to re-enter here thru onERC721Received, function will revert
        // Counter won't increment and your token will be overminted by the next minter.
        // So you will burn two of your tokens and get nothing, so you better do not try to re-enter 
        _safeMint(msg.sender, _tokenIds.current()); 
        _tokenIds.increment();
    }

    /*///////////////////////////////////////////////////////////////
                       PUBLIC METADATA VIEWS
    //////////////////////////////////////////////////////////////*/

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "Blank token: this token does not exist");

        string memory json = string(abi.encodePacked('{"name": "Blank Token #', tokenId.toString(), '", "description": "Blank Studio is a curation platform enabling artists from a plethora of backgrounds to disrupt the digital world. Join our collective today to participate in future drops from our talented artists.", "external_url": "https://blankstudio.art", "image": "',baseURI, tokenMediaId(tokenId).toString(), '.mp4","attributes": [{"trait_type": "Category", "value": "', tokenCategory(tokenId) ,'"}]}'));
        return string(abi.encodePacked('data:application/json;base64,', Base64.encode(bytes(json))));

        //return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

    function tokenMediaId(uint256 tokenId) internal pure returns (uint256) {
        if (tokenId < MAX_ITEMS) {
            return 0;
        } else {
            // from 1 to 5
            return random(string(abi.encodePacked("MEDIA ID", tokenId.toString()))) % 5 + 1;
        }
    }

    function tokenCategory(uint256 tokenId) internal pure returns (string memory) {
        string[6] memory categories = ["Blank Token", "Vinyl token: Focusing Partially", 
                                        "Vinyl token: Goon Squad", "Vinyl token: Snack",
                                        "Vinyl token: Sneep Deep", "Vinyl token: Stars Falling"];
        return categories[tokenMediaId(tokenId)];
    }

    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    /*///////////////////////////////////////////////////////////////
                       VIEWS
    //////////////////////////////////////////////////////////////*/

    function totalSupply() public view returns (uint256) {
        return (_tokenIds.current() - totalBurned);
    }

    /// @notice Iterates over all the exisitng tokens and checks if they belong to the user
    /// This function uses very much resources.
    /// !!! NEVER USE this function with write transactions DIRECTLY. 
    /// Only read from it and then pass data to the write tx
    /// @param tokenOwner user to get tokens of
    /// @return the array of token IDs 
    function tokensOfOwner(address tokenOwner) external view returns(uint256[] memory) {
        uint256 tokenCount = _balanceOf[tokenOwner];
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;
            uint256 NFTId;
            for (NFTId = 0; NFTId < _tokenIds.current(); NFTId++) { 
                if (_exists(NFTId)) { 
                    if (_ownerOf[NFTId] == tokenOwner) {
                        result[resultIndex] = NFTId;
                        resultIndex++;
                    }
                } 
            }     
            return result;
        }
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return (_ownerOf[tokenId] != address(0));
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address owner) {
        require (_exists(tokenId), "Blank Token: Not minted or burned");
        return (_ownerOf[tokenId]);
    }

    function nextTokenIndex() public view returns (uint256) {
        return _tokenIds.current();
    }

    /*///////////////////////////////////////////////////////////////
                       ADMIN FUNCTIONS
    //////////////////////////////////////////////////////////////*/
    
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function switchSaleState() public onlyOwner {
        saleState = !saleState;
    }

    function switchMergeState() public onlyOwner {
        mergingActive = !mergingActive;
    }

    /// @notice sets allowance signer, this can be used to revoke all unused allowances already out there
    /// @param newSigner the new signer
    function setAllowancesSigner(address newSigner) external onlyOwner {
        _setAllowancesSigner(newSigner);
    }

    /// @notice Withdraws funds from the contract to msg.sender who is always the owner.
    /// No need to use reentrancy guard as receiver is always owner
    /// @param amt amount to withdraw in wei
    function withdraw(uint256 amt) public onlyOwner {
         address payable beneficiary = payable(owner());
        (bool success, ) = beneficiary.call{value: amt}("");
        if (!success) revert ("Withdrawal failed");
    }    

}

//   That's all, folks!

File 2 of 9 : SignedAllowance.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';

/// @title SignedAllowance
/// @author Simon Fremaux (@dievardump)
contract SignedAllowance {
    using ECDSA for bytes32;

    // list of already used allowances
    mapping(bytes32 => bool) public usedAllowances;

    // address used to sign the allowances
    address private _allowancesSigner;

    /// @notice Helper to know allowancesSigner address
    /// @return the allowance signer address
    function allowancesSigner() public view virtual returns (address) {
        return _allowancesSigner;
    }

    /// @notice Helper that creates the message that signer needs to sign to allow a mint
    ///         this is usually also used when creating the allowances, to ensure "message"
    ///         is the same
    /// @param account the account to allow
    /// @param nonce the nonce
    /// @return the message to sign
    function createMessage(address account, uint256 nonce)
        public
        view
        returns (bytes32)
    {
        return keccak256(abi.encode(account, nonce, address(this)));
    }

    /// @notice Helper that creates a list of messages that signer needs to sign to allow mintings
    /// @param accounts the accounts to allow
    /// @param nonces the corresponding nonces
    /// @return messages the messages to sign
  /*  
    // function is commented out to save space in the contract
    // to batch create message will need to use for loop with the createMessage function

    function createMessages(address[] memory accounts, uint256[] memory nonces)
        external
        view
        returns (bytes32[] memory messages)
    {
        require(accounts.length == nonces.length, '!LENGTH_MISMATCH!');
        messages = new bytes32[](accounts.length);
        for (uint256 i; i < accounts.length; i++) {
            messages[i] = createMessage(accounts[i], nonces[i]);
        }
    } */

    /// @notice This function verifies that the current request is valid
    /// @dev It ensures that _allowancesSigner signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @return the message to mark as used
    function validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature
    ) public view returns (bytes32) {
        return
            _validateSignature(account, nonce, signature, allowancesSigner());
    }

    /// @dev It ensures that signer signed a message containing (account, nonce, address(this))
    ///      and that this message was not already used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce associated to this allowance
    /// @param signature the signature by the allowance signer wallet
    /// @param signer the signer
    /// @return the message to mark as used
    function _validateSignature(
        address account,
        uint256 nonce,
        bytes memory signature,
        address signer
    ) internal view returns (bytes32) {
        bytes32 message = createMessage(account, nonce)
            .toEthSignedMessageHash();

        // verifies that the sha3(account, nonce, address(this)) has been signed by signer
        require(message.recover(signature) == signer, '!INVALID_SIGNATURE!');

        // verifies that the allowances was not already used
        require(usedAllowances[message] == false, '!ALREADY_USED!');

        return message;
    }

    /// @notice internal function that verifies an allowance and marks it as used
    ///         this function throws if signature is wrong or this nonce for this user has already been used
    /// @param account the account the allowance is associated to
    /// @param nonce the nonce
    /// @param signature the signature by the allowance wallet
    function _useAllowance(
        address account,
        uint256 nonce,
        bytes memory signature
    ) internal {
        bytes32 message = validateSignature(account, nonce, signature);
        usedAllowances[message] = true;
    }

    /// @notice Allows to change the allowance signer. This can be used to revoke any signed allowance not already used
    /// @param newSigner the new signer address
    function _setAllowancesSigner(address newSigner) internal {
        _allowancesSigner = newSigner;
    }
}

File 3 of 9 : Base64.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

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

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

File 4 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 9 : ERC721.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Modern, minimalist, and gas efficient ERC-721 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 indexed id);

    event Approval(address indexed owner, address indexed spender, uint256 indexed id);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /*//////////////////////////////////////////////////////////////
                         METADATA STORAGE/LOGIC
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    function tokenURI(uint256 id) public view virtual returns (string memory);

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) internal _ownerOf;

    mapping(address => uint256) internal _balanceOf;

    function ownerOf(uint256 id) public view virtual returns (address owner) {
        require((owner = _ownerOf[id]) != address(0), "NOT_MINTED");
    }

    function balanceOf(address owner) public view virtual returns (uint256) {
        require(owner != address(0), "ZERO_ADDRESS");

        return _balanceOf[owner];
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(uint256 => address) public getApproved;

    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(string memory _name, string memory _symbol) {
        name = _name;
        symbol = _symbol;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 id) public virtual {
        address owner = _ownerOf[id];

        require(msg.sender == owner || isApprovedForAll[owner][msg.sender], "NOT_AUTHORIZED");

        getApproved[id] = spender;

        emit Approval(owner, spender, id);
    }

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        require(from == _ownerOf[id], "WRONG_FROM");

        require(to != address(0), "INVALID_RECIPIENT");

        require(
            msg.sender == from || isApprovedForAll[from][msg.sender] || msg.sender == getApproved[id],
            "NOT_AUTHORIZED"
        );

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _balanceOf[from]--;

            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

        delete getApproved[id];

        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, from, id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0x80ac58cd || // ERC165 Interface ID for ERC721
            interfaceId == 0x5b5e139f; // ERC165 Interface ID for ERC721Metadata
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 id) internal virtual {
        require(to != address(0), "INVALID_RECIPIENT");

        require(_ownerOf[id] == address(0), "ALREADY_MINTED");

        // Counter overflow is incredibly unrealistic.
        unchecked {
            _balanceOf[to]++;
        }

        _ownerOf[id] = to;

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

    function _burn(uint256 id) internal virtual {
        address owner = _ownerOf[id];

        require(owner != address(0), "NOT_MINTED");

        // Ownership check above ensures no underflow.
        unchecked {
            _balanceOf[owner]--;
        }

        delete _ownerOf[id];

        delete getApproved[id];

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

    /*//////////////////////////////////////////////////////////////
                        INTERNAL SAFE MINT LOGIC
    //////////////////////////////////////////////////////////////*/

    function _safeMint(address to, uint256 id) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, "") ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _safeMint(
        address to,
        uint256 id,
        bytes memory data
    ) internal virtual {
        _mint(to, id);

        require(
            to.code.length == 0 ||
                ERC721TokenReceiver(to).onERC721Received(msg.sender, address(0), id, data) ==
                ERC721TokenReceiver.onERC721Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }
}

/// @notice A generic interface for a contract which properly accepts ERC721 tokens.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC721.sol)
abstract contract ERC721TokenReceiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721TokenReceiver.onERC721Received.selector;
    }
}

File 8 of 9 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_myBase","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ITEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowancesSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"createMessage","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"mergeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mergingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","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":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setAllowancesSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchMergeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"usedAllowances","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateSignature","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620050c3380380620050c3833981810160405281019062000037919062000432565b6040518060400160405280600b81526020017f426c616e6b20546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424c5400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb929190620001e5565b508060019080519060200190620000d4929190620001e5565b505050620000f7620000eb6200011760201b60201c565b6200011f60201b60201c565b80600a90805190602001906200010f929190620001e5565b5050620004e7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f390620004b2565b90600052602060002090601f01602090048101928262000217576000855562000263565b82601f106200023257805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026257825182559160200191906001019062000245565b5b50905062000272919062000276565b5090565b5b808211156200029157600081600090555060010162000277565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002fe82620002b3565b810181811067ffffffffffffffff8211171562000320576200031f620002c4565b5b80604052505050565b60006200033562000295565b9050620003438282620002f3565b919050565b600067ffffffffffffffff821115620003665762000365620002c4565b5b6200037182620002b3565b9050602081019050919050565b60005b838110156200039e57808201518184015260208101905062000381565b83811115620003ae576000848401525b50505050565b6000620003cb620003c58462000348565b62000329565b905082815260208101848484011115620003ea57620003e9620002ae565b5b620003f78482856200037e565b509392505050565b600082601f830112620004175762000416620002a9565b5b815162000429848260208601620003b4565b91505092915050565b6000602082840312156200044b576200044a6200029f565b5b600082015167ffffffffffffffff8111156200046c576200046b620002a4565b5b6200047a84828501620003ff565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cb57607f821691505b602082108103620004e157620004e062000483565b5b50919050565b614bcc80620004f76000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063b88d4fde116100ad578063e58306f91161007c578063e58306f914610617578063e985e9c514610633578063efc4f1dc14610663578063f2fde38b1461066d578063feff1999146106895761021c565b8063b88d4fde146105a3578063c87b56dd146105bf578063d42bb3bd146105ef578063d89135cd146105f95761021c565b8063890621da116100f4578063890621da146104ff5780638da5cb5b1461052f57806394d008ef1461054d57806395d89b4114610569578063a22cb465146105875761021c565b8063715018a61461048957806382e3055d146104935780638462151c146104b15780638838b5c3146104e15761021c565b806342842e0e116101a8578063603f4d5211610177578063603f4d52146103d15780636352211e146103ef5780636c0360eb1461041f5780636fd976811461043d57806370a08231146104595761021c565b806342842e0e1461035d578063522439ef1461037957806355f804b31461039757806357d4c4ee146103b35761021c565b806318160ddd116101ef57806318160ddd146102bb578063195e8708146102d95780632073447d1461030957806323b872dd146103255780632e1a7d4d146103415761021c565b806301ffc9a71461022157806306fdde0314610251578063081812fc1461026f578063095ea7b31461029f575b600080fd5b61023b60048036038101906102369190612e36565b6106b9565b6040516102489190612e7e565b60405180910390f35b61025961074b565b6040516102669190612f32565b60405180910390f35b61028960048036038101906102849190612f8a565b6107d9565b6040516102969190612ff8565b60405180910390f35b6102b960048036038101906102b4919061303f565b61080c565b005b6102c36109f5565b6040516102d0919061308e565b60405180910390f35b6102f360048036038101906102ee91906130df565b610a13565b6040516103009190612e7e565b60405180910390f35b610323600480360381019061031e919061310c565b610a33565b005b61033f600480360381019061033a9190613139565b610a47565b005b61035b60048036038101906103569190612f8a565b610e46565b005b61037760048036038101906103729190613139565b610f0b565b005b610381611043565b60405161038e919061308e565b60405180910390f35b6103b160048036038101906103ac91906132c1565b611054565b005b6103bb611076565b6040516103c8919061308e565b60405180910390f35b6103d961107c565b6040516103e69190612e7e565b60405180910390f35b61040960048036038101906104049190612f8a565b61108f565b6040516104169190612ff8565b60405180910390f35b610427611114565b6040516104349190612f32565b60405180910390f35b6104576004803603810190610452919061330a565b6111a2565b005b610473600480360381019061046e919061310c565b6112f3565b604051610480919061308e565b60405180910390f35b6104916113aa565b005b61049b6113be565b6040516104a89190612e7e565b60405180910390f35b6104cb60048036038101906104c6919061310c565b6113d1565b6040516104d89190613408565b60405180910390f35b6104e9611597565b6040516104f69190612ff8565b60405180910390f35b610519600480360381019061051491906134cb565b6115c1565b6040516105269190613549565b60405180910390f35b6105376115df565b6040516105449190612ff8565b60405180910390f35b610567600480360381019061056291906134cb565b611609565b005b6105716116dd565b60405161057e9190612f32565b60405180910390f35b6105a1600480360381019061059c9190613590565b61176b565b005b6105bd60048036038101906105b89190613630565b611868565b005b6105d960048036038101906105d49190612f8a565b6119a6565b6040516105e69190612f32565b60405180910390f35b6105f7611a6b565b005b610601611a9f565b60405161060e919061308e565b60405180910390f35b610631600480360381019061062c919061303f565b611aa5565b005b61064d600480360381019061064891906136b8565b611aed565b60405161065a9190612e7e565b60405180910390f35b61066b611b1c565b005b6106876004803603810190610682919061310c565b611b50565b005b6106a3600480360381019061069e919061303f565b611bd3565b6040516106b09190613549565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461075890613727565b80601f016020809104026020016040519081016040528092919081815260200182805461078490613727565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109045750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906137a4565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c54610a046009611c08565b610a0e91906137f3565b905090565b60076020528060005260406000206000915054906101000a900460ff1681565b610a3b611c16565b610a4481611c94565b50565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e906138df565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c175750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610c8057506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb6906137a4565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b610e4e611c16565b6000610e586115df565b905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610e8090613930565b60006040518083038185875af1925050503d8060008114610ebd576040519150601f19603f3d011682016040523d82523d6000602084013e610ec2565b606091505b5050905080610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613991565b60405180910390fd5b505050565b610f16838383610a47565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480610fff575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401610f9b939291906139e5565b6020604051808303816000875af1158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613abd565b60405180910390fd5b505050565b600061104f6009611c08565b905090565b61105c611c16565b80600a9080519060200190611072929190612d27565b5050565b61057881565b600b60009054906101000a900460ff1681565b600061109a82611cd8565b6110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613b4f565b60405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a805461112190613727565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90613727565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b600b60019054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613be1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166112118361108f565b73ffffffffffffffffffffffffffffffffffffffff1614801561126757503373ffffffffffffffffffffffffffffffffffffffff1661124f8261108f565b73ffffffffffffffffffffffffffffffffffffffff16145b6112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90613c73565b60405180910390fd5b6112af82611d44565b6112b881611d44565b6002600c60008282546112cb9190613c93565b925050819055506112e5336112e06009611c08565b611f07565b6112ef600961203e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90613d35565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b2611c16565b6113bc6000612054565b565b600b60019054906101000a900460ff1681565b60606000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000810361147157600067ffffffffffffffff81111561143a57611439613196565b5b6040519080825280602002602001820160405280156114685781602001602082028036833780820191505090505b50915050611592565b60008167ffffffffffffffff81111561148d5761148c613196565b5b6040519080825280602002602001820160405280156114bb5781602001602082028036833780820191505090505b5090506000805b6114cc6009611c08565b81101561158a576114dc81611cd8565b15611577578573ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611576578083838151811061155b5761155a613d55565b5b602002602001018181525050818061157290613d84565b9250505b5b808061158290613d84565b9150506114c2565b829450505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115d68484846115d1611597565b61211a565b90509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff16611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90613e18565b60405180910390fd5b61057860016116656109f5565b61166f9190613c93565b11156116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790613e84565b60405180910390fd5b6116bb838383612224565b6116ce836116c96009611c08565b611f07565b6116d8600961203e565b505050565b600180546116ea90613727565b80601f016020809104026020016040519081016040528092919081815260200182805461171690613727565b80156117635780601f1061173857610100808354040283529160200191611763565b820191906000526020600020905b81548152906001019060200180831161174657829003601f168201915b505050505081565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185c9190612e7e565b60405180910390a35050565b611873858585610a47565b60008473ffffffffffffffffffffffffffffffffffffffff163b1480611960575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118fc959493929190613ed1565b6020604051808303816000875af115801561191b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193f9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613abd565b60405180910390fd5b5050505050565b60606119b182611cd8565b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613f91565b60405180910390fd5b60006119fb83612265565b600a611a0e611a09866123c5565b612265565b611a178661242a565b604051602001611a2a949392919061430a565b6040516020818303038152906040529050611a44816125c3565b604051602001611a5491906143c0565b604051602081830303815290604052915050919050565b611a73611c16565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600c5481565b611aad611c16565b60005b81811015611ae857611acb83611ac66009611c08565b611f07565b611ad5600961203e565b8080611ae090613d84565b915050611ab0565b505050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b611b24611c16565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611b58611c16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90614454565b60405180910390fd5b611bd081612054565b50565b6000828230604051602001611bea93929190614474565b60405160208183030381529060405280519060200120905092915050565b600081600001549050919050565b611c1e61275a565b73ffffffffffffffffffffffffffffffffffffffff16611c3c6115df565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906144f7565b60405180910390fd5b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290614563565b60405180910390fd5b600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001900391905055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611f118282612762565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611ffb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a02336000856040518463ffffffff1660e01b8152600401611f97939291906139e5565b6020604051808303816000875af1158015611fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fda9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61203a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203190613abd565b60405180910390fd5b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061212f61212a8787611bd3565b612974565b90508273ffffffffffffffffffffffffffffffffffffffff1661215b85836129a490919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906145cf565b60405180910390fd5b600015156007600083815260200190815260200160002060009054906101000a900460ff16151514612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f9061463b565b60405180910390fd5b80915050949350505050565b60006122318484846115c1565b905060016007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060600082036122ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c0565b600082905060005b600082146122de5780806122c790613d84565b915050600a826122d7919061468a565b91506122b4565b60008167ffffffffffffffff8111156122fa576122f9613196565b5b6040519080825280601f01601f19166020018201604052801561232c5781602001600182028036833780820191505090505b5090505b600085146123b95760018261234591906137f3565b9150600a8561235491906146bb565b60306123609190613c93565b60f81b81838151811061237657612375613d55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123b2919061468a565b9450612330565b8093505050505b919050565b60006105788210156123da5760009050612425565b6001600561240e6123ea85612265565b6040516020016123fa9190614738565b6040516020818303038152906040526129cb565b61241891906146bb565b6124229190613c93565b90505b919050565b606060006040518060c001604052806040518060400160405280600b81526020017f426c616e6b20546f6b656e00000000000000000000000000000000000000000081525081526020016040518060400160405280601f81526020017f56696e796c20746f6b656e3a20466f637573696e67205061727469616c6c790081525081526020016040518060400160405280601781526020017f56696e796c20746f6b656e3a20476f6f6e20537175616400000000000000000081525081526020016040518060400160405280601281526020017f56696e796c20746f6b656e3a20536e61636b000000000000000000000000000081525081526020016040518060400160405280601781526020017f56696e796c20746f6b656e3a20536e656570204465657000000000000000000081525081526020016040518060400160405280601a81526020017f56696e796c20746f6b656e3a2053746172732046616c6c696e670000000000008152508152509050806125a5846123c5565b600681106125b6576125b5613d55565b5b6020020151915050919050565b6060600082519050600081036125eb5760405180602001604052806000815250915050612755565b600060036002836125fc9190613c93565b612606919061468a565b6004612612919061475a565b905060006020826126239190613c93565b67ffffffffffffffff81111561263c5761263b613196565b5b6040519080825280601f01601f19166020018201604052801561266e5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b57604091399050600181016020830160005b868110156127125760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612699565b50600386066001811461272c576002811461273c57612747565b613d3d60f01b6002830352612747565b603d60f81b60018303525b508484525050819450505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906138df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90614800565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081604051602001612987919061488d565b604051602081830303815290604052805190602001209050919050565b60008060006129b385856129fe565b915091506129c081612a4f565b819250505092915050565b6000816040516020016129de91906148b3565b6040516020818303038152906040528051906020012060001c9050919050565b6000806041835103612a3f5760008060006020860151925060408601519150606086015160001a9050612a3387828585612c1b565b94509450505050612a48565b60006002915091505b9250929050565b60006004811115612a6357612a626148ca565b5b816004811115612a7657612a756148ca565b5b0315612c185760016004811115612a9057612a8f6148ca565b5b816004811115612aa357612aa26148ca565b5b03612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90614945565b60405180910390fd5b60026004811115612af757612af66148ca565b5b816004811115612b0a57612b096148ca565b5b03612b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b41906149b1565b60405180910390fd5b60036004811115612b5e57612b5d6148ca565b5b816004811115612b7157612b706148ca565b5b03612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890614a43565b60405180910390fd5b600480811115612bc457612bc36148ca565b5b816004811115612bd757612bd66148ca565b5b03612c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e90614ad5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c56576000600391509150612d1e565b601b8560ff1614158015612c6e5750601c8560ff1614155b15612c80576000600491509150612d1e565b600060018787878760405160008152602001604052604051612ca59493929190614b11565b6020604051602081039080840390855afa158015612cc7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d1557600060019250925050612d1e565b80600092509250505b94509492505050565b828054612d3390613727565b90600052602060002090601f016020900481019282612d555760008555612d9c565b82601f10612d6e57805160ff1916838001178555612d9c565b82800160010185558215612d9c579182015b82811115612d9b578251825591602001919060010190612d80565b5b509050612da99190612dad565b5090565b5b80821115612dc6576000816000905550600101612dae565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612dde565b8114612e1e57600080fd5b50565b600081359050612e3081612e0a565b92915050565b600060208284031215612e4c57612e4b612dd4565b5b6000612e5a84828501612e21565b91505092915050565b60008115159050919050565b612e7881612e63565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed3578082015181840152602081019050612eb8565b83811115612ee2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0482612e99565b612f0e8185612ea4565b9350612f1e818560208601612eb5565b612f2781612ee8565b840191505092915050565b60006020820190508181036000830152612f4c8184612ef9565b905092915050565b6000819050919050565b612f6781612f54565b8114612f7257600080fd5b50565b600081359050612f8481612f5e565b92915050565b600060208284031215612fa057612f9f612dd4565b5b6000612fae84828501612f75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe282612fb7565b9050919050565b612ff281612fd7565b82525050565b600060208201905061300d6000830184612fe9565b92915050565b61301c81612fd7565b811461302757600080fd5b50565b60008135905061303981613013565b92915050565b6000806040838503121561305657613055612dd4565b5b60006130648582860161302a565b925050602061307585828601612f75565b9150509250929050565b61308881612f54565b82525050565b60006020820190506130a3600083018461307f565b92915050565b6000819050919050565b6130bc816130a9565b81146130c757600080fd5b50565b6000813590506130d9816130b3565b92915050565b6000602082840312156130f5576130f4612dd4565b5b6000613103848285016130ca565b91505092915050565b60006020828403121561312257613121612dd4565b5b60006131308482850161302a565b91505092915050565b60008060006060848603121561315257613151612dd4565b5b60006131608682870161302a565b93505060206131718682870161302a565b925050604061318286828701612f75565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131ce82612ee8565b810181811067ffffffffffffffff821117156131ed576131ec613196565b5b80604052505050565b6000613200612dca565b905061320c82826131c5565b919050565b600067ffffffffffffffff82111561322c5761322b613196565b5b61323582612ee8565b9050602081019050919050565b82818337600083830152505050565b600061326461325f84613211565b6131f6565b9050828152602081018484840111156132805761327f613191565b5b61328b848285613242565b509392505050565b600082601f8301126132a8576132a761318c565b5b81356132b8848260208601613251565b91505092915050565b6000602082840312156132d7576132d6612dd4565b5b600082013567ffffffffffffffff8111156132f5576132f4612dd9565b5b61330184828501613293565b91505092915050565b6000806040838503121561332157613320612dd4565b5b600061332f85828601612f75565b925050602061334085828601612f75565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61337f81612f54565b82525050565b60006133918383613376565b60208301905092915050565b6000602082019050919050565b60006133b58261334a565b6133bf8185613355565b93506133ca83613366565b8060005b838110156133fb5781516133e28882613385565b97506133ed8361339d565b9250506001810190506133ce565b5085935050505092915050565b6000602082019050818103600083015261342281846133aa565b905092915050565b600067ffffffffffffffff82111561344557613444613196565b5b61344e82612ee8565b9050602081019050919050565b600061346e6134698461342a565b6131f6565b90508281526020810184848401111561348a57613489613191565b5b613495848285613242565b509392505050565b600082601f8301126134b2576134b161318c565b5b81356134c284826020860161345b565b91505092915050565b6000806000606084860312156134e4576134e3612dd4565b5b60006134f28682870161302a565b935050602061350386828701612f75565b925050604084013567ffffffffffffffff81111561352457613523612dd9565b5b6135308682870161349d565b9150509250925092565b613543816130a9565b82525050565b600060208201905061355e600083018461353a565b92915050565b61356d81612e63565b811461357857600080fd5b50565b60008135905061358a81613564565b92915050565b600080604083850312156135a7576135a6612dd4565b5b60006135b58582860161302a565b92505060206135c68582860161357b565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126135f0576135ef61318c565b5b8235905067ffffffffffffffff81111561360d5761360c6135d0565b5b602083019150836001820283011115613629576136286135d5565b5b9250929050565b60008060008060006080868803121561364c5761364b612dd4565b5b600061365a8882890161302a565b955050602061366b8882890161302a565b945050604061367c88828901612f75565b935050606086013567ffffffffffffffff81111561369d5761369c612dd9565b5b6136a9888289016135da565b92509250509295509295909350565b600080604083850312156136cf576136ce612dd4565b5b60006136dd8582860161302a565b92505060206136ee8582860161302a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373f57607f821691505b602082108103613752576137516136f8565b5b50919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b600061378e600e83612ea4565b915061379982613758565b602082019050919050565b600060208201905081810360008301526137bd81613781565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137fe82612f54565b915061380983612f54565b92508282101561381c5761381b6137c4565b5b828203905092915050565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b600061385d600a83612ea4565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b60006138c9601183612ea4565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b600081905092915050565b50565b600061391a6000836138ff565b91506139258261390a565b600082019050919050565b600061393b8261390d565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061397b601183612ea4565b915061398682613945565b602082019050919050565b600060208201905081810360008301526139aa8161396e565b9050919050565b600082825260208201905092915050565b60006139cf6000836139b1565b91506139da8261390a565b600082019050919050565b60006080820190506139fa6000830186612fe9565b613a076020830185612fe9565b613a14604083018461307f565b8181036060830152613a25816139c2565b9050949350505050565b600081519050613a3e81612e0a565b92915050565b600060208284031215613a5a57613a59612dd4565b5b6000613a6884828501613a2f565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000613aa7601083612ea4565b9150613ab282613a71565b602082019050919050565b60006020820190508181036000830152613ad681613a9a565b9050919050565b7f426c616e6b20546f6b656e3a204e6f74206d696e746564206f72206275726e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b39602183612ea4565b9150613b4482613add565b604082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f426c616e6b20546f6b656e3a204d657267696e6720686173206e6f742073746160008201527f7274656420796574000000000000000000000000000000000000000000000000602082015250565b6000613bcb602883612ea4565b9150613bd682613b6f565b604082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b7f426c616e6b20546f6b656e3a206d757374206f776e20746f6b656e7320746f2060008201527f6d65726765000000000000000000000000000000000000000000000000000000602082015250565b6000613c5d602583612ea4565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b6000613c9e82612f54565b9150613ca983612f54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cde57613cdd6137c4565b5b828201905092915050565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b6000613d1f600c83612ea4565b9150613d2a82613ce9565b602082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d8f82612f54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc157613dc06137c4565b5b600182019050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b6000613e02601283612ea4565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f3e4d6178537570706c7900000000000000000000000000000000000000000000600082015250565b6000613e6e600a83612ea4565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b6000613eb083856139b1565b9350613ebd838584613242565b613ec683612ee8565b840190509392505050565b6000608082019050613ee66000830188612fe9565b613ef36020830187612fe9565b613f00604083018661307f565b8181036060830152613f13818486613ea4565b90509695505050505050565b7f426c616e6b20746f6b656e3a207468697320746f6b656e20646f6573206e6f7460008201527f2065786973740000000000000000000000000000000000000000000000000000602082015250565b6000613f7b602683612ea4565b9150613f8682613f1f565b604082019050919050565b60006020820190508181036000830152613faa81613f6e565b9050919050565b600081905092915050565b7f7b226e616d65223a2022426c616e6b20546f6b656e2023000000000000000000600082015250565b6000613ff2601783613fb1565b9150613ffd82613fbc565b601782019050919050565b600061401382612e99565b61401d8185613fb1565b935061402d818560208601612eb5565b80840191505092915050565b7f222c20226465736372697074696f6e223a2022426c616e6b2053747564696f2060008201527f69732061206375726174696f6e20706c6174666f726d20656e61626c696e672060208201527f617274697374732066726f6d206120706c6574686f7261206f66206261636b6760408201527f726f756e647320746f206469737275707420746865206469676974616c20776f60608201527f726c642e204a6f696e206f757220636f6c6c65637469766520746f646179207460808201527f6f20706172746963697061746520696e206675747572652064726f707320667260a08201527f6f6d206f75722074616c656e74656420617274697374732e222c20226578746560c08201527f726e616c5f75726c223a202268747470733a2f2f626c616e6b73747564696f2e60e08201527f617274222c2022696d616765223a20220000000000000000000000000000000061010082015250565b60006141a161011083613fb1565b91506141ac82614039565b61011082019050919050565b60008190508160005260206000209050919050565b600081546141da81613727565b6141e48186613fb1565b945060018216600081146141ff576001811461421057614243565b60ff19831686528186019350614243565b614219856141b8565b60005b8381101561423b5781548189015260018201915060208101905061421c565b838801955050505b50505092915050565b7f2e6d7034222c2261747472696275746573223a205b7b2274726169745f74797060008201527f65223a202243617465676f7279222c202276616c7565223a2022000000000000602082015250565b60006142a8603a83613fb1565b91506142b38261424c565b603a82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006142f4600483613fb1565b91506142ff826142be565b600482019050919050565b600061431582613fe5565b91506143218287614008565b915061432c82614193565b915061433882866141cd565b91506143448285614008565b915061434f8261429b565b915061435b8284614008565b9150614366826142e7565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006143aa601d83613fb1565b91506143b582614374565b601d82019050919050565b60006143cb8261439d565b91506143d78284614008565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061443e602683612ea4565b9150614449826143e2565b604082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60006060820190506144896000830186612fe9565b614496602083018561307f565b6144a36040830184612fe9565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144e1602083612ea4565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e4f545f4d494e54454400000000000000000000000000000000000000000000600082015250565b600061454d600a83612ea4565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b7f21494e56414c49445f5349474e41545552452100000000000000000000000000600082015250565b60006145b9601383612ea4565b91506145c482614583565b602082019050919050565b600060208201905081810360008301526145e8816145ac565b9050919050565b7f21414c52454144595f5553454421000000000000000000000000000000000000600082015250565b6000614625600e83612ea4565b9150614630826145ef565b602082019050919050565b6000602082019050818103600083015261465481614618565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061469582612f54565b91506146a083612f54565b9250826146b0576146af61465b565b5b828204905092915050565b60006146c682612f54565b91506146d183612f54565b9250826146e1576146e061465b565b5b828206905092915050565b7f4d45444941204944000000000000000000000000000000000000000000000000600082015250565b6000614722600883613fb1565b915061472d826146ec565b600882019050919050565b600061474382614715565b915061474f8284614008565b915081905092915050565b600061476582612f54565b915061477083612f54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147a9576147a86137c4565b5b828202905092915050565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b60006147ea600e83612ea4565b91506147f5826147b4565b602082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614856601c83613fb1565b915061486182614820565b601c82019050919050565b6000819050919050565b614887614882826130a9565b61486c565b82525050565b600061489882614849565b91506148a48284614876565b60208201915081905092915050565b60006148bf8284614008565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061492f601883612ea4565b915061493a826148f9565b602082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061499b601f83612ea4565b91506149a682614965565b602082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602283612ea4565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602283612ea4565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b600060ff82169050919050565b614b0b81614af5565b82525050565b6000608082019050614b26600083018761353a565b614b336020830186614b02565b614b40604083018561353a565b614b4d606083018461353a565b9594505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122093abc3e0101c8315b0075350de50c7a2b5c22b0057d154565a591447f0aac24b64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569646772706c336d79616b7634617a6775757362786664706b3775716f766167716a78716b3535747032706a7232626b676a6c33712f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c8063715018a611610125578063b88d4fde116100ad578063e58306f91161007c578063e58306f914610617578063e985e9c514610633578063efc4f1dc14610663578063f2fde38b1461066d578063feff1999146106895761021c565b8063b88d4fde146105a3578063c87b56dd146105bf578063d42bb3bd146105ef578063d89135cd146105f95761021c565b8063890621da116100f4578063890621da146104ff5780638da5cb5b1461052f57806394d008ef1461054d57806395d89b4114610569578063a22cb465146105875761021c565b8063715018a61461048957806382e3055d146104935780638462151c146104b15780638838b5c3146104e15761021c565b806342842e0e116101a8578063603f4d5211610177578063603f4d52146103d15780636352211e146103ef5780636c0360eb1461041f5780636fd976811461043d57806370a08231146104595761021c565b806342842e0e1461035d578063522439ef1461037957806355f804b31461039757806357d4c4ee146103b35761021c565b806318160ddd116101ef57806318160ddd146102bb578063195e8708146102d95780632073447d1461030957806323b872dd146103255780632e1a7d4d146103415761021c565b806301ffc9a71461022157806306fdde0314610251578063081812fc1461026f578063095ea7b31461029f575b600080fd5b61023b60048036038101906102369190612e36565b6106b9565b6040516102489190612e7e565b60405180910390f35b61025961074b565b6040516102669190612f32565b60405180910390f35b61028960048036038101906102849190612f8a565b6107d9565b6040516102969190612ff8565b60405180910390f35b6102b960048036038101906102b4919061303f565b61080c565b005b6102c36109f5565b6040516102d0919061308e565b60405180910390f35b6102f360048036038101906102ee91906130df565b610a13565b6040516103009190612e7e565b60405180910390f35b610323600480360381019061031e919061310c565b610a33565b005b61033f600480360381019061033a9190613139565b610a47565b005b61035b60048036038101906103569190612f8a565b610e46565b005b61037760048036038101906103729190613139565b610f0b565b005b610381611043565b60405161038e919061308e565b60405180910390f35b6103b160048036038101906103ac91906132c1565b611054565b005b6103bb611076565b6040516103c8919061308e565b60405180910390f35b6103d961107c565b6040516103e69190612e7e565b60405180910390f35b61040960048036038101906104049190612f8a565b61108f565b6040516104169190612ff8565b60405180910390f35b610427611114565b6040516104349190612f32565b60405180910390f35b6104576004803603810190610452919061330a565b6111a2565b005b610473600480360381019061046e919061310c565b6112f3565b604051610480919061308e565b60405180910390f35b6104916113aa565b005b61049b6113be565b6040516104a89190612e7e565b60405180910390f35b6104cb60048036038101906104c6919061310c565b6113d1565b6040516104d89190613408565b60405180910390f35b6104e9611597565b6040516104f69190612ff8565b60405180910390f35b610519600480360381019061051491906134cb565b6115c1565b6040516105269190613549565b60405180910390f35b6105376115df565b6040516105449190612ff8565b60405180910390f35b610567600480360381019061056291906134cb565b611609565b005b6105716116dd565b60405161057e9190612f32565b60405180910390f35b6105a1600480360381019061059c9190613590565b61176b565b005b6105bd60048036038101906105b89190613630565b611868565b005b6105d960048036038101906105d49190612f8a565b6119a6565b6040516105e69190612f32565b60405180910390f35b6105f7611a6b565b005b610601611a9f565b60405161060e919061308e565b60405180910390f35b610631600480360381019061062c919061303f565b611aa5565b005b61064d600480360381019061064891906136b8565b611aed565b60405161065a9190612e7e565b60405180910390f35b61066b611b1c565b005b6106876004803603810190610682919061310c565b611b50565b005b6106a3600480360381019061069e919061303f565b611bd3565b6040516106b09190613549565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6000805461075890613727565b80601f016020809104026020016040519081016040528092919081815260200182805461078490613727565b80156107d15780601f106107a6576101008083540402835291602001916107d1565b820191906000526020600020905b8154815290600101906020018083116107b457829003601f168201915b505050505081565b60046020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806109045750600560008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a906137a4565b60405180910390fd5b826004600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c54610a046009611c08565b610a0e91906137f3565b905090565b60076020528060005260406000206000915054906101000a900460ff1681565b610a3b611c16565b610a4481611c94565b50565b6002600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e906138df565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c175750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610c8057506004600082815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb6906137a4565b60405180910390fd5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600190039190505550600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b610e4e611c16565b6000610e586115df565b905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610e8090613930565b60006040518083038185875af1925050503d8060008114610ebd576040519150601f19603f3d011682016040523d82523d6000602084013e610ec2565b606091505b5050905080610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613991565b60405180910390fd5b505050565b610f16838383610a47565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480610fff575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b8152600401610f9b939291906139e5565b6020604051808303816000875af1158015610fba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fde9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613abd565b60405180910390fd5b505050565b600061104f6009611c08565b905090565b61105c611c16565b80600a9080519060200190611072929190612d27565b5050565b61057881565b600b60009054906101000a900460ff1681565b600061109a82611cd8565b6110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613b4f565b60405180910390fd5b6002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a805461112190613727565b80601f016020809104026020016040519081016040528092919081815260200182805461114d90613727565b801561119a5780601f1061116f5761010080835404028352916020019161119a565b820191906000526020600020905b81548152906001019060200180831161117d57829003601f168201915b505050505081565b600b60019054906101000a900460ff166111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613be1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166112118361108f565b73ffffffffffffffffffffffffffffffffffffffff1614801561126757503373ffffffffffffffffffffffffffffffffffffffff1661124f8261108f565b73ffffffffffffffffffffffffffffffffffffffff16145b6112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d90613c73565b60405180910390fd5b6112af82611d44565b6112b881611d44565b6002600c60008282546112cb9190613c93565b925050819055506112e5336112e06009611c08565b611f07565b6112ef600961203e565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a90613d35565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b2611c16565b6113bc6000612054565b565b600b60019054906101000a900460ff1681565b60606000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000810361147157600067ffffffffffffffff81111561143a57611439613196565b5b6040519080825280602002602001820160405280156114685781602001602082028036833780820191505090505b50915050611592565b60008167ffffffffffffffff81111561148d5761148c613196565b5b6040519080825280602002602001820160405280156114bb5781602001602082028036833780820191505090505b5090506000805b6114cc6009611c08565b81101561158a576114dc81611cd8565b15611577578573ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611576578083838151811061155b5761155a613d55565b5b602002602001018181525050818061157290613d84565b9250505b5b808061158290613d84565b9150506114c2565b829450505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006115d68484846115d1611597565b61211a565b90509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b60009054906101000a900460ff16611658576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164f90613e18565b60405180910390fd5b61057860016116656109f5565b61166f9190613c93565b11156116b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a790613e84565b60405180910390fd5b6116bb838383612224565b6116ce836116c96009611c08565b611f07565b6116d8600961203e565b505050565b600180546116ea90613727565b80601f016020809104026020016040519081016040528092919081815260200182805461171690613727565b80156117635780601f1061173857610100808354040283529160200191611763565b820191906000526020600020905b81548152906001019060200180831161174657829003601f168201915b505050505081565b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161185c9190612e7e565b60405180910390a35050565b611873858585610a47565b60008473ffffffffffffffffffffffffffffffffffffffff163b1480611960575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118fc959493929190613ed1565b6020604051808303816000875af115801561191b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193f9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613abd565b60405180910390fd5b5050505050565b60606119b182611cd8565b6119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790613f91565b60405180910390fd5b60006119fb83612265565b600a611a0e611a09866123c5565b612265565b611a178661242a565b604051602001611a2a949392919061430a565b6040516020818303038152906040529050611a44816125c3565b604051602001611a5491906143c0565b604051602081830303815290604052915050919050565b611a73611c16565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600c5481565b611aad611c16565b60005b81811015611ae857611acb83611ac66009611c08565b611f07565b611ad5600961203e565b8080611ae090613d84565b915050611ab0565b505050565b60056020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b611b24611c16565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b611b58611c16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe90614454565b60405180910390fd5b611bd081612054565b50565b6000828230604051602001611bea93929190614474565b60405160208183030381529060405280519060200120905092915050565b600081600001549050919050565b611c1e61275a565b73ffffffffffffffffffffffffffffffffffffffff16611c3c6115df565b73ffffffffffffffffffffffffffffffffffffffff1614611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906144f7565b60405180910390fd5b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290614563565b60405180910390fd5b600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001900391905055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611f118282612762565b60008273ffffffffffffffffffffffffffffffffffffffff163b1480611ffb575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a02336000856040518463ffffffff1660e01b8152600401611f97939291906139e5565b6020604051808303816000875af1158015611fb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fda9190613a44565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b61203a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203190613abd565b60405180910390fd5b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008061212f61212a8787611bd3565b612974565b90508273ffffffffffffffffffffffffffffffffffffffff1661215b85836129a490919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16146121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a8906145cf565b60405180910390fd5b600015156007600083815260200190815260200160002060009054906101000a900460ff16151514612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f9061463b565b60405180910390fd5b80915050949350505050565b60006122318484846115c1565b905060016007600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060600082036122ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123c0565b600082905060005b600082146122de5780806122c790613d84565b915050600a826122d7919061468a565b91506122b4565b60008167ffffffffffffffff8111156122fa576122f9613196565b5b6040519080825280601f01601f19166020018201604052801561232c5781602001600182028036833780820191505090505b5090505b600085146123b95760018261234591906137f3565b9150600a8561235491906146bb565b60306123609190613c93565b60f81b81838151811061237657612375613d55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123b2919061468a565b9450612330565b8093505050505b919050565b60006105788210156123da5760009050612425565b6001600561240e6123ea85612265565b6040516020016123fa9190614738565b6040516020818303038152906040526129cb565b61241891906146bb565b6124229190613c93565b90505b919050565b606060006040518060c001604052806040518060400160405280600b81526020017f426c616e6b20546f6b656e00000000000000000000000000000000000000000081525081526020016040518060400160405280601f81526020017f56696e796c20746f6b656e3a20466f637573696e67205061727469616c6c790081525081526020016040518060400160405280601781526020017f56696e796c20746f6b656e3a20476f6f6e20537175616400000000000000000081525081526020016040518060400160405280601281526020017f56696e796c20746f6b656e3a20536e61636b000000000000000000000000000081525081526020016040518060400160405280601781526020017f56696e796c20746f6b656e3a20536e656570204465657000000000000000000081525081526020016040518060400160405280601a81526020017f56696e796c20746f6b656e3a2053746172732046616c6c696e670000000000008152508152509050806125a5846123c5565b600681106125b6576125b5613d55565b5b6020020151915050919050565b6060600082519050600081036125eb5760405180602001604052806000815250915050612755565b600060036002836125fc9190613c93565b612606919061468a565b6004612612919061475a565b905060006020826126239190613c93565b67ffffffffffffffff81111561263c5761263b613196565b5b6040519080825280601f01601f19166020018201604052801561266e5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614b57604091399050600181016020830160005b868110156127125760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612699565b50600386066001811461272c576002811461273c57612747565b613d3d60f01b6002830352612747565b603d60f81b60018303525b508484525050819450505050505b919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c8906138df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90614800565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906001019190505550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600081604051602001612987919061488d565b604051602081830303815290604052805190602001209050919050565b60008060006129b385856129fe565b915091506129c081612a4f565b819250505092915050565b6000816040516020016129de91906148b3565b6040516020818303038152906040528051906020012060001c9050919050565b6000806041835103612a3f5760008060006020860151925060408601519150606086015160001a9050612a3387828585612c1b565b94509450505050612a48565b60006002915091505b9250929050565b60006004811115612a6357612a626148ca565b5b816004811115612a7657612a756148ca565b5b0315612c185760016004811115612a9057612a8f6148ca565b5b816004811115612aa357612aa26148ca565b5b03612ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ada90614945565b60405180910390fd5b60026004811115612af757612af66148ca565b5b816004811115612b0a57612b096148ca565b5b03612b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b41906149b1565b60405180910390fd5b60036004811115612b5e57612b5d6148ca565b5b816004811115612b7157612b706148ca565b5b03612bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba890614a43565b60405180910390fd5b600480811115612bc457612bc36148ca565b5b816004811115612bd757612bd66148ca565b5b03612c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0e90614ad5565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612c56576000600391509150612d1e565b601b8560ff1614158015612c6e5750601c8560ff1614155b15612c80576000600491509150612d1e565b600060018787878760405160008152602001604052604051612ca59493929190614b11565b6020604051602081039080840390855afa158015612cc7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d1557600060019250925050612d1e565b80600092509250505b94509492505050565b828054612d3390613727565b90600052602060002090601f016020900481019282612d555760008555612d9c565b82601f10612d6e57805160ff1916838001178555612d9c565b82800160010185558215612d9c579182015b82811115612d9b578251825591602001919060010190612d80565b5b509050612da99190612dad565b5090565b5b80821115612dc6576000816000905550600101612dae565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1381612dde565b8114612e1e57600080fd5b50565b600081359050612e3081612e0a565b92915050565b600060208284031215612e4c57612e4b612dd4565b5b6000612e5a84828501612e21565b91505092915050565b60008115159050919050565b612e7881612e63565b82525050565b6000602082019050612e936000830184612e6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ed3578082015181840152602081019050612eb8565b83811115612ee2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f0482612e99565b612f0e8185612ea4565b9350612f1e818560208601612eb5565b612f2781612ee8565b840191505092915050565b60006020820190508181036000830152612f4c8184612ef9565b905092915050565b6000819050919050565b612f6781612f54565b8114612f7257600080fd5b50565b600081359050612f8481612f5e565b92915050565b600060208284031215612fa057612f9f612dd4565b5b6000612fae84828501612f75565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fe282612fb7565b9050919050565b612ff281612fd7565b82525050565b600060208201905061300d6000830184612fe9565b92915050565b61301c81612fd7565b811461302757600080fd5b50565b60008135905061303981613013565b92915050565b6000806040838503121561305657613055612dd4565b5b60006130648582860161302a565b925050602061307585828601612f75565b9150509250929050565b61308881612f54565b82525050565b60006020820190506130a3600083018461307f565b92915050565b6000819050919050565b6130bc816130a9565b81146130c757600080fd5b50565b6000813590506130d9816130b3565b92915050565b6000602082840312156130f5576130f4612dd4565b5b6000613103848285016130ca565b91505092915050565b60006020828403121561312257613121612dd4565b5b60006131308482850161302a565b91505092915050565b60008060006060848603121561315257613151612dd4565b5b60006131608682870161302a565b93505060206131718682870161302a565b925050604061318286828701612f75565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131ce82612ee8565b810181811067ffffffffffffffff821117156131ed576131ec613196565b5b80604052505050565b6000613200612dca565b905061320c82826131c5565b919050565b600067ffffffffffffffff82111561322c5761322b613196565b5b61323582612ee8565b9050602081019050919050565b82818337600083830152505050565b600061326461325f84613211565b6131f6565b9050828152602081018484840111156132805761327f613191565b5b61328b848285613242565b509392505050565b600082601f8301126132a8576132a761318c565b5b81356132b8848260208601613251565b91505092915050565b6000602082840312156132d7576132d6612dd4565b5b600082013567ffffffffffffffff8111156132f5576132f4612dd9565b5b61330184828501613293565b91505092915050565b6000806040838503121561332157613320612dd4565b5b600061332f85828601612f75565b925050602061334085828601612f75565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61337f81612f54565b82525050565b60006133918383613376565b60208301905092915050565b6000602082019050919050565b60006133b58261334a565b6133bf8185613355565b93506133ca83613366565b8060005b838110156133fb5781516133e28882613385565b97506133ed8361339d565b9250506001810190506133ce565b5085935050505092915050565b6000602082019050818103600083015261342281846133aa565b905092915050565b600067ffffffffffffffff82111561344557613444613196565b5b61344e82612ee8565b9050602081019050919050565b600061346e6134698461342a565b6131f6565b90508281526020810184848401111561348a57613489613191565b5b613495848285613242565b509392505050565b600082601f8301126134b2576134b161318c565b5b81356134c284826020860161345b565b91505092915050565b6000806000606084860312156134e4576134e3612dd4565b5b60006134f28682870161302a565b935050602061350386828701612f75565b925050604084013567ffffffffffffffff81111561352457613523612dd9565b5b6135308682870161349d565b9150509250925092565b613543816130a9565b82525050565b600060208201905061355e600083018461353a565b92915050565b61356d81612e63565b811461357857600080fd5b50565b60008135905061358a81613564565b92915050565b600080604083850312156135a7576135a6612dd4565b5b60006135b58582860161302a565b92505060206135c68582860161357b565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126135f0576135ef61318c565b5b8235905067ffffffffffffffff81111561360d5761360c6135d0565b5b602083019150836001820283011115613629576136286135d5565b5b9250929050565b60008060008060006080868803121561364c5761364b612dd4565b5b600061365a8882890161302a565b955050602061366b8882890161302a565b945050604061367c88828901612f75565b935050606086013567ffffffffffffffff81111561369d5761369c612dd9565b5b6136a9888289016135da565b92509250509295509295909350565b600080604083850312156136cf576136ce612dd4565b5b60006136dd8582860161302a565b92505060206136ee8582860161302a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373f57607f821691505b602082108103613752576137516136f8565b5b50919050565b7f4e4f545f415554484f52495a4544000000000000000000000000000000000000600082015250565b600061378e600e83612ea4565b915061379982613758565b602082019050919050565b600060208201905081810360008301526137bd81613781565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137fe82612f54565b915061380983612f54565b92508282101561381c5761381b6137c4565b5b828203905092915050565b7f57524f4e475f46524f4d00000000000000000000000000000000000000000000600082015250565b600061385d600a83612ea4565b915061386882613827565b602082019050919050565b6000602082019050818103600083015261388c81613850565b9050919050565b7f494e56414c49445f524543495049454e54000000000000000000000000000000600082015250565b60006138c9601183612ea4565b91506138d482613893565b602082019050919050565b600060208201905081810360008301526138f8816138bc565b9050919050565b600081905092915050565b50565b600061391a6000836138ff565b91506139258261390a565b600082019050919050565b600061393b8261390d565b9150819050919050565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b600061397b601183612ea4565b915061398682613945565b602082019050919050565b600060208201905081810360008301526139aa8161396e565b9050919050565b600082825260208201905092915050565b60006139cf6000836139b1565b91506139da8261390a565b600082019050919050565b60006080820190506139fa6000830186612fe9565b613a076020830185612fe9565b613a14604083018461307f565b8181036060830152613a25816139c2565b9050949350505050565b600081519050613a3e81612e0a565b92915050565b600060208284031215613a5a57613a59612dd4565b5b6000613a6884828501613a2f565b91505092915050565b7f554e534146455f524543495049454e5400000000000000000000000000000000600082015250565b6000613aa7601083612ea4565b9150613ab282613a71565b602082019050919050565b60006020820190508181036000830152613ad681613a9a565b9050919050565b7f426c616e6b20546f6b656e3a204e6f74206d696e746564206f72206275726e6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b39602183612ea4565b9150613b4482613add565b604082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f426c616e6b20546f6b656e3a204d657267696e6720686173206e6f742073746160008201527f7274656420796574000000000000000000000000000000000000000000000000602082015250565b6000613bcb602883612ea4565b9150613bd682613b6f565b604082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b7f426c616e6b20546f6b656e3a206d757374206f776e20746f6b656e7320746f2060008201527f6d65726765000000000000000000000000000000000000000000000000000000602082015250565b6000613c5d602583612ea4565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b6000613c9e82612f54565b9150613ca983612f54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cde57613cdd6137c4565b5b828201905092915050565b7f5a45524f5f414444524553530000000000000000000000000000000000000000600082015250565b6000613d1f600c83612ea4565b9150613d2a82613ce9565b602082019050919050565b60006020820190508181036000830152613d4e81613d12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d8f82612f54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dc157613dc06137c4565b5b600182019050919050565b7f50726573616c65206e6f74206163746976650000000000000000000000000000600082015250565b6000613e02601283612ea4565b9150613e0d82613dcc565b602082019050919050565b60006020820190508181036000830152613e3181613df5565b9050919050565b7f3e4d6178537570706c7900000000000000000000000000000000000000000000600082015250565b6000613e6e600a83612ea4565b9150613e7982613e38565b602082019050919050565b60006020820190508181036000830152613e9d81613e61565b9050919050565b6000613eb083856139b1565b9350613ebd838584613242565b613ec683612ee8565b840190509392505050565b6000608082019050613ee66000830188612fe9565b613ef36020830187612fe9565b613f00604083018661307f565b8181036060830152613f13818486613ea4565b90509695505050505050565b7f426c616e6b20746f6b656e3a207468697320746f6b656e20646f6573206e6f7460008201527f2065786973740000000000000000000000000000000000000000000000000000602082015250565b6000613f7b602683612ea4565b9150613f8682613f1f565b604082019050919050565b60006020820190508181036000830152613faa81613f6e565b9050919050565b600081905092915050565b7f7b226e616d65223a2022426c616e6b20546f6b656e2023000000000000000000600082015250565b6000613ff2601783613fb1565b9150613ffd82613fbc565b601782019050919050565b600061401382612e99565b61401d8185613fb1565b935061402d818560208601612eb5565b80840191505092915050565b7f222c20226465736372697074696f6e223a2022426c616e6b2053747564696f2060008201527f69732061206375726174696f6e20706c6174666f726d20656e61626c696e672060208201527f617274697374732066726f6d206120706c6574686f7261206f66206261636b6760408201527f726f756e647320746f206469737275707420746865206469676974616c20776f60608201527f726c642e204a6f696e206f757220636f6c6c65637469766520746f646179207460808201527f6f20706172746963697061746520696e206675747572652064726f707320667260a08201527f6f6d206f75722074616c656e74656420617274697374732e222c20226578746560c08201527f726e616c5f75726c223a202268747470733a2f2f626c616e6b73747564696f2e60e08201527f617274222c2022696d616765223a20220000000000000000000000000000000061010082015250565b60006141a161011083613fb1565b91506141ac82614039565b61011082019050919050565b60008190508160005260206000209050919050565b600081546141da81613727565b6141e48186613fb1565b945060018216600081146141ff576001811461421057614243565b60ff19831686528186019350614243565b614219856141b8565b60005b8381101561423b5781548189015260018201915060208101905061421c565b838801955050505b50505092915050565b7f2e6d7034222c2261747472696275746573223a205b7b2274726169745f74797060008201527f65223a202243617465676f7279222c202276616c7565223a2022000000000000602082015250565b60006142a8603a83613fb1565b91506142b38261424c565b603a82019050919050565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b60006142f4600483613fb1565b91506142ff826142be565b600482019050919050565b600061431582613fe5565b91506143218287614008565b915061432c82614193565b915061433882866141cd565b91506143448285614008565b915061434f8261429b565b915061435b8284614008565b9150614366826142e7565b915081905095945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006143aa601d83613fb1565b91506143b582614374565b601d82019050919050565b60006143cb8261439d565b91506143d78284614008565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061443e602683612ea4565b9150614449826143e2565b604082019050919050565b6000602082019050818103600083015261446d81614431565b9050919050565b60006060820190506144896000830186612fe9565b614496602083018561307f565b6144a36040830184612fe9565b949350505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144e1602083612ea4565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e4f545f4d494e54454400000000000000000000000000000000000000000000600082015250565b600061454d600a83612ea4565b915061455882614517565b602082019050919050565b6000602082019050818103600083015261457c81614540565b9050919050565b7f21494e56414c49445f5349474e41545552452100000000000000000000000000600082015250565b60006145b9601383612ea4565b91506145c482614583565b602082019050919050565b600060208201905081810360008301526145e8816145ac565b9050919050565b7f21414c52454144595f5553454421000000000000000000000000000000000000600082015250565b6000614625600e83612ea4565b9150614630826145ef565b602082019050919050565b6000602082019050818103600083015261465481614618565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061469582612f54565b91506146a083612f54565b9250826146b0576146af61465b565b5b828204905092915050565b60006146c682612f54565b91506146d183612f54565b9250826146e1576146e061465b565b5b828206905092915050565b7f4d45444941204944000000000000000000000000000000000000000000000000600082015250565b6000614722600883613fb1565b915061472d826146ec565b600882019050919050565b600061474382614715565b915061474f8284614008565b915081905092915050565b600061476582612f54565b915061477083612f54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147a9576147a86137c4565b5b828202905092915050565b7f414c52454144595f4d494e544544000000000000000000000000000000000000600082015250565b60006147ea600e83612ea4565b91506147f5826147b4565b602082019050919050565b60006020820190508181036000830152614819816147dd565b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000614856601c83613fb1565b915061486182614820565b601c82019050919050565b6000819050919050565b614887614882826130a9565b61486c565b82525050565b600061489882614849565b91506148a48284614876565b60208201915081905092915050565b60006148bf8284614008565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061492f601883612ea4565b915061493a826148f9565b602082019050919050565b6000602082019050818103600083015261495e81614922565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061499b601f83612ea4565b91506149a682614965565b602082019050919050565b600060208201905081810360008301526149ca8161498e565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a2d602283612ea4565b9150614a38826149d1565b604082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614abf602283612ea4565b9150614aca82614a63565b604082019050919050565b60006020820190508181036000830152614aee81614ab2565b9050919050565b600060ff82169050919050565b614b0b81614af5565b82525050565b6000608082019050614b26600083018761353a565b614b336020830186614b02565b614b40604083018561353a565b614b4d606083018461353a565b9594505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122093abc3e0101c8315b0075350de50c7a2b5c22b0057d154565a591447f0aac24b64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569646772706c336d79616b7634617a6775757362786664706b3775716f766167716a78716b3535747032706a7232626b676a6c33712f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _myBase (string): ipfs://bafybeidgrpl3myakv4azguusbxfdpk7uqovagqjxqk55tp2pjr2bkgjl3q/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569646772706c336d79616b7634617a67757573
Arg [3] : 62786664706b3775716f766167716a78716b3535747032706a7232626b676a6c
Arg [4] : 33712f0000000000000000000000000000000000000000000000000000000000


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.