ETH Price: $2,619.88 (-2.87%)
Gas: 0.88 Gwei

Contract

0xA77b7D93E79f1E6B4f77FaB29d9ef85733A3D44A
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Source155703972022-09-19 22:02:11872 days ago1663624931IN
0xA77b7D93...733A3D44A
0 ETH0.15476598.91827733
Set Source155703662022-09-19 21:55:59872 days ago1663624559IN
0xA77b7D93...733A3D44A
0 ETH0.177451689.18087378
Set Source155703292022-09-19 21:48:23872 days ago1663624103IN
0xA77b7D93...733A3D44A
0 ETH0.1662667310.38203545
Set Source155703082022-09-19 21:44:11872 days ago1663623851IN
0xA77b7D93...733A3D44A
0 ETH0.1552120713.28903043
Set Source155703072022-09-19 21:43:59872 days ago1663623839IN
0xA77b7D93...733A3D44A
0 ETH0.1399927111.98034417
Set Source155703042022-09-19 21:43:23872 days ago1663623803IN
0xA77b7D93...733A3D44A
0 ETH0.2628086511.5837969
Set Source155700432022-09-19 20:50:35872 days ago1663620635IN
0xA77b7D93...733A3D44A
0 ETH0.2607145216.37247818
Set Operator155699132022-09-19 20:24:35872 days ago1663619075IN
0xA77b7D93...733A3D44A
0 ETH0.0002801210
Set Source Hashe...155699132022-09-19 20:24:35872 days ago1663619075IN
0xA77b7D93...733A3D44A
0 ETH0.0024247710

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CapsulesTypeface

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 12 : CapsulesTypeface.sol
// SPDX-License-Identifier: GPL-3.0

/**
  @title Capsules Typeface

  @author peri

  @notice Capsules typeface stored on-chain using the TypefaceExpandable contract, allowing additional fonts to be added later.
 */

pragma solidity ^0.8.8;

import "./interfaces/ICapsuleToken.sol";
import "./TypefaceExpandable.sol";

contract CapsulesTypeface is TypefaceExpandable {
    /// Address of CapsuleToken contract
    ICapsuleToken public immutable capsuleToken;

    /// Mapping of style => weight => address that stored the font.
    mapping(string => mapping(uint256 => address)) private _patronOf;

    constructor(
        address _capsuleToken,
        address donationAddress,
        address operator
    ) TypefaceExpandable("Capsules", donationAddress, operator) {
        capsuleToken = ICapsuleToken(_capsuleToken);
    }

    /// @notice Returns the address of the patron that stored a font.
    /// @param font Font to check patron of.
    /// @return address Address of font patron.
    function patronOf(Font calldata font) external view returns (address) {
        return _patronOf[font.style][font.weight];
    }

    /// @notice Returns true if a unicode codepoint is supported by the Capsules typeface.
    /// @param cp Codepoint to check.
    /// @return ture True if supported.
    function supportsCodePoint(bytes3 cp) external pure returns (bool) {
        // Optimize gas by first checking outer bounds of byte ranges
        if (cp < 0x000020 || cp > 0x00ffe6) return false;

        return ((cp >= 0x000020 && cp <= 0x00007e) ||
            (cp >= 0x0000a0 && cp <= 0x0000a8) ||
            (cp >= 0x0000ab && cp <= 0x0000ac) ||
            (cp >= 0x0000af && cp <= 0x0000b1) ||
            cp == 0x0000b4 ||
            (cp >= 0x0000b6 && cp <= 0x0000b7) ||
            (cp >= 0x0000ba && cp <= 0x0000bb) ||
            (cp >= 0x0000bf && cp <= 0x0000c4) ||
            (cp >= 0x0000c6 && cp <= 0x0000cf) ||
            (cp >= 0x0000d1 && cp <= 0x0000d7) ||
            (cp >= 0x0000d9 && cp <= 0x0000dc) ||
            (cp >= 0x0000e0 && cp <= 0x0000e4) ||
            (cp >= 0x0000e6 && cp <= 0x0000ef) ||
            (cp >= 0x0000f1 && cp <= 0x0000fc) ||
            (cp >= 0x0000ff && cp <= 0x000101) ||
            (cp >= 0x000112 && cp <= 0x000113) ||
            (cp >= 0x000128 && cp <= 0x00012b) ||
            cp == 0x000131 ||
            (cp >= 0x00014c && cp <= 0x00014d) ||
            (cp >= 0x000168 && cp <= 0x00016b) ||
            cp == 0x000178 ||
            cp == 0x000192 ||
            cp == 0x000262 ||
            cp == 0x00026a ||
            cp == 0x000274 ||
            cp == 0x000280 ||
            cp == 0x00028f ||
            cp == 0x000299 ||
            cp == 0x00029c ||
            cp == 0x00029f ||
            (cp >= 0x0002c2 && cp <= 0x0002c3) ||
            cp == 0x0002c6 ||
            cp == 0x0002dc ||
            cp == 0x000394 ||
            cp == 0x00039e ||
            cp == 0x0003c0 ||
            cp == 0x000e3f ||
            (cp >= 0x001d00 && cp <= 0x001d01) ||
            cp == 0x001d05 ||
            cp == 0x001d07 ||
            (cp >= 0x001d0a && cp <= 0x001d0b) ||
            cp == 0x001d0d ||
            cp == 0x001d18 ||
            cp == 0x001d1b ||
            (cp >= 0x002013 && cp <= 0x002015) ||
            (cp >= 0x002017 && cp <= 0x00201a) ||
            (cp >= 0x00201c && cp <= 0x00201e) ||
            (cp >= 0x002020 && cp <= 0x002022) ||
            cp == 0x002026 ||
            cp == 0x002030 ||
            (cp >= 0x002032 && cp <= 0x002033) ||
            (cp >= 0x002039 && cp <= 0x00203a) ||
            cp == 0x00203c ||
            cp == 0x00203e ||
            cp == 0x002044 ||
            cp == 0x00204e ||
            (cp >= 0x002058 && cp <= 0x00205b) ||
            (cp >= 0x00205d && cp <= 0x00205e) ||
            (cp >= 0x0020a3 && cp <= 0x0020a4) ||
            (cp >= 0x0020a6 && cp <= 0x0020a9) ||
            (cp >= 0x0020ac && cp <= 0x0020ad) ||
            (cp >= 0x0020b2 && cp <= 0x0020b6) ||
            cp == 0x0020b8 ||
            cp == 0x0020ba ||
            (cp >= 0x0020bc && cp <= 0x0020bd) ||
            cp == 0x0020bf ||
            cp == 0x00211e ||
            cp == 0x002126 ||
            (cp >= 0x002190 && cp <= 0x002199) ||
            (cp >= 0x0021ba && cp <= 0x0021bb) ||
            cp == 0x002206 ||
            cp == 0x00220f ||
            (cp >= 0x002211 && cp <= 0x002214) ||
            cp == 0x00221a ||
            cp == 0x00221e ||
            cp == 0x00222b ||
            cp == 0x002238 ||
            cp == 0x002243 ||
            cp == 0x002248 ||
            (cp >= 0x002254 && cp <= 0x002255) ||
            cp == 0x002260 ||
            (cp >= 0x002264 && cp <= 0x002267) ||
            (cp >= 0x00229e && cp <= 0x0022a1) ||
            cp == 0x0022c8 ||
            (cp >= 0x002302 && cp <= 0x002304) ||
            cp == 0x002310 ||
            cp == 0x00231b ||
            cp == 0x0023cf ||
            (cp >= 0x0023e9 && cp <= 0x0023ea) ||
            (cp >= 0x0023ed && cp <= 0x0023ef) ||
            (cp >= 0x0023f8 && cp <= 0x0023fa) ||
            (cp >= 0x002506 && cp <= 0x002507) ||
            cp == 0x00250c ||
            (cp >= 0x00250f && cp <= 0x002510) ||
            (cp >= 0x002513 && cp <= 0x002514) ||
            (cp >= 0x002517 && cp <= 0x002518) ||
            (cp >= 0x00251b && cp <= 0x00251c) ||
            (cp >= 0x002523 && cp <= 0x002524) ||
            (cp >= 0x00252b && cp <= 0x00252c) ||
            (cp >= 0x002533 && cp <= 0x002534) ||
            (cp >= 0x00253b && cp <= 0x00253c) ||
            (cp >= 0x00254b && cp <= 0x00254f) ||
            (cp >= 0x00256d && cp <= 0x00257b) ||
            (cp >= 0x002580 && cp <= 0x002590) ||
            (cp >= 0x002594 && cp <= 0x002595) ||
            (cp >= 0x002599 && cp <= 0x0025a1) ||
            (cp >= 0x0025b0 && cp <= 0x0025b2) ||
            cp == 0x0025b6 ||
            cp == 0x0025bc ||
            cp == 0x0025c0 ||
            cp == 0x0025ca ||
            (cp >= 0x0025cf && cp <= 0x0025d3) ||
            (cp >= 0x0025d6 && cp <= 0x0025d7) ||
            (cp >= 0x0025e0 && cp <= 0x0025e5) ||
            (cp >= 0x0025e7 && cp <= 0x0025eb) ||
            (cp >= 0x0025f0 && cp <= 0x0025f3) ||
            (cp >= 0x0025f8 && cp <= 0x0025fa) ||
            (cp >= 0x0025ff && cp <= 0x002600) ||
            cp == 0x002610 ||
            cp == 0x002612 ||
            (cp >= 0x002630 && cp <= 0x002637) ||
            (cp >= 0x002639 && cp <= 0x00263a) ||
            cp == 0x00263c ||
            cp == 0x002665 ||
            (cp >= 0x002680 && cp <= 0x002685) ||
            (cp >= 0x00268a && cp <= 0x002691) ||
            cp == 0x0026a1 ||
            cp == 0x002713 ||
            cp == 0x002795 ||
            cp == 0x002797 ||
            (cp >= 0x0029d1 && cp <= 0x0029d5) ||
            cp == 0x0029fa ||
            cp == 0x002a25 ||
            (cp >= 0x002a2a && cp <= 0x002a2c) ||
            (cp >= 0x002a71 && cp <= 0x002a72) ||
            cp == 0x002a75 ||
            (cp >= 0x002a99 && cp <= 0x002a9a) ||
            (cp >= 0x002b05 && cp <= 0x002b0d) ||
            (cp >= 0x002b16 && cp <= 0x002b19) ||
            (cp >= 0x002b90 && cp <= 0x002b91) ||
            cp == 0x002b95 ||
            cp == 0x00a730 ||
            cp == 0x00a7af ||
            (cp >= 0x00e000 && cp <= 0x00e02c) ||
            (cp >= 0x00e02e && cp <= 0x00e032) ||
            cp == 0x00e069 ||
            (cp >= 0x00e420 && cp <= 0x00e421) ||
            cp == 0x00fe69 ||
            cp == 0x00ff04 ||
            (cp >= 0x00ffe0 && cp <= 0x00ffe1) ||
            (cp >= 0x00ffe5 && cp <= 0x00ffe6));
    }

    /// @dev Mint pure color Capsule token to sender when sender sets font source.
    function _afterSetSource(Font calldata font, bytes calldata)
        internal
        override(Typeface)
    {
        _patronOf[font.style][font.weight] = msg.sender;

        capsuleToken.mintPureColorForFont(msg.sender, font);
    }
}

