ETH Price: $3,468.28 (+4.03%)

Token

Doomsday NFT Collectibles (FALLEN)
 

Overview

Max Total Supply

0 FALLEN

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jelo.eth
Balance
5 FALLEN
0x79d899379844D35A1A1F5D51D3185dd821f44Dc1
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DoomsdayCollectibles

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : DoomsdayCollectibles.sol
//SPDX-License-Identifier: Spaghetti

pragma solidity ^0.8.0;

import "./IDoomsdayFallen.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract DoomsdayCollectibles is ERC721, Ownable{
    IDoomsdayFallen doomsday;

    bytes private __uriBase = bytes("https://gateway.pinata.cloud/ipfs/QmXBFscVqjj3kEEnjWZG6dCibRgL4Bi4dUwb3eHtB4JnhS/");
    bytes private __uriSuffix = bytes(".json");


    constructor(address _doomsday) ERC721("Doomsday NFT Collectibles","FALLEN"){
        doomsday = IDoomsdayFallen(_doomsday);
    }

    mapping(uint => bool) minted;

    function claim(uint _tokenId) public {
        (uint16 _cityId, address _owner) = doomsday.getFallen(_tokenId);
        _cityId;
        require(_owner == msg.sender,"didn't own");
        require(!minted[_tokenId],"minted");

        minted[_tokenId] = true;

        _mint(msg.sender,_tokenId);
    }

    function claimMultiple(uint[] calldata _tokenIds) public{
        for(uint i = 0; i < _tokenIds.length; i++){
            claim(_tokenIds[i]);
        }
    }

    // METADATA FUNCTIONS
    function tokenURI(uint256 _tokenId) public override view returns (string memory){
        //Note: changed visibility to public
        require(minted[_tokenId],"doesn't exist");

        (uint _cityId, address _owner) = doomsday.getFallen(_tokenId);
        _owner;

        uint _i = _cityId;
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }



        return string(abi.encodePacked(__uriBase,bstr,__uriSuffix));
    }

    function setUriComponents(string calldata _newBase, string calldata _newSuffix) public onlyOwner{
        __uriBase   = bytes(_newBase);
        __uriSuffix = bytes(_newSuffix);
    }

    function myFallen(uint startId, uint limit)  public view returns(uint[] memory _tokenIds, uint16[] memory _cityIds){
        uint _totalSupply = doomsday.totalSupply();
//        uint _myBalance = doomsday.balanceOf(msg.sender);
        uint _maxId = _totalSupply + doomsday.destroyed();
//        if(_totalSupply == 0 || _myBalance == 0){
//            uint[] memory _none;
//            return _none;
//        }
        require(startId < _maxId + 1,"Invalid start ID");
        uint sampleSize = _maxId - startId + 1;

        if(limit != 0 && sampleSize > limit){
            sampleSize = limit;
        }

        _tokenIds = new uint256[](sampleSize);
        _cityIds  = new uint16[](sampleSize);

        uint _tokenId = startId;
        uint found = 0;
        for(uint i = 0; i < sampleSize; i++){
            try doomsday.getFallen(_tokenId) returns (uint16 _cityId, address _owner) {
                _cityId;
                if(msg.sender == _owner && !minted[_tokenId]){
                    _tokenIds[found++] = _tokenId;
                    _cityIds[found++] = _cityId;
                }
            } catch {

            }
            _tokenId++;
        }
        return (_tokenIds,_cityIds);
    }

}

File 2 of 12 : IDoomsdayFallen.sol
//SPDX-License-Identifier: Salad

pragma solidity ^0.8.0;

interface IDoomsdayFallen {
    function getFallen(uint _tokenId) external view returns(uint16 _cityId, address _owner);