File 2 of 12 : ICapsuleToken.sol
// SPDX-License-Identifier: GPL-3.0

/**
  @title ICapsuleToken

  @author peri

  @notice Interface for CapsuleToken contract
 */

pragma solidity ^0.8.8;

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

import "./ITypeface.sol";

struct Capsule {
    uint256 id;
    bytes3 color;
    Font font;
    bytes32[8] text;
    bool isPure;
}

interface ICapsuleToken {
    event AddValidRenderer(address renderer);
    event MintCapsule(
        uint256 indexed id,
        address indexed to,
        bytes3 indexed color,
        Font font,
        bytes32[8] text
    );
    event MintGift(address minter);
    event SetDefaultRenderer(address renderer);
    event SetFeeReceiver(address receiver);
    event SetMetadata(address metadata);
    event SetPureColors(bytes3[] colors);
    event SetRoyalty(uint256 royalty);
    event SetCapsuleFont(uint256 indexed id, Font font);
    event SetCapsuleRenderer(uint256 indexed id, address renderer);
    event SetCapsuleText(uint256 indexed id, bytes32[8] text);
    event SetContractURI(string contractURI);
    event SetGiftCount(address _address, uint256 count);
    event Withdraw(address to, uint256 amount);

    function capsuleOf(uint256 capsuleId)
        external
        view
        returns (Capsule memory);

    function isPureColor(bytes3 color) external view returns (bool);

    function colorOf(uint256 capsuleId) external view returns (bytes3);

    function textOf(uint256 capsuleId)
        external
        view
        returns (bytes32[8] memory);

    function fontOf(uint256 capsuleId) external view returns (Font memory);

    function svgOf(uint256 capsuleId) external view returns (string memory);

    function mint(
        bytes3 color,
        Font calldata font,
        bytes32[8] memory text
    ) external payable returns (uint256);

    function mintPureColorForFont(address to, Font calldata font)
        external
        returns (uint256);

    function mintAsOwner(
        address to,
        bytes3 color,
        Font calldata font,
        bytes32[8] calldata text
    ) external payable returns (uint256);

    function setGiftCounts(
        address[] calldata addresses,
        uint256[] calldata counts
    ) external;

    function setTextAndFont(
        uint256 capsuleId,
        bytes32[8] calldata text,
        Font calldata font
    ) external;

    function setText(uint256 capsuleId, bytes32[8] calldata text) external;

    function setFont(uint256 capsuleId, Font calldata font) external;

    function setRendererOf(uint256 capsuleId, address renderer) external;

    function setDefaultRenderer(address renderer) external;

    function addValidRenderer(address renderer) external;

    function burn(uint256 capsuleId) external;

    function isValidFontForRenderer(Font memory font, address renderer)
        external
        view
        returns (bool);

    function isValidColor(bytes3 color) external view returns (bool);

    function isValidCapsuleText(uint256 capsuleId) external view returns (bool);

    function isValidRenderer(address renderer) external view returns (bool);

    function contractURI() external view returns (string memory);

    function withdraw() external;

    function setFeeReceiver(address _feeReceiver) external;

    function setRoyalty(uint256 _royalty) external;

    function setContractURI(string calldata _contractURI) external;

    function pause() external;

    function unpause() external;
}

File 3 of 12 : TypefaceExpandable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Typeface.sol";
import "./interfaces/ITypefaceExpandable.sol";

/**
  @title TypefaceExpandable

  @author peri

  @notice TypefaceExpandable is an extension of the Typeface contract that allows an operator to add or modify font hashes after the contract has been deployed, as long as a source for the font hasn't been stored yet.
 */

abstract contract TypefaceExpandable is Typeface, ITypefaceExpandable {
    /// @notice Require that the sender is the operator address.
    modifier onlyOperator() {
        if (msg.sender != _operator) revert("TypefaceExpandable: Not operator");
        _;
    }

    /// @notice Require that all fonts have not been stored.
    modifier onlyUnstoredFonts(Font[] calldata fonts) {
        for (uint256 i; i < fonts.length; i++) {
            Font memory font = fonts[i];
            if (hasSource(font)) {
                revert("TypefaceExpandable: Source already exists");
            }
        }
        _;
    }

    /// Address with permission to add or modify font hashes, as long as no source has been stored for that font.
    address internal _operator;

    /// @notice Allows operator to set new font hashes.
    /// @dev Equal number of fonts and hashes must be provided.
    /// @param fonts Array of fonts to set hashes for.
    /// @param hashes Array of hashes to set for fonts.
    function setSourceHashes(Font[] calldata fonts, bytes32[] calldata hashes)
        external
        onlyOperator
        onlyUnstoredFonts(fonts)
    {
        _setSourceHashes(fonts, hashes);
    }

    /// @notice Returns operator of contract. Operator has permission to add or modify font hashes, as long as no source has been stored for that font.
    /// @return operator Operator address.
    function operator() external view returns (address) {
        return _operator;
    }

    /// @notice Allows operator to set new operator.
    /// @param __operator New operator address.
    function setOperator(address __operator) external onlyOperator {
        _setOperator(__operator);
    }

    constructor(
        string memory __name,
        address donationAddress,
        address __operator
    ) Typeface(__name, donationAddress) {
        _setOperator(__operator);
    }

    /// @dev See {IERC165-supportsInterface}.
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(Typeface)
        returns (bool)
    {
        return
            interfaceId == type(ITypefaceExpandable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function _setOperator(address __operator) internal {
        _operator = __operator;

        emit SetOperator(__operator);
    }
}

File 4 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 5 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

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

/**
  @title ITypeface

  @author peri

  @notice Interface for Typeface contract
 */

pragma solidity ^0.8.8;

struct Font {
    uint256 weight;
    string style;
}

interface ITypeface {
    /// @notice Emitted when the source is set for a font.
    /// @param font The font the source has been set for.
    event SetSource(Font font);

    /// @notice Emitted when the source hash is set for a font.
    /// @param font The font the source hash has been set for.
    /// @param sourceHash The source hash that was set.
    event SetSourceHash(Font font, bytes32 sourceHash);

    /// @notice Emitted when the donation address is set.
    /// @param donationAddress New donation address.
    event SetDonationAddress(address donationAddress);

    /// @notice Returns the typeface name.
    function name() external view returns (string memory);

    /// @notice Check if typeface includes a glyph for a specific character code point.
    /// @dev 3 bytes supports all possible unicodes.
    /// @param codePoint Character code point.
    /// @return true True if supported.
    function supportsCodePoint(bytes3 codePoint) external view returns (bool);

    /// @notice Return source data of Font.
    /// @param font Font to return source data for.
    /// @return source Source data of font.
    function sourceOf(Font memory font) external view returns (bytes memory);

    /// @notice Checks if source data has been stored for font.
    /// @param font Font to check if source data exists for.
    /// @return true True if source exists.
    function hasSource(Font memory font) external view returns (bool);

    /// @notice Stores source data for a font.
    /// @param font Font to store source data for.
    /// @param source Source data of font.
    function setSource(Font memory font, bytes memory source) external;

    /// @notice Sets a new donation address.
    /// @param donationAddress New donation address.
    function setDonationAddress(address donationAddress) external;

    /// @notice Returns donation address
    /// @return donationAddress Donation address.
    function donationAddress() external view returns (address);
}

File 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 8 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

File 10 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 11 of 12 : Typeface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./interfaces/ITypeface.sol";

/**
  @title Typeface

  @author peri

  @notice The Typeface contract allows storing and retrieving a "source", such as a base64-encoded file, for all fonts in a typeface.

  Sources may be large and require a high gas fee to store. To reduce gas costs while deploying a contract containing source data, or to avoid surpassing gas limits of the deploy transaction block, only a hash of each source is stored when the contract is deployed. This allows sources to be stored in later transactions, ensuring the hash of the source matches the hash already stored for that font.

  Once the Typeface contract has been deployed, source hashes can't be added or modified.

  Fonts are identified by the Font struct, which includes "style" and "weight" properties.
 */

abstract contract Typeface is ITypeface, ERC165 {
    modifier onlyDonationAddress() {
        if (msg.sender != _donationAddress) {
            revert("Typeface: Not donation address");
        }
        _;
    }

    /// @notice Mapping of style => weight => font source data as bytes.
    mapping(string => mapping(uint256 => bytes)) private _source;

    /// @notice Mapping of style => weight => keccack256 hash of font source data as bytes.
    mapping(string => mapping(uint256 => bytes32)) private _sourceHash;

    /// @notice Mapping of style => weight => true if font source has been stored.
    /// @dev This serves as a gas-efficient way to check if a font source has been stored without getting the entire source data.
    mapping(string => mapping(uint256 => bool)) private _hasSource;

    /// @notice Address to receive donations.
    address _donationAddress;

    /// @notice Typeface name
    string private _name;

    /// @notice Return typeface name.
    /// @return name Name of typeface
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /// @notice Return source bytes for font.
    /// @param font Font to check source of.
    /// @return source Font source data as bytes.
    function sourceOf(Font memory font)
        public
        view
        virtual
        returns (bytes memory)
    {
        return _source[font.style][font.weight];
    }

    /// @notice Return true if font source exists.
    /// @param font Font to check if source exists for.
    /// @return true True if font source exists.
    function hasSource(Font memory font) public view virtual returns (bool) {
        return _hasSource[font.style][font.weight];
    }

    /// @notice Return hash of source bytes for font.
    /// @param font Font to return source hash of.
    /// @return sourceHash Hash of source for font.
    function sourceHash(Font memory font)
        public
        view
        virtual
        returns (bytes32)
    {
        return _sourceHash[font.style][font.weight];
    }

    /// @notice Returns the address to receive donations.
    /// @return donationAddress The address to receive donations.
    function donationAddress() external view returns (address) {
        return _donationAddress;
    }

    /// @notice Allows the donation address to set a new donation address.
    /// @param __donationAddress New donation address.
    function setDonationAddress(address __donationAddress) external {
        _setDonationAddress(__donationAddress);
    }

    function _setDonationAddress(address __donationAddress) internal {
        _donationAddress = payable(__donationAddress);

        emit SetDonationAddress(__donationAddress);
    }

    /// @notice Sets source for Font.
    /// @dev The keccack256 hash of the source must equal the sourceHash of the font.
    /// @param font Font to set source for.
    /// @param source Font source as bytes.
    function setSource(Font calldata font, bytes calldata source) public {
        require(!hasSource(font), "Typeface: Source already exists");

        require(
            keccak256(source) == sourceHash(font),
            "Typeface: Invalid font"
        );

        _beforeSetSource(font, source);

        _source[font.style][font.weight] = source;
        _hasSource[font.style][font.weight] = true;

        emit SetSource(font);

        _afterSetSource(font, source);
    }

    /// @notice Sets hash of source data for each font in a list.
    /// @dev Length of fonts and hashes arrays must be equal. Each hash from hashes array will be set for the font with matching index in the fonts array.
    /// @param fonts Array of fonts to set hashes for.
    /// @param hashes Array of hashes to set for fonts.
    function _setSourceHashes(Font[] memory fonts, bytes32[] memory hashes)
        internal
    {
        require(
            fonts.length == hashes.length,
            "Typeface: Unequal number of fonts and hashes"
        );

        for (uint256 i; i < fonts.length; i++) {
            _sourceHash[fonts[i].style][fonts[i].weight] = hashes[i];

            emit SetSourceHash(fonts[i], hashes[i]);
        }
    }

    constructor(string memory __name, address __donationAddress) {
        _name = __name;
        _setDonationAddress(__donationAddress);
    }

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

    /// @notice Function called before setSource() is called.
    function _beforeSetSource(Font calldata font, bytes calldata src)
        internal
        virtual
    {}

    /// @notice Function called after setSource() is called.
    function _afterSetSource(Font calldata font, bytes calldata src)
        internal
        virtual
    {}
}

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

/**
  @title ITypeface

  @author peri

  @notice Interface for Typeface contract
 */

pragma solidity ^0.8.8;

import "./ITypeface.sol";

interface ITypefaceExpandable is ITypeface {
    event SetOperator(address operator);

    function operator() external view returns (address);

    function setSourceHashes(Font[] memory fonts, bytes32[] memory hashes)
        external;

    function setOperator(address operator) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_capsuleToken","type":"address"},{"internalType":"address","name":"donationAddress","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"donationAddress","type":"address"}],"name":"SetDonationAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"operator","type":"address"}],"name":"SetOperator","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"indexed":false,"internalType":"struct Font","name":"font","type":"tuple"}],"name":"SetSource","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"indexed":false,"internalType":"struct Font","name":"font","type":"tuple"},{"indexed":false,"internalType":"bytes32","name":"sourceHash","type":"bytes32"}],"name":"SetSourceHash","type":"event"},{"inputs":[],"name":"capsuleToken","outputs":[{"internalType":"contract ICapsuleToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font","name":"font","type":"tuple"}],"name":"hasSource","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font","name":"font","type":"tuple"}],"name":"patronOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__donationAddress","type":"address"}],"name":"setDonationAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font","name":"font","type":"tuple"},{"internalType":"bytes","name":"source","type":"bytes"}],"name":"setSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font[]","name":"fonts","type":"tuple[]"},{"internalType":"bytes32[]","name":"hashes","type":"bytes32[]"}],"name":"setSourceHashes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font","name":"font","type":"tuple"}],"name":"sourceHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"string","name":"style","type":"string"}],"internalType":"struct Font","name":"font","type":"tuple"}],"name":"sourceOf","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes3","name":"cp","type":"bytes3"}],"name":"supportsCodePoint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b50604051620044cf380380620044cf833981016040819052620000349162000208565b6040805180820190915260088082526743617073756c657360c01b6020830190815284918491849184916200006d916004919062000145565b506200007981620000a1565b5062000087905081620000f6565b5050506001600160a01b03909216608052506200028f9050565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f913954e16f0047d06c3d506f2890b1449d731c36f25348c8c959253e06e74744906020015b60405180910390a150565b600580546001600160a01b0319166001600160a01b0383169081179091556040519081527fdbebfba65bd6398fb722063efc10c99f624f9cd8ba657201056af918a676d5ee90602001620000eb565b828054620001539062000252565b90600052602060002090601f016020900481019282620001775760008555620001c2565b82601f106200019257805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c2578251825591602001919060010190620001a5565b50620001d0929150620001d4565b5090565b5b80821115620001d05760008155600101620001d5565b80516001600160a01b03811681146200020357600080fd5b919050565b6000806000606084860312156200021e57600080fd5b6200022984620001eb565b92506200023960208501620001eb565b91506200024960408501620001eb565b90509250925092565b600181811c908216806200026757607f821691505b602082108114156200028957634e487b7160e01b600052602260045260246000fd5b50919050565b60805161421d620002b26000396000818161014601526139a2015261421d6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80637f0c63951161008c578063b3ab15fb11610066578063b3ab15fb146101fe578063bf6519ad14610211578063ec034bed14610224578063f41135e91461023557600080fd5b80637f0c6395146101b75780638594770c146101ca578063ab1d575a146101dd57600080fd5b8063450e6f12116100c8578063450e6f121461014157806354f0baf914610180578063570ca735146101935780636f48e79b146101a457600080fd5b806301ffc9a7146100ef57806306f6f12b1461011757806306fdde031461012c575b600080fd5b6101026100fd366004613b7a565b610248565b60405190151581526020015b60405180910390f35b61012a610125366004613bf7565b61028c565b005b610134610407565b60405161010e9190613cbb565b6101687f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010e565b61012a61018e366004613ce6565b610499565b6005546001600160a01b0316610168565b61012a6101b2366004613d7d565b61063a565b6101026101c5366004613ebe565b610646565b6101686101d8366004613efb565b610684565b6101f06101eb366004613ebe565b6106d1565b60405190815260200161010e565b61012a61020c366004613d7d565b610712565b61013461021f366004613ebe565b610775565b6003546001600160a01b0316610168565b610102610243366004613f30565b610837565b60006001600160e01b031982167fe25143e500000000000000000000000000000000000000000000000000000000148061028657506102868261372e565b92915050565b6005546001600160a01b031633146102eb5760405162461bcd60e51b815260206004820181905260248201527f5479706566616365457870616e6461626c653a204e6f74206f70657261746f7260448201526064015b60405180910390fd5b838360005b818110156103b857600083838381811061030c5761030c613f5a565b905060200281019061031e9190613f70565b61032790613f90565b905061033281610646565b156103a55760405162461bcd60e51b815260206004820152602960248201527f5479706566616365457870616e6461626c653a20536f7572636520616c72656160448201527f647920657869737473000000000000000000000000000000000000000000000060648201526084016102e2565b50806103b081613f9c565b9150506102f0565b506103ff6103c68688613fc5565b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061379592505050565b505050505050565b60606004805461041690614049565b80601f016020809104026020016040519081016040528092919081815260200182805461044290614049565b801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b5050505050905090565b6104a56101c584613f90565b156104f25760405162461bcd60e51b815260206004820152601f60248201527f54797065666163653a20536f7572636520616c7265616479206578697374730060448201526064016102e2565b6104fe6101eb84613f90565b828260405161050e92919061407e565b6040518091039020146105635760405162461bcd60e51b815260206004820152601660248201527f54797065666163653a20496e76616c696420666f6e740000000000000000000060448201526064016102e2565b81816000610574602087018761408e565b60405161058292919061407e565b908152604080516020928190038301902087356000908152925290206105a9929091613ae1565b50600160026105bb602086018661408e565b6040516105c992919061407e565b90815260408051602092819003830181208735600090815293529120805460ff1916921515929092179091557ff1c430fd853d64a1d1e705eda72328b1254614ac85caa3c80d1a7b2e9d8c30f290610622908590614151565b60405180910390a161063583838361391c565b505050565b61064381613a24565b50565b60006002826020015160405161065c9190614164565b908152604080516020928190038301902093516000908152939091529091205460ff16919050565b60006006610695602084018461408e565b6040516106a392919061407e565b90815260408051602092819003830190209335600090815293909152909120546001600160a01b0316919050565b6000600182602001516040516106e79190614164565b9081526020016040518091039020600083600001518152602001908152602001600020549050919050565b6005546001600160a01b0316331461076c5760405162461bcd60e51b815260206004820181905260248201527f5479706566616365457870616e6461626c653a204e6f74206f70657261746f7260448201526064016102e2565b61064381613a86565b60606000826020015160405161078b9190614164565b9081526040805160209281900383019020845160009081529252902080546107b290614049565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90614049565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b50505050509050919050565b6000600160ed1b6001600160e81b0319831610806108635750617ff360e91b6001600160e81b03198316115b1561087057506000919050565b600160ed1b6001600160e81b03198316108015906108b657507d7e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061091c57507da000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061091c57507da800000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061098257507dab00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061098257507dac00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806109e857507daf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906109e857507db100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610a1a57507db400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80610a8057507db600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610a8057507db700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ae657507dba00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ae657507dbb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610b4c57507dbf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610b4c57507dc400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610bb257507dc600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610bb257507dcf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610c1857507dd100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610c1857507dd700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610c7e57507dd900000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610c7e57507ddc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ce457507de000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ce457507de400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610d4a57507de600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610d4a57507def00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610db057507df100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610db057507dfc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610e1757507dff00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610e1757507e010100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610e7f57507e011200000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610e7f57507e011300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ee757507e012800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ee757507e012b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610f1a57507e013100000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80610f8257507e014c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610f8257507e014d00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610fea57507e016800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610fea57507e016b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061101d57507e017800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061105057507e019200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061108357507e026200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806110b657507e026a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806110e957507e027400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061111c57507e028000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061114f57507e028f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061118257507e029900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806111b557507e029c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806111e857507e029f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061125057507e02c200000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061125057507e02c300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061128357507e02c600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806112b657507e02dc00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806112e957507e039400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061131c57507e039e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061134f57507e03c000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061138257507e0e3f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806113ea57507e1d0000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906113ea57507e1d0100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061141d57507e1d0500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061145057507e1d0700000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806114b857507e1d0a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906114b857507e1d0b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806114eb57507e1d0d00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061151e57507e1d1800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061155157507e1d1b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806115b957507e201300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906115b957507e201500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061162157507e201700000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061162157507e201a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061168957507e201c00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061168957507e201e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806116f157507e202000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906116f157507e202200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061172457507e202600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061175757507e203000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806117bf57507e203200000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906117bf57507e203300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061182757507e203900000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061182757507e203a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061185a57507e203c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061188d57507e203e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806118c057507e204400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806118f357507e204e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061195b57507e205800000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061195b57507e205b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806119c357507e205d00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906119c357507e205e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611a2b57507e20a300000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611a2b57507e20a400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611a9357507e20a600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611a9357507e20a900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611afb57507e20ac00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611afb57507e20ad00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611b6357507e20b200000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611b6357507e20b600000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611b9657507e20b800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611bc957507e20ba00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611c3157507e20bc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611c3157507e20bd00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611c6457507e20bf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611c9757507e211e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611cca57507e212600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611d3257507e219000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611d3257507e219900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611d9a57507e21ba00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611d9a57507e21bb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611dcd57507e220600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611e0057507e220f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611e6857507e221100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611e6857507e221400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611e9b57507e221a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611ece57507e221e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f0157507e222b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f3457507e223800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f6757507e224300000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f9a57507e224800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061200257507e225400000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061200257507e225500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061203557507e226000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061209d57507e226400000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061209d57507e226700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061210557507e229e00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061210557507e22a100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061213857507e22c800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806121a057507e230200000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906121a057507e230400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806121d357507e231000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061220657507e231b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061223957507e23cf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806122a157507e23e900000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906122a157507e23ea00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061230957507e23ed00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061230957507e23ef00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061237157507e23f800000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061237157507e23fa00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806123d957507e250600000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906123d957507e250700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061240c57507e250c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061247457507e250f00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061247457507e251000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806124dc57507e251300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906124dc57507e251400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061254457507e251700000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061254457507e251800000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806125ac57507e251b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906125ac57507e251c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061261457507e252300000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061261457507e252400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061267c57507e252b00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061267c57507e252c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806126e457507e253300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906126e457507e253400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061274c57507e253b00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061274c57507e253c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806127b457507e254b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906127b457507e254f00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061281c57507e256d00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061281c57507e257b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061288457507e258000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061288457507e259000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806128ec57507e259400000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906128ec57507e259500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061295457507e259900000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061295457507e25a100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806129bc57507e25b000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906129bc57507e25b200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806129ef57507e25b600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a2257507e25bc00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a5557507e25c000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a8857507e25ca00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612af057507e25cf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612af057507e25d300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612b5857507e25d600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612b5857507e25d700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612bc057507e25e000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612bc057507e25e500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612c2857507e25e700000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612c2857507e25eb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612c9057507e25f000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612c9057507e25f300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612cf857507e25f800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612cf857507e25fa00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612d6057507e25ff00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612d6057507e260000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612d9357507e261000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612dc657507e261200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612e2e57507e263000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612e2e57507e263700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612e9657507e263900000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612e9657507e263a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612ec957507e263c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612efc57507e266500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612f6457507e268000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612f6457507e268500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612fcc57507e268a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612fcc57507e269100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612fff57507e26a100000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061303257507e271300000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061306557507e279500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061309857507e279700000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061310057507e29d100000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061310057507e29d500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061313357507e29fa00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061316657507e2a2500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806131ce57507e2a2a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906131ce57507e2a2c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061323657507e2a7100000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061323657507e2a7200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061326957507e2a7500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806132d157507e2a9900000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906132d157507e2a9a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061333957507e2b0500000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061333957507e2b0d00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806133a157507e2b1600000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906133a157507e2b1900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061340957507e2b9000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061340957507e2b9100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061343c57507e2b9500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061346f57507ea73000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806134a257507ea7af00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061350a57507ee00000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061350a57507ee02c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061357257507ee02e00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061357257507ee03200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806135a557507ee06900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061360d57507ee42000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061360d57507ee42100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061364057507efe6900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061367357507eff0400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806136db57507effe000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906136db57507effe100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061028657507effe500000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906102865750617ff360e91b6001600160e81b03198316111592915050565b60006001600160e01b031982167fe53e875d00000000000000000000000000000000000000000000000000000000148061028657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610286565b805182511461380c5760405162461bcd60e51b815260206004820152602c60248201527f54797065666163653a20556e657175616c206e756d626572206f6620666f6e7460448201527f7320616e6420686173686573000000000000000000000000000000000000000060648201526084016102e2565b60005b82518110156106355781818151811061382a5761382a613f5a565b6020026020010151600184838151811061384657613846613f5a565b60200260200101516020015160405161385f9190614164565b9081526020016040518091039020600085848151811061388157613881613f5a565b6020026020010151600001518152602001908152602001600020819055507fd2f708b2e2e9144b63ef34354a725f63286d03fad7abc35f24cdf1567fb260428382815181106138d2576138d2613f5a565b60200260200101518383815181106138ec576138ec613f5a565b6020026020010151604051613902929190614176565b60405180910390a18061391481613f9c565b91505061380f565b33600661392c602086018661408e565b60405161393a92919061407e565b90815260408051602092819003830181208735600090815293529120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039384161790557f6e1ddb140000000000000000000000000000000000000000000000000000000081527f000000000000000000000000000000000000000000000000000000000000000090911690636e1ddb14906139db90339087906004016141ac565b6020604051808303816000875af11580156139fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1e91906141ce565b50505050565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f913954e16f0047d06c3d506f2890b1449d731c36f25348c8c959253e06e74744906020015b60405180910390a150565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fdbebfba65bd6398fb722063efc10c99f624f9cd8ba657201056af918a676d5ee90602001613a7b565b828054613aed90614049565b90600052602060002090601f016020900481019282613b0f5760008555613b55565b82601f10613b285782800160ff19823516178555613b55565b82800160010185558215613b55579182015b82811115613b55578235825591602001919060010190613b3a565b50613b61929150613b65565b5090565b5b80821115613b615760008155600101613b66565b600060208284031215613b8c57600080fd5b81356001600160e01b031981168114613ba457600080fd5b9392505050565b60008083601f840112613bbd57600080fd5b50813567ffffffffffffffff811115613bd557600080fd5b6020830191508360208260051b8501011115613bf057600080fd5b9250929050565b60008060008060408587031215613c0d57600080fd5b843567ffffffffffffffff80821115613c2557600080fd5b613c3188838901613bab565b90965094506020870135915080821115613c4a57600080fd5b50613c5787828801613bab565b95989497509550505050565b60005b83811015613c7e578181015183820152602001613c66565b83811115613a1e5750506000910152565b60008151808452613ca7816020860160208601613c63565b601f01601f19169290920160200192915050565b602081526000613ba46020830184613c8f565b600060408284031215613ce057600080fd5b50919050565b600080600060408486031215613cfb57600080fd5b833567ffffffffffffffff80821115613d1357600080fd5b613d1f87838801613cce565b94506020860135915080821115613d3557600080fd5b818601915086601f830112613d4957600080fd5b813581811115613d5857600080fd5b876020828501011115613d6a57600080fd5b6020830194508093505050509250925092565b600060208284031215613d8f57600080fd5b81356001600160a01b0381168114613ba457600080fd5b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715613ddf57613ddf613da6565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613e0e57613e0e613da6565b604052919050565b600060408284031215613e2857600080fd5b613e30613dbc565b90508135815260208083013567ffffffffffffffff80821115613e5257600080fd5b818501915085601f830112613e6657600080fd5b813581811115613e7857613e78613da6565b613e8a601f8201601f19168501613de5565b91508082528684828501011115613ea057600080fd5b80848401858401376000908201840152918301919091525092915050565b600060208284031215613ed057600080fd5b813567ffffffffffffffff811115613ee757600080fd5b613ef384828501613e16565b949350505050565b600060208284031215613f0d57600080fd5b813567ffffffffffffffff811115613f2457600080fd5b613ef384828501613cce565b600060208284031215613f4257600080fd5b81356001600160e81b031981168114613ba457600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e19833603018112613f8657600080fd5b9190910192915050565b60006102863683613e16565b6000600019821415613fbe57634e487b7160e01b600052601160045260246000fd5b5060010190565b600067ffffffffffffffff80841115613fe057613fe0613da6565b8360051b6020613ff1818301613de5565b86815291850191818101903684111561400957600080fd5b865b8481101561403d578035868111156140235760008081fd5b61402f36828b01613e16565b84525091830191830161400b565b50979650505050505050565b600181811c9082168061405d57607f821691505b60208210811415613ce057634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e198436030181126140a557600080fd5b83018035915067ffffffffffffffff8211156140c057600080fd5b602001915036819003821315613bf057600080fd5b8035825260006020820135601e198336030181126140f257600080fd5b8201803567ffffffffffffffff81111561410b57600080fd5b80360384131561411a57600080fd5b60406020860152806040860152806020830160608701376000606082870101526060601f19601f8301168601019250505092915050565b602081526000613ba460208301846140d5565b60008251613f86818460208701613c63565b6040815282516040820152600060208401516040606084015261419c6080840182613c8f565b9150508260208301529392505050565b6001600160a01b0383168152604060208201526000613ef360408301846140d5565b6000602082840312156141e057600080fd5b505191905056fea26469706673582212207e1ae0ec6ace90e74362d1f1f20106ffdf1a9c56809984d47544e1bd5bdc49c664736f6c634300080c0033000000000000000000000000abf3e9f15a4529bf1769eab968250c9243a8e7c100000000000000000000000063a2368f4b509438ca90186cb1c15156713d5834000000000000000000000000e04b8c63d0a00618d82b86e037f367b18e00a078

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80637f0c63951161008c578063b3ab15fb11610066578063b3ab15fb146101fe578063bf6519ad14610211578063ec034bed14610224578063f41135e91461023557600080fd5b80637f0c6395146101b75780638594770c146101ca578063ab1d575a146101dd57600080fd5b8063450e6f12116100c8578063450e6f121461014157806354f0baf914610180578063570ca735146101935780636f48e79b146101a457600080fd5b806301ffc9a7146100ef57806306f6f12b1461011757806306fdde031461012c575b600080fd5b6101026100fd366004613b7a565b610248565b60405190151581526020015b60405180910390f35b61012a610125366004613bf7565b61028c565b005b610134610407565b60405161010e9190613cbb565b6101687f000000000000000000000000abf3e9f15a4529bf1769eab968250c9243a8e7c181565b6040516001600160a01b03909116815260200161010e565b61012a61018e366004613ce6565b610499565b6005546001600160a01b0316610168565b61012a6101b2366004613d7d565b61063a565b6101026101c5366004613ebe565b610646565b6101686101d8366004613efb565b610684565b6101f06101eb366004613ebe565b6106d1565b60405190815260200161010e565b61012a61020c366004613d7d565b610712565b61013461021f366004613ebe565b610775565b6003546001600160a01b0316610168565b610102610243366004613f30565b610837565b60006001600160e01b031982167fe25143e500000000000000000000000000000000000000000000000000000000148061028657506102868261372e565b92915050565b6005546001600160a01b031633146102eb5760405162461bcd60e51b815260206004820181905260248201527f5479706566616365457870616e6461626c653a204e6f74206f70657261746f7260448201526064015b60405180910390fd5b838360005b818110156103b857600083838381811061030c5761030c613f5a565b905060200281019061031e9190613f70565b61032790613f90565b905061033281610646565b156103a55760405162461bcd60e51b815260206004820152602960248201527f5479706566616365457870616e6461626c653a20536f7572636520616c72656160448201527f647920657869737473000000000000000000000000000000000000000000000060648201526084016102e2565b50806103b081613f9c565b9150506102f0565b506103ff6103c68688613fc5565b85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061379592505050565b505050505050565b60606004805461041690614049565b80601f016020809104026020016040519081016040528092919081815260200182805461044290614049565b801561048f5780601f106104645761010080835404028352916020019161048f565b820191906000526020600020905b81548152906001019060200180831161047257829003601f168201915b5050505050905090565b6104a56101c584613f90565b156104f25760405162461bcd60e51b815260206004820152601f60248201527f54797065666163653a20536f7572636520616c7265616479206578697374730060448201526064016102e2565b6104fe6101eb84613f90565b828260405161050e92919061407e565b6040518091039020146105635760405162461bcd60e51b815260206004820152601660248201527f54797065666163653a20496e76616c696420666f6e740000000000000000000060448201526064016102e2565b81816000610574602087018761408e565b60405161058292919061407e565b908152604080516020928190038301902087356000908152925290206105a9929091613ae1565b50600160026105bb602086018661408e565b6040516105c992919061407e565b90815260408051602092819003830181208735600090815293529120805460ff1916921515929092179091557ff1c430fd853d64a1d1e705eda72328b1254614ac85caa3c80d1a7b2e9d8c30f290610622908590614151565b60405180910390a161063583838361391c565b505050565b61064381613a24565b50565b60006002826020015160405161065c9190614164565b908152604080516020928190038301902093516000908152939091529091205460ff16919050565b60006006610695602084018461408e565b6040516106a392919061407e565b90815260408051602092819003830190209335600090815293909152909120546001600160a01b0316919050565b6000600182602001516040516106e79190614164565b9081526020016040518091039020600083600001518152602001908152602001600020549050919050565b6005546001600160a01b0316331461076c5760405162461bcd60e51b815260206004820181905260248201527f5479706566616365457870616e6461626c653a204e6f74206f70657261746f7260448201526064016102e2565b61064381613a86565b60606000826020015160405161078b9190614164565b9081526040805160209281900383019020845160009081529252902080546107b290614049565b80601f01602080910402602001604051908101604052809291908181526020018280546107de90614049565b801561082b5780601f106108005761010080835404028352916020019161082b565b820191906000526020600020905b81548152906001019060200180831161080e57829003601f168201915b50505050509050919050565b6000600160ed1b6001600160e81b0319831610806108635750617ff360e91b6001600160e81b03198316115b1561087057506000919050565b600160ed1b6001600160e81b03198316108015906108b657507d7e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061091c57507da000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061091c57507da800000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061098257507dab00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061098257507dac00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806109e857507daf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906109e857507db100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610a1a57507db400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80610a8057507db600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610a8057507db700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ae657507dba00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ae657507dbb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610b4c57507dbf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610b4c57507dc400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610bb257507dc600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610bb257507dcf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610c1857507dd100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610c1857507dd700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610c7e57507dd900000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610c7e57507ddc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ce457507de000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ce457507de400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610d4a57507de600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610d4a57507def00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610db057507df100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610db057507dfc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610e1757507dff00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610e1757507e010100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610e7f57507e011200000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610e7f57507e011300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610ee757507e012800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610ee757507e012b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610f1a57507e013100000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80610f8257507e014c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610f8257507e014d00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80610fea57507e016800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590610fea57507e016b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061101d57507e017800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061105057507e019200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061108357507e026200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806110b657507e026a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806110e957507e027400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061111c57507e028000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061114f57507e028f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061118257507e029900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806111b557507e029c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806111e857507e029f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061125057507e02c200000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061125057507e02c300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061128357507e02c600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806112b657507e02dc00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806112e957507e039400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061131c57507e039e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061134f57507e03c000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061138257507e0e3f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806113ea57507e1d0000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906113ea57507e1d0100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061141d57507e1d0500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061145057507e1d0700000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806114b857507e1d0a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906114b857507e1d0b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806114eb57507e1d0d00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061151e57507e1d1800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061155157507e1d1b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806115b957507e201300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906115b957507e201500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061162157507e201700000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061162157507e201a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061168957507e201c00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061168957507e201e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806116f157507e202000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906116f157507e202200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061172457507e202600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061175757507e203000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806117bf57507e203200000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906117bf57507e203300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061182757507e203900000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061182757507e203a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061185a57507e203c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061188d57507e203e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806118c057507e204400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806118f357507e204e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061195b57507e205800000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061195b57507e205b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806119c357507e205d00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906119c357507e205e00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611a2b57507e20a300000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611a2b57507e20a400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611a9357507e20a600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611a9357507e20a900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611afb57507e20ac00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611afb57507e20ad00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611b6357507e20b200000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611b6357507e20b600000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611b9657507e20b800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611bc957507e20ba00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611c3157507e20bc00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611c3157507e20bd00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611c6457507e20bf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611c9757507e211e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611cca57507e212600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611d3257507e219000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611d3257507e219900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611d9a57507e21ba00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611d9a57507e21bb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611dcd57507e220600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611e0057507e220f00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611e6857507e221100000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590611e6857507e221400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80611e9b57507e221a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611ece57507e221e00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f0157507e222b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f3457507e223800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f6757507e224300000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80611f9a57507e224800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061200257507e225400000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061200257507e225500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061203557507e226000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061209d57507e226400000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061209d57507e226700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061210557507e229e00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061210557507e22a100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061213857507e22c800000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806121a057507e230200000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906121a057507e230400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806121d357507e231000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061220657507e231b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061223957507e23cf00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806122a157507e23e900000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906122a157507e23ea00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061230957507e23ed00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061230957507e23ef00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061237157507e23f800000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061237157507e23fa00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806123d957507e250600000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906123d957507e250700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061240c57507e250c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061247457507e250f00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061247457507e251000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806124dc57507e251300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906124dc57507e251400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061254457507e251700000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061254457507e251800000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806125ac57507e251b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906125ac57507e251c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061261457507e252300000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061261457507e252400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061267c57507e252b00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061267c57507e252c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806126e457507e253300000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906126e457507e253400000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061274c57507e253b00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061274c57507e253c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806127b457507e254b00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906127b457507e254f00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061281c57507e256d00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061281c57507e257b00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061288457507e258000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061288457507e259000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806128ec57507e259400000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906128ec57507e259500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061295457507e259900000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061295457507e25a100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806129bc57507e25b000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906129bc57507e25b200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806129ef57507e25b600000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a2257507e25bc00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a5557507e25c000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612a8857507e25ca00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612af057507e25cf00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612af057507e25d300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612b5857507e25d600000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612b5857507e25d700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612bc057507e25e000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612bc057507e25e500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612c2857507e25e700000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612c2857507e25eb00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612c9057507e25f000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612c9057507e25f300000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612cf857507e25f800000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612cf857507e25fa00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612d6057507e25ff00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612d6057507e260000000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612d9357507e261000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612dc657507e261200000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612e2e57507e263000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612e2e57507e263700000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612e9657507e263900000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612e9657507e263a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612ec957507e263c00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612efc57507e266500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b80612f6457507e268000000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612f6457507e268500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612fcc57507e268a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831610801590612fcc57507e269100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b80612fff57507e26a100000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061303257507e271300000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061306557507e279500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061309857507e279700000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061310057507e29d100000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061310057507e29d500000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061313357507e29fa00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061316657507e2a2500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806131ce57507e2a2a00000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906131ce57507e2a2c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061323657507e2a7100000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061323657507e2a7200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061326957507e2a7500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806132d157507e2a9900000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906132d157507e2a9a00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061333957507e2b0500000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061333957507e2b0d00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806133a157507e2b1600000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906133a157507e2b1900000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061340957507e2b9000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061340957507e2b9100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061343c57507e2b9500000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061346f57507ea73000000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806134a257507ea7af00000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061350a57507ee00000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061350a57507ee02c00000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061357257507ee02e00000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061357257507ee03200000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b806135a557507ee06900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061360d57507ee42000000000000000000000000000000000000000000000000000000000006001600160e81b031983161080159061360d57507ee42100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061364057507efe6900000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b8061367357507eff0400000000000000000000000000000000000000000000000000000000006001600160e81b03198316145b806136db57507effe000000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906136db57507effe100000000000000000000000000000000000000000000000000000000006001600160e81b0319831611155b8061028657507effe500000000000000000000000000000000000000000000000000000000006001600160e81b03198316108015906102865750617ff360e91b6001600160e81b03198316111592915050565b60006001600160e01b031982167fe53e875d00000000000000000000000000000000000000000000000000000000148061028657507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610286565b805182511461380c5760405162461bcd60e51b815260206004820152602c60248201527f54797065666163653a20556e657175616c206e756d626572206f6620666f6e7460448201527f7320616e6420686173686573000000000000000000000000000000000000000060648201526084016102e2565b60005b82518110156106355781818151811061382a5761382a613f5a565b6020026020010151600184838151811061384657613846613f5a565b60200260200101516020015160405161385f9190614164565b9081526020016040518091039020600085848151811061388157613881613f5a565b6020026020010151600001518152602001908152602001600020819055507fd2f708b2e2e9144b63ef34354a725f63286d03fad7abc35f24cdf1567fb260428382815181106138d2576138d2613f5a565b60200260200101518383815181106138ec576138ec613f5a565b6020026020010151604051613902929190614176565b60405180910390a18061391481613f9c565b91505061380f565b33600661392c602086018661408e565b60405161393a92919061407e565b90815260408051602092819003830181208735600090815293529120805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039384161790557f6e1ddb140000000000000000000000000000000000000000000000000000000081527f000000000000000000000000abf3e9f15a4529bf1769eab968250c9243a8e7c190911690636e1ddb14906139db90339087906004016141ac565b6020604051808303816000875af11580156139fa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1e91906141ce565b50505050565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f913954e16f0047d06c3d506f2890b1449d731c36f25348c8c959253e06e74744906020015b60405180910390a150565b6005805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fdbebfba65bd6398fb722063efc10c99f624f9cd8ba657201056af918a676d5ee90602001613a7b565b828054613aed90614049565b90600052602060002090601f016020900481019282613b0f5760008555613b55565b82601f10613b285782800160ff19823516178555613b55565b82800160010185558215613b55579182015b82811115613b55578235825591602001919060010190613b3a565b50613b61929150613b65565b5090565b5b80821115613b615760008155600101613b66565b600060208284031215613b8c57600080fd5b81356001600160e01b031981168114613ba457600080fd5b9392505050565b60008083601f840112613bbd57600080fd5b50813567ffffffffffffffff811115613bd557600080fd5b6020830191508360208260051b8501011115613bf057600080fd5b9250929050565b60008060008060408587031215613c0d57600080fd5b843567ffffffffffffffff80821115613c2557600080fd5b613c3188838901613bab565b90965094506020870135915080821115613c4a57600080fd5b50613c5787828801613bab565b95989497509550505050565b60005b83811015613c7e578181015183820152602001613c66565b83811115613a1e5750506000910152565b60008151808452613ca7816020860160208601613c63565b601f01601f19169290920160200192915050565b602081526000613ba46020830184613c8f565b600060408284031215613ce057600080fd5b50919050565b600080600060408486031215613cfb57600080fd5b833567ffffffffffffffff80821115613d1357600080fd5b613d1f87838801613cce565b94506020860135915080821115613d3557600080fd5b818601915086601f830112613d4957600080fd5b813581811115613d5857600080fd5b876020828501011115613d6a57600080fd5b6020830194508093505050509250925092565b600060208284031215613d8f57600080fd5b81356001600160a01b0381168114613ba457600080fd5b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff81118282101715613ddf57613ddf613da6565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613e0e57613e0e613da6565b604052919050565b600060408284031215613e2857600080fd5b613e30613dbc565b90508135815260208083013567ffffffffffffffff80821115613e5257600080fd5b818501915085601f830112613e6657600080fd5b813581811115613e7857613e78613da6565b613e8a601f8201601f19168501613de5565b91508082528684828501011115613ea057600080fd5b80848401858401376000908201840152918301919091525092915050565b600060208284031215613ed057600080fd5b813567ffffffffffffffff811115613ee757600080fd5b613ef384828501613e16565b949350505050565b600060208284031215613f0d57600080fd5b813567ffffffffffffffff811115613f2457600080fd5b613ef384828501613cce565b600060208284031215613f4257600080fd5b81356001600160e81b031981168114613ba457600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235603e19833603018112613f8657600080fd5b9190910192915050565b60006102863683613e16565b6000600019821415613fbe57634e487b7160e01b600052601160045260246000fd5b5060010190565b600067ffffffffffffffff80841115613fe057613fe0613da6565b8360051b6020613ff1818301613de5565b86815291850191818101903684111561400957600080fd5b865b8481101561403d578035868111156140235760008081fd5b61402f36828b01613e16565b84525091830191830161400b565b50979650505050505050565b600181811c9082168061405d57607f821691505b60208210811415613ce057634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e198436030181126140a557600080fd5b83018035915067ffffffffffffffff8211156140c057600080fd5b602001915036819003821315613bf057600080fd5b8035825260006020820135601e198336030181126140f257600080fd5b8201803567ffffffffffffffff81111561410b57600080fd5b80360384131561411a57600080fd5b60406020860152806040860152806020830160608701376000606082870101526060601f19601f8301168601019250505092915050565b602081526000613ba460208301846140d5565b60008251613f86818460208701613c63565b6040815282516040820152600060208401516040606084015261419c6080840182613c8f565b9150508260208301529392505050565b6001600160a01b0383168152604060208201526000613ef360408301846140d5565b6000602082840312156141e057600080fd5b505191905056fea26469706673582212207e1ae0ec6ace90e74362d1f1f20106ffdf1a9c56809984d47544e1bd5bdc49c664736f6c634300080c0033

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

000000000000000000000000abf3e9f15a4529bf1769eab968250c9243a8e7c100000000000000000000000063a2368f4b509438ca90186cb1c15156713d5834000000000000000000000000e04b8c63d0a00618d82b86e037f367b18e00a078

-----Decoded View---------------
Arg [0] : _capsuleToken (address): 0xABF3e9F15a4529bf1769EAB968250c9243A8E7C1
Arg [1] : donationAddress (address): 0x63A2368F4B509438ca90186cb1C15156713D5834
Arg [2] : operator (address): 0xE04b8c63d0a00618d82B86E037F367B18E00a078

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000abf3e9f15a4529bf1769eab968250c9243a8e7c1
Arg [1] : 00000000000000000000000063a2368f4b509438ca90186cb1c15156713d5834
Arg [2] : 000000000000000000000000e04b8c63d0a00618d82b86e037f367b18e00a078


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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