    function totalSupply() external view returns (uint256);
    function destroyed() external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_doomsday","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claimMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startId","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"myFallen","outputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint16[]","name":"_cityIds","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBase","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setUriComponents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806051815260200162003e726051913960089080519060200190620000359291906200028d565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000839291906200028d565b503480156200009157600080fd5b5060405162003ec338038062003ec38339818101604052810190620000b79190620003e5565b6040518060400160405280601981526020017f446f6f6d73646179204e465420436f6c6c65637469626c6573000000000000008152506040518060400160405280600681526020017f46414c4c454e000000000000000000000000000000000000000000000000000081525081600090805190602001906200013b9291906200031e565b508060019080519060200190620001549291906200031e565b505050620001776200016b620001bf60201b60201c565b620001c760201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004c4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200029b9062000445565b90600052602060002090601f016020900481019282620002bf57600085556200030b565b82601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a9190620003af565b5090565b8280546200032c9062000445565b90600052602060002090601f0160209004810192826200035057600085556200039c565b82601f106200036b57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039b5782518255916020019190600101906200037e565b5b509050620003ab9190620003af565b5090565b5b80821115620003ca576000816000905550600101620003b0565b5090565b600081519050620003df81620004aa565b92915050565b600060208284031215620003f857600080fd5b60006200040884828501620003ce565b91505092915050565b60006200041e8262000425565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200045e57607f821691505b602082108114156200047557620004746200047b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620004b58162000411565b8114620004c157600080fd5b50565b61399e80620004d46000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063c60a71bf11610071578063c60a71bf14610319578063c87b56dd14610335578063e1cbbc1d14610365578063e985e9c514610396578063f2fde38b146103c65761012c565b80638da5cb5b146102895780639051cce9146102a757806395d89b41146102c3578063a22cb465146102e1578063b88d4fde146102fd5761012c565b8063379607f5116100f4578063379607f5146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b60048036038101906101469190612588565b6103e2565b6040516101589190612cda565b60405180910390f35b6101696104c4565b6040516101769190612cf5565b60405180910390f35b6101996004803603810190610194919061268b565b610556565b6040516101a69190612c3c565b60405180910390f35b6101c960048036038101906101c49190612507565b6105db565b005b6101e560048036038101906101e09190612401565b6106f3565b005b61020160048036038101906101fc919061268b565b610753565b005b61021d60048036038101906102189190612401565b61090e565b005b6102396004803603810190610234919061268b565b61092e565b6040516102469190612c3c565b60405180910390f35b6102696004803603810190610264919061239c565b6109e0565b6040516102769190612f77565b60405180910390f35b610287610a98565b005b610291610b20565b60405161029e9190612c3c565b60405180910390f35b6102c160048036038101906102bc9190612543565b610b4a565b005b6102cb610bb8565b6040516102d89190612cf5565b60405180910390f35b6102fb60048036038101906102f691906124cb565b610c4a565b005b61031760048036038101906103129190612450565b610dcb565b005b610333600480360381019061032e91906125da565b610e2d565b005b61034f600480360381019061034a919061268b565b610ed3565b60405161035c9190612cf5565b60405180910390f35b61037f600480360381019061037a91906126dd565b6111a3565b60405161038d929190612ca3565b60405180910390f35b6103b060048036038101906103ab91906123c5565b611659565b6040516103bd9190612cda565b60405180910390f35b6103e060048036038101906103db919061239c565b6116ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bd57506104bc826117e5565b5b9050919050565b6060600080546104d3906132cf565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff906132cf565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b60006105618261184f565b6105a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059790612e97565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e68261092e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064e90612ef7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106766118bb565b73ffffffffffffffffffffffffffffffffffffffff1614806106a557506106a48161069f6118bb565b611659565b5b6106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612e17565b60405180910390fd5b6106ee83836118c3565b505050565b6107046106fe6118bb565b8261197c565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a90612f17565b60405180910390fd5b61074e838383611a5a565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008846040518263ffffffff1660e01b81526004016107b19190612f77565b604080518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061264f565b915091503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990612d17565b60405180910390fd5b600a600084815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612f37565b60405180910390fd5b6001600a600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506109093384611cb6565b505050565b61092983838360405180602001604052806000815250610dcb565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612e57565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612e37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa06118bb565b73ffffffffffffffffffffffffffffffffffffffff16610abe610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90612eb7565b60405180910390fd5b610b1e6000611e84565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60005b82829050811015610bb357610ba0838383818110610b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610753565b8080610bab90613332565b915050610b4d565b505050565b606060018054610bc7906132cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf3906132cf565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b5050505050905090565b610c526118bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790612db7565b60405180910390fd5b8060056000610ccd6118bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7a6118bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dbf9190612cda565b60405180910390a35050565b610ddc610dd66118bb565b8361197c565b610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290612f17565b60405180910390fd5b610e2784848484611f4a565b50505050565b610e356118bb565b73ffffffffffffffffffffffffffffffffffffffff16610e53610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090612eb7565b60405180910390fd5b838360089190610eba929190612155565b50818160099190610ecc929190612155565b5050505050565b6060600a600083815260200190815260200160002060009054906101000a900460ff16610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612dd7565b60405180910390fd5b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008856040518263ffffffff1660e01b8152600401610f939190612f77565b604080518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe2919061264f565b915061ffff1691506000829050600081905060005b6000821461102157808061100a90613332565b915050600a8261101a919061313f565b9150610ff7565b60008167ffffffffffffffff811115611063577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110955781602001600182028036833780820191505090505b50905060008290505b6000851461116f576001816110b391906131ca565b90506000600a80876110c5919061313f565b6110cf9190613170565b866110da91906131ca565b60306110e69190613108565b905060008160f81b90508084848151811061112a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a87611166919061313f565b9650505061109e565b600882600960405160200161118693929190612c0b565b604051602081830303815290604052975050505050505050919050565b6060806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124891906126b4565b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663359cbbc96040518163ffffffff1660e01b815260040160206040518083038186803b1580156112b457600080fd5b505afa1580156112c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec91906126b4565b826112f791906130b2565b905060018161130691906130b2565b8610611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612f57565b60405180910390fd5b60006001878361135791906131ca565b61136191906130b2565b90506000861415801561137357508581115b1561137c578590505b8067ffffffffffffffff8111156113bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113ea5781602001602082028036833780820191505090505b5094508067ffffffffffffffff81111561142d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561145b5781602001602082028036833780820191505090505b50935060008790506000805b8381101561164c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008846040518263ffffffff1660e01b81526004016114ca9190612f77565b604080518083038186803b1580156114e157600080fd5b505afa92505050801561151257506040513d601f19601f8201168201806040525081019061150f919061264f565b60015b61151b5761162b565b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156115745750600a600086815260200190815260200160002060009054906101000a900460ff16155b1561162857848a858061158690613332565b9650815181106115bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818985806115d890613332565b965081518110611611577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019061ffff16908161ffff16815250505b50505b828061163690613332565b935050808061164490613332565b915050611467565b5050505050509250929050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f56118bb565b73ffffffffffffffffffffffffffffffffffffffff16611713610b20565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612eb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612d57565b60405180910390fd5b6117e281611e84565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119368361092e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119878261184f565b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612df7565b60405180910390fd5b60006119d18361092e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a4057508373ffffffffffffffffffffffffffffffffffffffff16611a2884610556565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a515750611a508185611659565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7a8261092e565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612ed7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790612d97565b60405180910390fd5b611b4b838383611fa6565b611b566000826118c3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba691906131ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfd91906130b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90612e77565b60405180910390fd5b611d2f8161184f565b15611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612d77565b60405180910390fd5b611d7b60008383611fa6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcb91906130b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f55848484611a5a565b611f6184848484611fab565b611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790612d37565b60405180910390fd5b50505050565b505050565b6000611fcc8473ffffffffffffffffffffffffffffffffffffffff16612142565b15612135578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff56118bb565b8786866040518563ffffffff1660e01b81526004016120179493929190612c57565b602060405180830381600087803b15801561203157600080fd5b505af192505050801561206257506040513d601f19601f8201168201806040525081019061205f91906125b1565b60015b6120e5573d8060008114612092576040519150601f19603f3d011682016040523d82523d6000602084013e612097565b606091505b506000815114156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490612d37565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061213a565b600190505b949350505050565b600080823b905060008111915050919050565b828054612161906132cf565b90600052602060002090601f01602090048101928261218357600085556121ca565b82601f1061219c57803560ff19168380011785556121ca565b828001600101855582156121ca579182015b828111156121c95782358255916020019190600101906121ae565b5b5090506121d791906121db565b5090565b5b808211156121f45760008160009055506001016121dc565b5090565b600061220b61220684612fb7565b612f92565b90508281526020810184848401111561222357600080fd5b61222e84828561328d565b509392505050565b600081359050612245816138f5565b92915050565b60008151905061225a816138f5565b92915050565b60008083601f84011261227257600080fd5b8235905067ffffffffffffffff81111561228b57600080fd5b6020830191508360208202830111156122a357600080fd5b9250929050565b6000813590506122b98161390c565b92915050565b6000813590506122ce81613923565b92915050565b6000815190506122e381613923565b92915050565b600082601f8301126122fa57600080fd5b813561230a8482602086016121f8565b91505092915050565b60008083601f84011261232557600080fd5b8235905067ffffffffffffffff81111561233e57600080fd5b60208301915083600182028301111561235657600080fd5b9250929050565b60008151905061236c8161393a565b92915050565b60008135905061238181613951565b92915050565b60008151905061239681613951565b92915050565b6000602082840312156123ae57600080fd5b60006123bc84828501612236565b91505092915050565b600080604083850312156123d857600080fd5b60006123e685828601612236565b92505060206123f785828601612236565b9150509250929050565b60008060006060848603121561241657600080fd5b600061242486828701612236565b935050602061243586828701612236565b925050604061244686828701612372565b9150509250925092565b6000806000806080858703121561246657600080fd5b600061247487828801612236565b945050602061248587828801612236565b935050604061249687828801612372565b925050606085013567ffffffffffffffff8111156124b357600080fd5b6124bf878288016122e9565b91505092959194509250565b600080604083850312156124de57600080fd5b60006124ec85828601612236565b92505060206124fd858286016122aa565b9150509250929050565b6000806040838503121561251a57600080fd5b600061252885828601612236565b925050602061253985828601612372565b9150509250929050565b6000806020838503121561255657600080fd5b600083013567ffffffffffffffff81111561257057600080fd5b61257c85828601612260565b92509250509250929050565b60006020828403121561259a57600080fd5b60006125a8848285016122bf565b91505092915050565b6000602082840312156125c357600080fd5b60006125d1848285016122d4565b91505092915050565b600080600080604085870312156125f057600080fd5b600085013567ffffffffffffffff81111561260a57600080fd5b61261687828801612313565b9450945050602085013567ffffffffffffffff81111561263557600080fd5b61264187828801612313565b925092505092959194509250565b6000806040838503121561266257600080fd5b60006126708582860161235d565b92505060206126818582860161224b565b9150509250929050565b60006020828403121561269d57600080fd5b60006126ab84828501612372565b91505092915050565b6000602082840312156126c657600080fd5b60006126d484828501612387565b91505092915050565b600080604083850312156126f057600080fd5b60006126fe85828601612372565b925050602061270f85828601612372565b9150509250929050565b60006127258383612bde565b60208301905092915050565b600061273d8383612bed565b60208301905092915050565b612752816131fe565b82525050565b60006127638261301d565b61276d8185613063565b935061277883612fe8565b8060005b838110156127a95781516127908882612719565b975061279b83613049565b92505060018101905061277c565b5085935050505092915050565b60006127c182613028565b6127cb8185613074565b93506127d683612ff8565b8060005b838110156128075781516127ee8882612731565b97506127f983613056565b9250506001810190506127da565b5085935050505092915050565b61281d81613210565b82525050565b600061282e82613033565b6128388185613085565b935061284881856020860161329c565b61285181613437565b840191505092915050565b600061286782613033565b6128718185613096565b935061288181856020860161329c565b80840191505092915050565b6000815461289a816132cf565b6128a48186613096565b945060018216600081146128bf57600181146128d057612903565b60ff19831686528186019350612903565b6128d985613008565b60005b838110156128fb578154818901526001820191506020810190506128dc565b838801955050505b50505092915050565b60006129178261303e565b61292181856130a1565b935061293181856020860161329c565b61293a81613437565b840191505092915050565b6000612952600a836130a1565b915061295d82613448565b602082019050919050565b60006129756032836130a1565b915061298082613471565b604082019050919050565b60006129986026836130a1565b91506129a3826134c0565b604082019050919050565b60006129bb601c836130a1565b91506129c68261350f565b602082019050919050565b60006129de6024836130a1565b91506129e982613538565b604082019050919050565b6000612a016019836130a1565b9150612a0c82613587565b602082019050919050565b6000612a24600d836130a1565b9150612a2f826135b0565b602082019050919050565b6000612a47602c836130a1565b9150612a52826135d9565b604082019050919050565b6000612a6a6038836130a1565b9150612a7582613628565b604082019050919050565b6000612a8d602a836130a1565b9150612a9882613677565b604082019050919050565b6000612ab06029836130a1565b9150612abb826136c6565b604082019050919050565b6000612ad36020836130a1565b9150612ade82613715565b602082019050919050565b6000612af6602c836130a1565b9150612b018261373e565b604082019050919050565b6000612b196020836130a1565b9150612b248261378d565b602082019050919050565b6000612b3c6029836130a1565b9150612b47826137b6565b604082019050919050565b6000612b5f6021836130a1565b9150612b6a82613805565b604082019050919050565b6000612b826031836130a1565b9150612b8d82613854565b604082019050919050565b6000612ba56006836130a1565b9150612bb0826138a3565b602082019050919050565b6000612bc86010836130a1565b9150612bd3826138cc565b602082019050919050565b612be781613248565b82525050565b612bf681613276565b82525050565b612c0581613276565b82525050565b6000612c17828661288d565b9150612c23828561285c565b9150612c2f828461288d565b9150819050949350505050565b6000602082019050612c516000830184612749565b92915050565b6000608082019050612c6c6000830187612749565b612c796020830186612749565b612c866040830185612bfc565b8181036060830152612c988184612823565b905095945050505050565b60006040820190508181036000830152612cbd81856127b6565b90508181036020830152612cd18184612758565b90509392505050565b6000602082019050612cef6000830184612814565b92915050565b60006020820190508181036000830152612d0f818461290c565b905092915050565b60006020820190508181036000830152612d3081612945565b9050919050565b60006020820190508181036000830152612d5081612968565b9050919050565b60006020820190508181036000830152612d708161298b565b9050919050565b60006020820190508181036000830152612d90816129ae565b9050919050565b60006020820190508181036000830152612db0816129d1565b9050919050565b60006020820190508181036000830152612dd0816129f4565b9050919050565b60006020820190508181036000830152612df081612a17565b9050919050565b60006020820190508181036000830152612e1081612a3a565b9050919050565b60006020820190508181036000830152612e3081612a5d565b9050919050565b60006020820190508181036000830152612e5081612a80565b9050919050565b60006020820190508181036000830152612e7081612aa3565b9050919050565b60006020820190508181036000830152612e9081612ac6565b9050919050565b60006020820190508181036000830152612eb081612ae9565b9050919050565b60006020820190508181036000830152612ed081612b0c565b9050919050565b60006020820190508181036000830152612ef081612b2f565b9050919050565b60006020820190508181036000830152612f1081612b52565b9050919050565b60006020820190508181036000830152612f3081612b75565b9050919050565b60006020820190508181036000830152612f5081612b98565b9050919050565b60006020820190508181036000830152612f7081612bbb565b9050919050565b6000602082019050612f8c6000830184612bfc565b92915050565b6000612f9c612fad565b9050612fa88282613301565b919050565b6000604051905090565b600067ffffffffffffffff821115612fd257612fd1613408565b5b612fdb82613437565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006130bd82613276565b91506130c883613276565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130fd576130fc61337b565b5b828201905092915050565b600061311382613280565b915061311e83613280565b92508260ff038211156131345761313361337b565b5b828201905092915050565b600061314a82613276565b915061315583613276565b925082613165576131646133aa565b5b828204905092915050565b600061317b82613276565b915061318683613276565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bf576131be61337b565b5b828202905092915050565b60006131d582613276565b91506131e083613276565b9250828210156131f3576131f261337b565b5b828203905092915050565b600061320982613256565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132ba57808201518184015260208101905061329f565b838111156132c9576000848401525b50505050565b600060028204905060018216806132e757607f821691505b602082108114156132fb576132fa6133d9565b5b50919050565b61330a82613437565b810181811067ffffffffffffffff8211171561332957613328613408565b5b80604052505050565b600061333d82613276565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133705761336f61337b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6469646e2774206f776e00000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f646f65736e277420657869737400000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e7465640000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420737461727420494400000000000000000000000000000000600082015250565b6138fe816131fe565b811461390957600080fd5b50565b61391581613210565b811461392057600080fd5b50565b61392c8161321c565b811461393757600080fd5b50565b61394381613248565b811461394e57600080fd5b50565b61395a81613276565b811461396557600080fd5b5056fea2646970667358221220afb12c188a7a4c05dd3585ae3c1b458f497801521cc9e47e9d05d8e6eef3bf6264736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d584246736356716a6a336b45456e6a575a47366443696252674c34426934645577623365487442344a6e68532f000000000000000000000000d6e382aa7a09fc4a09c2fb99cfce6a429985e65d

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063c60a71bf11610071578063c60a71bf14610319578063c87b56dd14610335578063e1cbbc1d14610365578063e985e9c514610396578063f2fde38b146103c65761012c565b80638da5cb5b146102895780639051cce9146102a757806395d89b41146102c3578063a22cb465146102e1578063b88d4fde146102fd5761012c565b8063379607f5116100f4578063379607f5146101e757806342842e0e146102035780636352211e1461021f57806370a082311461024f578063715018a61461027f5761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806323b872dd146101cb575b600080fd5b61014b60048036038101906101469190612588565b6103e2565b6040516101589190612cda565b60405180910390f35b6101696104c4565b6040516101769190612cf5565b60405180910390f35b6101996004803603810190610194919061268b565b610556565b6040516101a69190612c3c565b60405180910390f35b6101c960048036038101906101c49190612507565b6105db565b005b6101e560048036038101906101e09190612401565b6106f3565b005b61020160048036038101906101fc919061268b565b610753565b005b61021d60048036038101906102189190612401565b61090e565b005b6102396004803603810190610234919061268b565b61092e565b6040516102469190612c3c565b60405180910390f35b6102696004803603810190610264919061239c565b6109e0565b6040516102769190612f77565b60405180910390f35b610287610a98565b005b610291610b20565b60405161029e9190612c3c565b60405180910390f35b6102c160048036038101906102bc9190612543565b610b4a565b005b6102cb610bb8565b6040516102d89190612cf5565b60405180910390f35b6102fb60048036038101906102f691906124cb565b610c4a565b005b61031760048036038101906103129190612450565b610dcb565b005b610333600480360381019061032e91906125da565b610e2d565b005b61034f600480360381019061034a919061268b565b610ed3565b60405161035c9190612cf5565b60405180910390f35b61037f600480360381019061037a91906126dd565b6111a3565b60405161038d929190612ca3565b60405180910390f35b6103b060048036038101906103ab91906123c5565b611659565b6040516103bd9190612cda565b60405180910390f35b6103e060048036038101906103db919061239c565b6116ed565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104ad57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bd57506104bc826117e5565b5b9050919050565b6060600080546104d3906132cf565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff906132cf565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b5050505050905090565b60006105618261184f565b6105a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059790612e97565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105e68261092e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064e90612ef7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106766118bb565b73ffffffffffffffffffffffffffffffffffffffff1614806106a557506106a48161069f6118bb565b611659565b5b6106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612e17565b60405180910390fd5b6106ee83836118c3565b505050565b6107046106fe6118bb565b8261197c565b610743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073a90612f17565b60405180910390fd5b61074e838383611a5a565b505050565b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008846040518263ffffffff1660e01b81526004016107b19190612f77565b604080518083038186803b1580156107c857600080fd5b505afa1580156107dc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610800919061264f565b915091503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086990612d17565b60405180910390fd5b600a600084815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612f37565b60405180910390fd5b6001600a600085815260200190815260200160002060006101000a81548160ff0219169083151502179055506109093384611cb6565b505050565b61092983838360405180602001604052806000815250610dcb565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90612e57565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4890612e37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa06118bb565b73ffffffffffffffffffffffffffffffffffffffff16610abe610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0b90612eb7565b60405180910390fd5b610b1e6000611e84565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60005b82829050811015610bb357610ba0838383818110610b94577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135610753565b8080610bab90613332565b915050610b4d565b505050565b606060018054610bc7906132cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf3906132cf565b8015610c405780601f10610c1557610100808354040283529160200191610c40565b820191906000526020600020905b815481529060010190602001808311610c2357829003601f168201915b5050505050905090565b610c526118bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790612db7565b60405180910390fd5b8060056000610ccd6118bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7a6118bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dbf9190612cda565b60405180910390a35050565b610ddc610dd66118bb565b8361197c565b610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290612f17565b60405180910390fd5b610e2784848484611f4a565b50505050565b610e356118bb565b73ffffffffffffffffffffffffffffffffffffffff16610e53610b20565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090612eb7565b60405180910390fd5b838360089190610eba929190612155565b50818160099190610ecc929190612155565b5050505050565b6060600a600083815260200190815260200160002060009054906101000a900460ff16610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90612dd7565b60405180910390fd5b600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008856040518263ffffffff1660e01b8152600401610f939190612f77565b604080518083038186803b158015610faa57600080fd5b505afa158015610fbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe2919061264f565b915061ffff1691506000829050600081905060005b6000821461102157808061100a90613332565b915050600a8261101a919061313f565b9150610ff7565b60008167ffffffffffffffff811115611063577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156110955781602001600182028036833780820191505090505b50905060008290505b6000851461116f576001816110b391906131ca565b90506000600a80876110c5919061313f565b6110cf9190613170565b866110da91906131ca565b60306110e69190613108565b905060008160f81b90508084848151811061112a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a87611166919061313f565b9650505061109e565b600882600960405160200161118693929190612c0b565b604051602081830303815290604052975050505050505050919050565b6060806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561121057600080fd5b505afa158015611224573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124891906126b4565b90506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663359cbbc96040518163ffffffff1660e01b815260040160206040518083038186803b1580156112b457600080fd5b505afa1580156112c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec91906126b4565b826112f791906130b2565b905060018161130691906130b2565b8610611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612f57565b60405180910390fd5b60006001878361135791906131ca565b61136191906130b2565b90506000861415801561137357508581115b1561137c578590505b8067ffffffffffffffff8111156113bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113ea5781602001602082028036833780820191505090505b5094508067ffffffffffffffff81111561142d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561145b5781602001602082028036833780820191505090505b50935060008790506000805b8381101561164c57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166377e54008846040518263ffffffff1660e01b81526004016114ca9190612f77565b604080518083038186803b1580156114e157600080fd5b505afa92505050801561151257506040513d601f19601f8201168201806040525081019061150f919061264f565b60015b61151b5761162b565b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480156115745750600a600086815260200190815260200160002060009054906101000a900460ff16155b1561162857848a858061158690613332565b9650815181106115bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818985806115d890613332565b965081518110611611577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019061ffff16908161ffff16815250505b50505b828061163690613332565b935050808061164490613332565b915050611467565b5050505050509250929050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f56118bb565b73ffffffffffffffffffffffffffffffffffffffff16611713610b20565b73ffffffffffffffffffffffffffffffffffffffff1614611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090612eb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090612d57565b60405180910390fd5b6117e281611e84565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119368361092e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006119878261184f565b6119c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bd90612df7565b60405180910390fd5b60006119d18361092e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a4057508373ffffffffffffffffffffffffffffffffffffffff16611a2884610556565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a515750611a508185611659565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a7a8261092e565b73ffffffffffffffffffffffffffffffffffffffff1614611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790612ed7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3790612d97565b60405180910390fd5b611b4b838383611fa6565b611b566000826118c3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba691906131ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bfd91906130b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90612e77565b60405180910390fd5b611d2f8161184f565b15611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612d77565b60405180910390fd5b611d7b60008383611fa6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcb91906130b2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f55848484611a5a565b611f6184848484611fab565b611fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9790612d37565b60405180910390fd5b50505050565b505050565b6000611fcc8473ffffffffffffffffffffffffffffffffffffffff16612142565b15612135578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff56118bb565b8786866040518563ffffffff1660e01b81526004016120179493929190612c57565b602060405180830381600087803b15801561203157600080fd5b505af192505050801561206257506040513d601f19601f8201168201806040525081019061205f91906125b1565b60015b6120e5573d8060008114612092576040519150601f19603f3d011682016040523d82523d6000602084013e612097565b606091505b506000815114156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d490612d37565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061213a565b600190505b949350505050565b600080823b905060008111915050919050565b828054612161906132cf565b90600052602060002090601f01602090048101928261218357600085556121ca565b82601f1061219c57803560ff19168380011785556121ca565b828001600101855582156121ca579182015b828111156121c95782358255916020019190600101906121ae565b5b5090506121d791906121db565b5090565b5b808211156121f45760008160009055506001016121dc565b5090565b600061220b61220684612fb7565b612f92565b90508281526020810184848401111561222357600080fd5b61222e84828561328d565b509392505050565b600081359050612245816138f5565b92915050565b60008151905061225a816138f5565b92915050565b60008083601f84011261227257600080fd5b8235905067ffffffffffffffff81111561228b57600080fd5b6020830191508360208202830111156122a357600080fd5b9250929050565b6000813590506122b98161390c565b92915050565b6000813590506122ce81613923565b92915050565b6000815190506122e381613923565b92915050565b600082601f8301126122fa57600080fd5b813561230a8482602086016121f8565b91505092915050565b60008083601f84011261232557600080fd5b8235905067ffffffffffffffff81111561233e57600080fd5b60208301915083600182028301111561235657600080fd5b9250929050565b60008151905061236c8161393a565b92915050565b60008135905061238181613951565b92915050565b60008151905061239681613951565b92915050565b6000602082840312156123ae57600080fd5b60006123bc84828501612236565b91505092915050565b600080604083850312156123d857600080fd5b60006123e685828601612236565b92505060206123f785828601612236565b9150509250929050565b60008060006060848603121561241657600080fd5b600061242486828701612236565b935050602061243586828701612236565b925050604061244686828701612372565b9150509250925092565b6000806000806080858703121561246657600080fd5b600061247487828801612236565b945050602061248587828801612236565b935050604061249687828801612372565b925050606085013567ffffffffffffffff8111156124b357600080fd5b6124bf878288016122e9565b91505092959194509250565b600080604083850312156124de57600080fd5b60006124ec85828601612236565b92505060206124fd858286016122aa565b9150509250929050565b6000806040838503121561251a57600080fd5b600061252885828601612236565b925050602061253985828601612372565b9150509250929050565b6000806020838503121561255657600080fd5b600083013567ffffffffffffffff81111561257057600080fd5b61257c85828601612260565b92509250509250929050565b60006020828403121561259a57600080fd5b60006125a8848285016122bf565b91505092915050565b6000602082840312156125c357600080fd5b60006125d1848285016122d4565b91505092915050565b600080600080604085870312156125f057600080fd5b600085013567ffffffffffffffff81111561260a57600080fd5b61261687828801612313565b9450945050602085013567ffffffffffffffff81111561263557600080fd5b61264187828801612313565b925092505092959194509250565b6000806040838503121561266257600080fd5b60006126708582860161235d565b92505060206126818582860161224b565b9150509250929050565b60006020828403121561269d57600080fd5b60006126ab84828501612372565b91505092915050565b6000602082840312156126c657600080fd5b60006126d484828501612387565b91505092915050565b600080604083850312156126f057600080fd5b60006126fe85828601612372565b925050602061270f85828601612372565b9150509250929050565b60006127258383612bde565b60208301905092915050565b600061273d8383612bed565b60208301905092915050565b612752816131fe565b82525050565b60006127638261301d565b61276d8185613063565b935061277883612fe8565b8060005b838110156127a95781516127908882612719565b975061279b83613049565b92505060018101905061277c565b5085935050505092915050565b60006127c182613028565b6127cb8185613074565b93506127d683612ff8565b8060005b838110156128075781516127ee8882612731565b97506127f983613056565b9250506001810190506127da565b5085935050505092915050565b61281d81613210565b82525050565b600061282e82613033565b6128388185613085565b935061284881856020860161329c565b61285181613437565b840191505092915050565b600061286782613033565b6128718185613096565b935061288181856020860161329c565b80840191505092915050565b6000815461289a816132cf565b6128a48186613096565b945060018216600081146128bf57600181146128d057612903565b60ff19831686528186019350612903565b6128d985613008565b60005b838110156128fb578154818901526001820191506020810190506128dc565b838801955050505b50505092915050565b60006129178261303e565b61292181856130a1565b935061293181856020860161329c565b61293a81613437565b840191505092915050565b6000612952600a836130a1565b915061295d82613448565b602082019050919050565b60006129756032836130a1565b915061298082613471565b604082019050919050565b60006129986026836130a1565b91506129a3826134c0565b604082019050919050565b60006129bb601c836130a1565b91506129c68261350f565b602082019050919050565b60006129de6024836130a1565b91506129e982613538565b604082019050919050565b6000612a016019836130a1565b9150612a0c82613587565b602082019050919050565b6000612a24600d836130a1565b9150612a2f826135b0565b602082019050919050565b6000612a47602c836130a1565b9150612a52826135d9565b604082019050919050565b6000612a6a6038836130a1565b9150612a7582613628565b604082019050919050565b6000612a8d602a836130a1565b9150612a9882613677565b604082019050919050565b6000612ab06029836130a1565b9150612abb826136c6565b604082019050919050565b6000612ad36020836130a1565b9150612ade82613715565b602082019050919050565b6000612af6602c836130a1565b9150612b018261373e565b604082019050919050565b6000612b196020836130a1565b9150612b248261378d565b602082019050919050565b6000612b3c6029836130a1565b9150612b47826137b6565b604082019050919050565b6000612b5f6021836130a1565b9150612b6a82613805565b604082019050919050565b6000612b826031836130a1565b9150612b8d82613854565b604082019050919050565b6000612ba56006836130a1565b9150612bb0826138a3565b602082019050919050565b6000612bc86010836130a1565b9150612bd3826138cc565b602082019050919050565b612be781613248565b82525050565b612bf681613276565b82525050565b612c0581613276565b82525050565b6000612c17828661288d565b9150612c23828561285c565b9150612c2f828461288d565b9150819050949350505050565b6000602082019050612c516000830184612749565b92915050565b6000608082019050612c6c6000830187612749565b612c796020830186612749565b612c866040830185612bfc565b8181036060830152612c988184612823565b905095945050505050565b60006040820190508181036000830152612cbd81856127b6565b90508181036020830152612cd18184612758565b90509392505050565b6000602082019050612cef6000830184612814565b92915050565b60006020820190508181036000830152612d0f818461290c565b905092915050565b60006020820190508181036000830152612d3081612945565b9050919050565b60006020820190508181036000830152612d5081612968565b9050919050565b60006020820190508181036000830152612d708161298b565b9050919050565b60006020820190508181036000830152612d90816129ae565b9050919050565b60006020820190508181036000830152612db0816129d1565b9050919050565b60006020820190508181036000830152612dd0816129f4565b9050919050565b60006020820190508181036000830152612df081612a17565b9050919050565b60006020820190508181036000830152612e1081612a3a565b9050919050565b60006020820190508181036000830152612e3081612a5d565b9050919050565b60006020820190508181036000830152612e5081612a80565b9050919050565b60006020820190508181036000830152612e7081612aa3565b9050919050565b60006020820190508181036000830152612e9081612ac6565b9050919050565b60006020820190508181036000830152612eb081612ae9565b9050919050565b60006020820190508181036000830152612ed081612b0c565b9050919050565b60006020820190508181036000830152612ef081612b2f565b9050919050565b60006020820190508181036000830152612f1081612b52565b9050919050565b60006020820190508181036000830152612f3081612b75565b9050919050565b60006020820190508181036000830152612f5081612b98565b9050919050565b60006020820190508181036000830152612f7081612bbb565b9050919050565b6000602082019050612f8c6000830184612bfc565b92915050565b6000612f9c612fad565b9050612fa88282613301565b919050565b6000604051905090565b600067ffffffffffffffff821115612fd257612fd1613408565b5b612fdb82613437565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006130bd82613276565b91506130c883613276565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130fd576130fc61337b565b5b828201905092915050565b600061311382613280565b915061311e83613280565b92508260ff038211156131345761313361337b565b5b828201905092915050565b600061314a82613276565b915061315583613276565b925082613165576131646133aa565b5b828204905092915050565b600061317b82613276565b915061318683613276565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131bf576131be61337b565b5b828202905092915050565b60006131d582613276565b91506131e083613276565b9250828210156131f3576131f261337b565b5b828203905092915050565b600061320982613256565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156132ba57808201518184015260208101905061329f565b838111156132c9576000848401525b50505050565b600060028204905060018216806132e757607f821691505b602082108114156132fb576132fa6133d9565b5b50919050565b61330a82613437565b810181811067ffffffffffffffff8211171561332957613328613408565b5b80604052505050565b600061333d82613276565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133705761336f61337b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6469646e2774206f776e00000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f646f65736e277420657869737400000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e7465640000000000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420737461727420494400000000000000000000000000000000600082015250565b6138fe816131fe565b811461390957600080fd5b50565b61391581613210565b811461392057600080fd5b50565b61392c8161321c565b811461393757600080fd5b50565b61394381613248565b811461394e57600080fd5b50565b61395a81613276565b811461396557600080fd5b5056fea2646970667358221220afb12c188a7a4c05dd3585ae3c1b458f497801521cc9e47e9d05d8e6eef3bf6264736f6c63430008040033

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

000000000000000000000000d6e382aa7a09fc4a09c2fb99cfce6a429985e65d

-----Decoded View---------------
Arg [0] : _doomsday (address): 0xd6e382aa7A09fc4A09C2fb99Cfce6A429985E65d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d6e382aa7a09fc4a09c2fb99cfce6a429985e65d


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.