ETH Price: $2,641.79 (+0.04%)

Token

HOPIUM (HOPIUM)
 

Overview

Max Total Supply

8,865.900915969158913302 HOPIUM

Holders

63

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2 HOPIUM

Value
$0.00
0xADB637a329d951D8c8c4E86FD8d4ca308C9d6892
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HopiumCoinContract

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-07
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when burned totalSupply, transferring tokens
     */
    event burnTotalSupply(uint256 value);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/////////////////////////////////////////////////////////////////////////////////////////////////////////////

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract HopiumCoinContract is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _threshold;
    uint256 private _burnRate;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor () public {
        _name = "HOPIUM";
        _symbol = "HOPIUM";
        _decimals = 18;
        _burnRate = 69; // burnRate when transfering tokens should be divided by 1000
        _threshold = 2420E18;
        
        // distribute tokens
        _mint(0x03E1Fe6B95BEFBC99835C6313d01d3075a81BbE2, 45E18); 
        _mint(0x05BaD2724b1415a8B6B3000a30E37d9C637D7340, 45E18);
        _mint(0x076C48C9Ef4C50D84C689526d086bA56270e406c, 45E18);
        _mint(0x08103E240B6bE73e29319d9B9DBe9268e32a0b02, 1430E16);        
        _mint(0x09b9A7f1335042fAf506ab5c89ce91436B39B46a, 856E16);
        _mint(0x0aA3ae4aB9854903482dA1F78F1052D6BcA64BbE, 3669E16);        
        _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18);
        _mint(0x0c6d54839de473480Fe24eC82e4Da65267C6be46, 45E18);        
        _mint(0x0C780749E6d0bE3C64c130450B20C40b843fbEC4, 45E18);
        _mint(0x10C223dFB77F49d7Cf95Cc044C2A2216b1253211, 45E18);        
        _mint(0x167bB613c031cB387c997c82c02B106939Fd8F07, 45E18);
        _mint(0x16D972690c16EA81CBcef3682d9B46D0Ac0a1FE7, 5747E16);        
        _mint(0x1aa0b915BEeA961e6c09121Bb5f9ED98a10b7658, 45E18);
        _mint(0x1D40FC9456A1E6F13f69615FEe1cbcBe604B9167, 1788E16);        
        _mint(0x1EBB9eE2b0cd222877e4BcA8a56d4444EfC5e28B, 7966E16);
        _mint(0x2041Ea0efD9702b1Ca13C0FCa2899Ed31B9167dB, 45E18);        
        _mint(0x25052177670Dc586FCEF615b35150CE0f0bf88a4, 5467E16);
        _mint(0x26c6f93451BCf317a1FC24393fE760cF695525b3, 1320E16);        
        _mint(0x27fa60d49C82379373a76A858742D72D154e96B2, 45E18);
        _mint(0x298c80FCaB43fA9eE0a1EF8E6abF86374e0498d9, 45E18);        
        _mint(0x29D62e1d0975bb024B2C40Ef6C878bF809245e71, 104E16);
        _mint(0x2B3352e94EB8bCC46391d89ec7A8C30D352027f8, 3462E16);        
        _mint(0x2f442C704c3D4Bd081531175Ce05C2C88603ce09, 45E18);
        _mint(0x3111413a49f62be9b9547620E660780a1AC9bae1, 45E18);        
        _mint(0x3293A92372Ae49390a97e1bB3B185EbC30e68870, 20E18);
        _mint(0x3481fBA85c1b227Cd401d4ef2e2390f505738B08, 45E18);        
        _mint(0x34b7339C3D515b4a82eE58a6C6884A1f2B429872, 45E18);
        _mint(0x34Ba737f5195e354047a68f1eb42073AF41b153F, 348E18);        
        _mint(0x3aDbDCe09f514283FEf7b4dEd6514f2b4A08853a, 1340E16);
        _mint(0x3Cc729E9CD6521E3e97CfFc17a60005f1e78e5Ac, 479E17);        
        _mint(0x4342e82B94b128fcCBe1bDDF454e51336cC5fde2, 45E18);
        _mint(0x436b72cd2bc5812B8D9e6e5bD450613f7E2cB70b, 496E16);        
        _mint(0x43B4D03a347dAE1753197Cac0FB15333126B271F, 638E16);
        _mint(0x444FE3e5A882D24166Fd64c9598FEcc1702D47e7, 17E18);        
        _mint(0x4Ac70381F04eA4A14EE3Dc8142d19D22A116CA52, 755E16);
        _mint(0x4B424674eA391E5Ee53925DBAbD73027D06699A9, 2499E16);        
        _mint(0x4E7e1C73C116649c1C684acB6ec98bAc4FbB4ef6, 5973E16);
        _mint(0x4f70eD6b19cc733D5C45A40250227C0c020Ab3cD, 494E16);        
        _mint(0x5193542bDEdb3D029c7b399Dbe3b9E40D97A72d3, 2066E16);
        _mint(0x51Ed1e5560a6f60de3b1388e52e93BF9A2BE293A, 823E16);        
        _mint(0x529771885770a756eaAb634F68B61495687D3156, 280E16);
        _mint(0x53848cd0F32680E0B253a4164a5E0c552d27Ce36, 574E16);        
        _mint(0x5b6136F5C4e2D1b57A2C08527316bFD079F78837, 766E16);
        _mint(0x5c43F73f8E453220Fc946166c2D63f5266fCa9Ff, 167E16);        
        _mint(0x5e627786B83397BECCe5Ed74FEB825fed3ad3676, 1068E16);
        _mint(0x6464C890f20BCB6BB54cB762E9c12F1e3e380d46, 1E18);        
        _mint(0x652df8A98005416a7e32eea90a86e02a0F33F92e, 45E18);
        _mint(0x6536E7a30d5a912E422e464fC790fec22C86ef14, 2871E16);        
        _mint(0x662F6ef2092c126b6EE0Da44e6B863f30971880d, 45E18);
        _mint(0x6986f4FD0290bd948411c15EcC3B0745d83c62F4, 958E16);        
        _mint(0x6eFB598D2FfDA3AEF73Ee71a3aeEBaCD6762eE35, 719E16);
        _mint(0x7914254AD6b6c6dBcbDcC4c964Ecda52DCe588a7, 45E18);        
        _mint(0x7db6BB068FD59721E856e32166d2F417B4C8543A, 3061E16);
        _mint(0x7e29D5D22F727381358B6B10b6828094CFa93702, 3551E16);        
        _mint(0x7e319b0140091625786c4Bedd74dAa68df243c82, 45E18);
        _mint(0x7eB24d86E62BA34134fE5ffaE09bbdcaD7Aff010, 810E16);        
        _mint(0x88Eb97E5ECbf1c5b4ecA19aCF659d4724392eD86, 45E18);
        _mint(0x8B2784921F4935aD19F59273962A824f2550ccA7, 421E16);        
        _mint(0x8eC686860fe3196667E878ed1D5497EB7fd35872, 23E18);
        _mint(0x8F18fc10277A2d0DdE935A40386fFE30B9A5BC17, 45E18);        
        _mint(0x907b4128FF43eD92b14b8145a01e8f9bC6890E3E, 45E18);
        _mint(0x9325901B103A5AeCC699b087fa9D8F4596C27e9E, 3548E16);        
        _mint(0x945f48ab557d96d8ed9be43Ca15e9a9497ACa25b, 1609E16);
        _mint(0x946a58054fadF84018CA798BDDAD14EBbA0A042D, 1362E16);        
        _mint(0x9725548D0aa23320F1004F573086D1F4cba0804c, 300E18);
        _mint(0x99685f834B99b3c6F3e910c8454eC64101f02296, 45E18);        
        _mint(0xa4BD82608192EDdF2A587215085786D1630085E8, 25E18);
        
        _mint(0xAB00Bf9544f10EF2cF7e8C24E845ae6B62dcd413, 45E18);        
        _mint(0xac25C07464c0A53ebA6450c945f62dD66Cf5c1A7, 45E18);
        _mint(0xADB637a329d951D8c8c4E86FD8d4ca308C9d6892, 2E18);          
        _mint(0xb1776C152080228214c2E84e39A93311fF3c03C1, 45E18);
        _mint(0xB4Cf7d78Ee8b63C73D7E2a8e7556528cD402FEBA, 4085E16);    
        _mint(0xB8B0c4B8877171bfE2D1380bb021c27A274cBB9d, 192E16);          
        _mint(0xBa03EcA6b692532648c4da21840fB9Af578147A2, 5754E16);
        _mint(0xbb257625458a12374daf2AD0c91d5A215732F206, 45E18);    
        _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 10E18);          
        _mint(0xC0Bc8226527038F95d0b02b3Fa7Cfd0D2F344968, 45E18);
        _mint(0xc346D86B69ab3F3f8415b87493E75179FC4997B5, 471E18);  
        _mint(0xC419528eDA383691e1aA13C381D977343CB9E5D0, 3093E17);          
        _mint(0xc76bf7e1a02a7fe636F1698ba5F4e28e88E3Af3c, 45E18);
        _mint(0xcb794D53530BEE50ba48C539fbc8C5689Ffae34F, 45E18);    
        _mint(0xd00c8e3A99aE3C87657ed12005598855DC59f433, 45E18);          
        _mint(0xd03A083589edC2aCcf09593951dCf000475cc9f2, 45E18);
        _mint(0xd62a38Bd99376013D485214CC968322C20A6cC40, 45E18);
        _mint(0xD86e5a51a1f062c534cd9A7B9c978b16c40A802A, 45E18);          
        _mint(0xd92F8e487bb5a0b6d06Bc59e793cDf9740cdF019, 969E16);
        _mint(0xDA2B7416aCcb991a6391f34341ebe8735E17Ea0e, 45E18);    
        _mint(0xDDD890078d116325aEB2a4fA42ED7a0Dd4C1f1Ab, 819E16);          
        _mint(0xdF1cb2e9B48C830154CE6030FFc5E2ce7fD6c328, 45E18);
        _mint(0xDFA7C075D408D7BFfBe8691c025Ca33271b2eCCc, 45E18);    
        _mint(0xE13C6dC69B7ff1A7BA08A9dC2DD2Ac219A34133E, 1E16);          
        _mint(0xe3960cCF27aD7AB88999E645b14939a01C88C5b7, 672E16);
        _mint(0xE58Ea0ceD4417f0551Fb82ddF4F6477072DFb430, 45E18);    
        _mint(0xe63ceB167c42AB666270594057d7006D9D145eD5, 3434E16);          
        _mint(0xe8e749a426A030D291b96886AEFf644B4ccea67B, 45E18);
        _mint(0xE94D448083dFd5FEafb629Ff1d546aE2BD189783, 168E17);

        _mint(0xE9919D66314255A97d9F53e70Bf28075E65535B4, 45E18);          
        _mint(0xeA5DcA8cAc9c12Df3AB5908A106c15ff024CB44F, 118E17);
        _mint(0xea90c80638843767d680040DceCfa4c3ab1573a7, 913E16);
        _mint(0xEAB8712536dc87359B63f101c404cf79983dB97E, 2802E16);          
        _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18);
        _mint(0xEfF529448A3969c043C8D46CE65E468e9Db58349, 678E16);
        _mint(0xf0F0fC23cda483D7f7CA11B9cecE8Af20BF0Bd20, 4335E16);          
        _mint(0xf1a72A1B1571402e1071BFBfbBa481a50Fb65885, 45E18);
        _mint(0xf422c173264dCd512E3CEE0DB4AcB568707C0b8D, 45E18);
        _mint(0xf5f737C6B321126723BF0afe38818ac46411b5D9, 45E18);          
        _mint(0xF874a182b8Cbf5BA2d6F65A21BC9e8368C8C5B07, 45E18);
        _mint(0xf916D5D0310BFCD0D9B8c43D0a29070670D825f9, 45E18);
        _mint(0xfAcb29bE46ccA69Dcb40806eCf2E4C0Bb300ba73, 45E18);          
        _mint(0xFdc91e7fD18E08DF7FF183d976F1ba195Ae29860, 995E16);
        
        _mint(0x7071f8D9bF33E469744d8C6BCc596f5937f5a43F, 3564E18);
        
        _mint(0x0B11FB8E5072A0C48cf90cDbcFc117776a73605D, 45E18);          
        _mint(0xbC17e8Ee00939111E5c74E17f205Dc2805298ff9, 45E18);
        _mint(0x5558647B57C6BE0Cd4a08fe2725965f1d9237AE7, 90E18);
        _mint(0x96693870AAf7608D5D41AE41d839becF781e22b0, 90E18);          
        _mint(0x99ee03Aef7a668b7dA6c9e6A33E0CC4a413617C8, 90E18);
        _mint(0x9Aa91482E4D774aeB685b0A87629217257e3ad65, 90E18);
        _mint(0xbccea8a2e82cc2A0f89a4EE559c7d7e1de11eb8e, 45E18);          
        _mint(0xDDFB4C1841d57C9aCAe1dC1D1c8C1EAecc1568FC, 45E18);
        _mint(0xe24C2133714B735f7dFf541d4Fb9a101C9aBcb40, 45E18);
        _mint(0x8F6485F44c56E9a8f496e1589D27Bc8256233E0D, 90E18);          
        _mint(0x9b0726e95e72eB6f305b472828b88D2d2bDD41C7, 45E18);
        _mint(0x5e336019A05BCF2403430aD0bd76186F43d65F8f, 45E18);
        _mint(0x8D1CE473bb171A9b2Cf2285626f7FB552320ef4D, 90E18);          
        _mint(0x9aD70D7aA72Fca9DBeDed92e125526B505fB9E59, 45E18);
        _mint(0x1c41984b9572C54207C4b9D212A815EF9e2eE9a9, 45E18);
        _mint(0xb5ac8804acdd56905c83CA4Ed752788155E2296e, 45E18);
        _mint(0xEf7d508fCFB61187D8d8A48cC6CB187722633E2D, 45E18);
        _mint(0xCc2e32ca9BEea92E4Bbd5777A30D1fB922CfA0F6, 45E18);
        _mint(0xB163870edc9d1a1681F6c88b68fca770A23fB484, 90E18);
        _mint(0x94f490Cc1e2F47393676B5518cc5e29785DcE5CA, 90E18);
        _mint(0xC0a0ADD83f96f455f726D2734f2A87616810c04B, 45E18);
        _mint(0x40feBfC8cC40712937021d117a5fD299C44DD09D, 45E18);
        _mint(0xc7861b59e2193424AfC83a83bD65c8B5216c7EB0, 45E18);
        _mint(0xEF572FbBdB552A00bdc2a3E3Bc9306df9E9e169d, 45E18);
        _mint(0x17BD48111d066870FABBbF341E1f844feA705822, 90E18);
        _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18);
        _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18);
        _mint(0xac6C371aD7015D1653CAda1B39824849884824D4, 45E18);
        _mint(0x957982B268A15ad3Fe3a4f45DaF74BD730EA8522, 90E18);
        _mint(0xbACf9C6afbF0377467679746fac0BC82Ebc55c13, 90E18);
        _mint(0x374de73Bb1C65dA4Ea256EAFdcD5671747bEa22b, 45E18);          
        _mint(0xb6eC0d0172BC4Cff8fF669b543e03c2c8B64Fc5E, 45E18);
        _mint(0x4Ca0201f99b59fdE76b8Df81c2dF83B356d4e02E, 45E18);
        _mint(0xd41c0982bc3fC6dfE763B044808126529c4513c6, 81E18);
        _mint(0x47262B32A23B902A5083B3be5e6A270A71bE83E0, 45E18);
        _mint(0x97D3F96c89eEF4De83c336b8715f78F45CA32411, 45E18);
        _mint(0xCB98923e740db68A341C5C30f375A34352272321, 45E18);
        _mint(0xC0A564ae0BfBFB5c0d2027559669a785916387a6, 45E18);
        _mint(0xD1FDB36024ACa892DAa711fc97a0373Bf918AC7E, 90E18);
        _mint(0x164d53A734F68f2832721c0F1ca859c062C0909F, 45E18);
        _mint(0xF4314E597fC3B53d5bEf1D5362D327c00388A64F, 45E18);
        _mint(0x83A9B9cF068C4F6a47BbD372C5E915350DFc88F7, 45E18);
        _mint(0xC86cea81d3c320086cE20eFdEc2e65d039136451, 90E18);
        _mint(0xB2C480B570d5d85099DdB62f5Bdbf8294eEb7Bc4, 54E18);
        _mint(0x6C0aC58A28E14Aa72Eb4BA1B5c40f3b82b73DA01, 90E18);
        _mint(0x035000529CffE9f04DB8E81B7A53807E63EeaC12, 90E18);
        _mint(0x759878ffA1a043064F7b1a46869F7360D0e1bEd0, 45E18);
        _mint(0x3151335A0f4Dd51fc553c39d3003AcBb59568f09, 72E18);
        _mint(0x1E46Fc7c886aAcfB46d774d2281C0a64747Fd50a, 45E18);
        _mint(0x9CF3D7E809D4DB6B97281e0092603Ed93D84998F, 45E18);
        _mint(0xDF219a91C6e6eb0506b5d658b0ebB99Aa978195c, 675E17);
        _mint(0x452Eacc327d4B9764A54E031A33C0D7a4b290746, 90E18);
        _mint(0x7222659adc246fd757B411d34E786F27E644708c, 45E18);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 burnAmount = _getBurnAmount(amount);
        _burnTotalSupply(burnAmount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount.sub(burnAmount));
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev reducing the total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burnTotalSupply(uint256 amount) internal virtual {
        _totalSupply = _totalSupply.sub(amount);
        emit burnTotalSupply(amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Get the burnAmount when transfering tokens.
     */
    function _getBurnAmount(uint256 amount) internal view virtual returns (uint256) {
        if (_totalSupply<=_threshold) {
            return 0;
        }
        return amount.mul(_burnRate).div(1000);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnTotalSupply","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f484f5049554d0000000000000000000000000000000000000000000000000000815250600390805190602001906200005f92919062002132565b506040518060400160405280600681526020017f484f5049554d000000000000000000000000000000000000000000000000000081525060049080519060200190620000ad92919062002132565b506012600560006101000a81548160ff021916908360ff16021790555060456007819055506883303f1a4a5d500000600681905550620001117303e1fe6b95befbc99835c6313d01d3075a81bbe2680270801d946c94000062001edf60201b60201c565b620001407305bad2724b1415a8b6b3000a30e37d9c637d7340680270801d946c94000062001edf60201b60201c565b6200016f73076c48c9ef4c50d84c689526d086ba56270e406c680270801d946c94000062001edf60201b60201c565b6200019d7308103e240b6be73e29319d9b9dbe9268e32a0b0267c673ce3c4016000062001edf60201b60201c565b620001cb7309b9a7f1335042faf506ab5c89ce91436b39b46a6776cb3aa5ad58000062001edf60201b60201c565b620001fa730aa3ae4ab9854903482da1f78f1052d6bca64bbe6801fd2d109ba915000062001edf60201b60201c565b62000229730b11fb8e5072a0c48cf90cdbcfc117776a73605d680270801d946c94000062001edf60201b60201c565b62000258730c6d54839de473480fe24ec82e4da65267c6be46680270801d946c94000062001edf60201b60201c565b62000287730c780749e6d0be3c64c130450b20c40b843fbec4680270801d946c94000062001edf60201b60201c565b620002b67310c223dfb77f49d7cf95cc044c2a2216b1253211680270801d946c94000062001edf60201b60201c565b620002e573167bb613c031cb387c997c82c02b106939fd8f07680270801d946c94000062001edf60201b60201c565b620003147316d972690c16ea81cbcef3682d9b46d0ac0a1fe768031d8e7482c9b3000062001edf60201b60201c565b62000343731aa0b915beea961e6c09121bb5f9ed98a10b7658680270801d946c94000062001edf60201b60201c565b62000371731d40fc9456a1e6f13f69615fee1cbcbe604b916767f822854487fc000062001edf60201b60201c565b620003a0731ebb9ee2b0cd222877e4bca8a56d4444efc5e28b680451812bf1779e000062001edf60201b60201c565b620003cf732041ea0efd9702b1ca13c0fca2899ed31b9167db680270801d946c94000062001edf60201b60201c565b620003fe7325052177670dc586fcef615b35150ce0f0bf88a46802f6b2db588e9b000062001edf60201b60201c565b6200042c7326c6f93451bcf317a1fc24393fe760cf695525b367b72fd2103b28000062001edf60201b60201c565b6200045b7327fa60d49c82379373a76a858742d72d154e96b2680270801d946c94000062001edf60201b60201c565b6200048a73298c80fcab43fa9ee0a1ef8e6abf86374e0498d9680270801d946c94000062001edf60201b60201c565b620004b87329d62e1d0975bb024b2c40ef6c878bf809245e71670e6ed27d6668000062001edf60201b60201c565b620004e7732b3352e94eb8bcc46391d89ec7a8c30d352027f86801e072f2934c06000062001edf60201b60201c565b62000516732f442c704c3d4bd081531175ce05c2c88603ce09680270801d946c94000062001edf60201b60201c565b62000545733111413a49f62be9b9547620e660780a1ac9bae1680270801d946c94000062001edf60201b60201c565b62000574733293a92372ae49390a97e1bb3b185ebc30e688706801158e460913d0000062001edf60201b60201c565b620005a3733481fba85c1b227cd401d4ef2e2390f505738b08680270801d946c94000062001edf60201b60201c565b620005d27334b7339c3d515b4a82ee58a6c6884a1f2b429872680270801d946c94000062001edf60201b60201c565b620006017334ba737f5195e354047a68f1eb42073af41b153f6812dd785c378bf0000062001edf60201b60201c565b6200062f733adbdce09f514283fef7b4ded6514f2b4a08853a67b9f65d00f63c000062001edf60201b60201c565b6200065e733cc729e9cd6521e3e97cffc17a60005f1e78e5ac680298befc370536000062001edf60201b60201c565b6200068d734342e82b94b128fccbe1bddf454e51336cc5fde2680270801d946c94000062001edf60201b60201c565b620006bb73436b72cd2bc5812b8d9e6e5bd450613f7e2cb70b6744d575b885f0000062001edf60201b60201c565b620006e97343b4d03a347dae1753197cac0fb15333126b271f67588a503282fe000062001edf60201b60201c565b6200071773444fe3e5a882d24166fd64c9598fecc1702d47e767ebec21ee1da4000062001edf60201b60201c565b62000745734ac70381f04ea4a14ee3dc8142d19d22a116ca526768c6fcff9633000062001edf60201b60201c565b62000774734b424674ea391e5ee53925dbabd73027d06699a968015ace5098e903000062001edf60201b60201c565b620007a3734e7e1c73c116649c1c684acb6ec98bac4fbb4ef668033ceb96897215000062001edf60201b60201c565b620007d1734f70ed6b19cc733d5c45a40250227c0c020ab3cd67448e67d3a66e000062001edf60201b60201c565b62000800735193542bdedb3d029c7b399dbe3b9e40d97a72d368011eb71089e392000062001edf60201b60201c565b6200082e7351ed1e5560a6f60de3b1388e52e93bf9a2be293a677236d5654577000062001edf60201b60201c565b6200085c73529771885770a756eaab634f68b61495687d31566726db992a3b18000062001edf60201b60201c565b6200088a7353848cd0f32680e0b253a4164a5e0c552d27ce36674fa8939692be000062001edf60201b60201c565b620008b8735b6136f5c4e2d1b57a2c08527316bfd079f78837676a4dc96a637e000062001edf60201b60201c565b620008e6735c43f73f8e453220fc946166c2d63f5266fca9ff67172d0826e6e7000062001edf60201b60201c565b62000914735e627786b83397becce5ed74feb825fed3ad3676679436fb6a392c000062001edf60201b60201c565b62000942736464c890f20bcb6bb54cb762e9c12f1e3e380d46670de0b6b3a764000062001edf60201b60201c565b6200097173652df8a98005416a7e32eea90a86e02a0f33f92e680270801d946c94000062001edf60201b60201c565b620009a0736536e7a30d5a912e422e464fc790fec22c86ef1468018e6e68e34d77000062001edf60201b60201c565b620009cf73662f6ef2092c126b6ee0da44e6b863f30971880d680270801d946c94000062001edf60201b60201c565b620009fd736986f4fd0290bd948411c15ecc3b0745d83c62f46784f2ff3e343e000062001edf60201b60201c565b62000a2b736efb598d2ffda3aef73ee71a3aeebacd6762ee356763c802e7df0f000062001edf60201b60201c565b62000a5a737914254ad6b6c6dbcbdcc4c964ecda52dce588a7680270801d946c94000062001edf60201b60201c565b62000a89737db6bb068fd59721e856e32166d2f417b4c8543a6801a8cc90d23eb5000062001edf60201b60201c565b62000ab8737e29d5d22f727381358b6b10b6828094cfa937026801ecccdcdc261f000062001edf60201b60201c565b62000ae7737e319b0140091625786c4bedd74daa68df243c82680270801d946c94000062001edf60201b60201c565b62000b15737eb24d86e62ba34134fe5ffae09bbdcad7aff010677068fb1598aa000062001edf60201b60201c565b62000b447388eb97e5ecbf1c5b4eca19acf659d4724392ed86680270801d946c94000062001edf60201b60201c565b62000b72738b2784921f4935ad19f59273962a824f2550cca7673a6cecb1c865000062001edf60201b60201c565b62000ba1738ec686860fe3196667e878ed1d5497eb7fd3587268013f306a2409fc000062001edf60201b60201c565b62000bd0738f18fc10277a2d0dde935a40386ffe30b9a5bc17680270801d946c94000062001edf60201b60201c565b62000bff73907b4128ff43ed92b14b8145a01e8f9bc6890e3e680270801d946c94000062001edf60201b60201c565b62000c2e739325901b103a5aecc699b087fa9d8f4596c27e9e6801ec624804d6dc000062001edf60201b60201c565b62000c5c73945f48ab557d96d8ed9be43ca15e9a9497aca25b67df4b29c06409000062001edf60201b60201c565b62000c8a73946a58054fadf84018ca798bddad14ebba0a042d67bd03f5d690d2000062001edf60201b60201c565b62000cb9739725548d0aa23320f1004f573086d1f4cba0804c681043561a882930000062001edf60201b60201c565b62000ce87399685f834b99b3c6f3e910c8454ec64101f02296680270801d946c94000062001edf60201b60201c565b62000d1773a4bd82608192eddf2a587215085786d1630085e868015af1d78b58c4000062001edf60201b60201c565b62000d4673ab00bf9544f10ef2cf7e8c24e845ae6b62dcd413680270801d946c94000062001edf60201b60201c565b62000d7573ac25c07464c0a53eba6450c945f62dd66cf5c1a7680270801d946c94000062001edf60201b60201c565b62000da373adb637a329d951d8c8c4e86fd8d4ca308c9d6892671bc16d674ec8000062001edf60201b60201c565b62000dd273b1776c152080228214c2e84e39a93311ff3c03c1680270801d946c94000062001edf60201b60201c565b62000e0173b4cf7d78ee8b63c73d7e2a8e7556528cd402feba680236e85a9142b5000062001edf60201b60201c565b62000e2f73b8b0c4b8877171bfe2d1380bb021c27a274cbb9d671aa535d3d0c0000062001edf60201b60201c565b62000e5e73ba03eca6b692532648c4da21840fb9af578147a268031e872523d7fa000062001edf60201b60201c565b62000e8d73bb257625458a12374daf2ad0c91d5a215732f206680270801d946c94000062001edf60201b60201c565b62000ebb73bc17e8ee00939111e5c74e17f205dc2805298ff9678ac7230489e8000062001edf60201b60201c565b62000eea73c0bc8226527038f95d0b02b3fa7cfd0d2f344968680270801d946c94000062001edf60201b60201c565b62000f1973c346d86b69ab3f3f8415b87493e75179fc4997b5681988702488f8fc000062001edf60201b60201c565b62000f4873c419528eda383691e1aa13c381d977343cb9e5d06810c46657422452000062001edf60201b60201c565b62000f7773c76bf7e1a02a7fe636f1698ba5f4e28e88e3af3c680270801d946c94000062001edf60201b60201c565b62000fa673cb794d53530bee50ba48c539fbc8c5689ffae34f680270801d946c94000062001edf60201b60201c565b62000fd573d00c8e3a99ae3c87657ed12005598855dc59f433680270801d946c94000062001edf60201b60201c565b6200100473d03a083589edc2accf09593951dcf000475cc9f2680270801d946c94000062001edf60201b60201c565b6200103373d62a38bd99376013d485214cc968322c20a6cc40680270801d946c94000062001edf60201b60201c565b6200106273d86e5a51a1f062c534cd9a7b9c978b16c40a802a680270801d946c94000062001edf60201b60201c565b6200109073d92f8e487bb5a0b6d06bc59e793cdf9740cdf019678679cba90189000062001edf60201b60201c565b620010bf73da2b7416accb991a6391f34341ebe8735e17ea0e680270801d946c94000062001edf60201b60201c565b620010ed73ddd890078d116325aeb2a4fa42ed7a0dd4c1f1ab6771a8b99b8673000062001edf60201b60201c565b6200111c73df1cb2e9b48c830154ce6030ffc5e2ce7fd6c328680270801d946c94000062001edf60201b60201c565b6200114b73dfa7c075d408d7bffbe8691c025ca33271b2eccc680270801d946c94000062001edf60201b60201c565b6200117873e13c6dc69b7ff1a7ba08a9dc2dd2ac219a34133e662386f26fc1000062001edf60201b60201c565b620011a673e3960ccf27ad7ab88999e645b14939a01c88c5b7675d423c655aa0000062001edf60201b60201c565b620011d573e58ea0ced4417f0551fb82ddf4f6477072dfb430680270801d946c94000062001edf60201b60201c565b6200120473e63ceb167c42ab666270594057d7006d9d145ed56801dc90300f12ea000062001edf60201b60201c565b6200123373e8e749a426a030d291b96886aeff644b4ccea67b680270801d946c94000062001edf60201b60201c565b6200126173e94d448083dfd5feafb629ff1d546ae2bd18978367e92596fd6290000062001edf60201b60201c565b6200129073e9919d66314255a97d9f53e70bf28075e65535b4680270801d946c94000062001edf60201b60201c565b620012be73ea5dca8cac9c12df3ab5908a106c15ff024cb44f67a3c2057b1d9c000062001edf60201b60201c565b620012ec73ea90c80638843767d680040dcecfa4c3ab1573a7677eb446a08f51000062001edf60201b60201c565b6200131b73eab8712536dc87359b63f101c404cf79983db97e680184db098b2e72000062001edf60201b60201c565b6200134a73ef572fbbdb552a00bdc2a3e3bc9306df9e9e169d680270801d946c94000062001edf60201b60201c565b6200137873eff529448a3969c043c8d46ce65e468e9db58349675e176613f926000062001edf60201b60201c565b620013a773f0f0fc23cda483d7f7ca11b9cece8af20bf0bd206802599a2352652f000062001edf60201b60201c565b620013d673f1a72a1b1571402e1071bfbfbba481a50fb65885680270801d946c94000062001edf60201b60201c565b6200140573f422c173264dcd512e3cee0db4acb568707c0b8d680270801d946c94000062001edf60201b60201c565b6200143473f5f737c6b321126723bf0afe38818ac46411b5d9680270801d946c94000062001edf60201b60201c565b6200146373f874a182b8cbf5ba2d6f65a21bc9e8368c8c5b07680270801d946c94000062001edf60201b60201c565b6200149273f916d5d0310bfcd0d9b8c43d0a29070670d825f9680270801d946c94000062001edf60201b60201c565b620014c173facb29be46cca69dcb40806ecf2e4c0bb300ba73680270801d946c94000062001edf60201b60201c565b620014ef73fdc91e7fd18e08df7ff183d976f1ba195ae29860678a1580485b23000062001edf60201b60201c565b6200151e737071f8d9bf33e469744d8c6bcc596f5937f5a43f68c1346f8d1e6430000062001edf60201b60201c565b6200154d730b11fb8e5072a0c48cf90cdbcfc117776a73605d680270801d946c94000062001edf60201b60201c565b6200157c73bc17e8ee00939111e5c74e17f205dc2805298ff9680270801d946c94000062001edf60201b60201c565b620015ab735558647b57c6be0cd4a08fe2725965f1d9237ae76804e1003b28d928000062001edf60201b60201c565b620015da7396693870aaf7608d5d41ae41d839becf781e22b06804e1003b28d928000062001edf60201b60201c565b620016097399ee03aef7a668b7da6c9e6a33e0cc4a413617c86804e1003b28d928000062001edf60201b60201c565b62001638739aa91482e4d774aeb685b0a87629217257e3ad656804e1003b28d928000062001edf60201b60201c565b6200166773bccea8a2e82cc2a0f89a4ee559c7d7e1de11eb8e680270801d946c94000062001edf60201b60201c565b6200169673ddfb4c1841d57c9acae1dc1d1c8c1eaecc1568fc680270801d946c94000062001edf60201b60201c565b620016c573e24c2133714b735f7dff541d4fb9a101c9abcb40680270801d946c94000062001edf60201b60201c565b620016f4738f6485f44c56e9a8f496e1589d27bc8256233e0d6804e1003b28d928000062001edf60201b60201c565b62001723739b0726e95e72eb6f305b472828b88d2d2bdd41c7680270801d946c94000062001edf60201b60201c565b62001752735e336019a05bcf2403430ad0bd76186f43d65f8f680270801d946c94000062001edf60201b60201c565b62001781738d1ce473bb171a9b2cf2285626f7fb552320ef4d6804e1003b28d928000062001edf60201b60201c565b620017b0739ad70d7aa72fca9dbeded92e125526b505fb9e59680270801d946c94000062001edf60201b60201c565b620017df731c41984b9572c54207c4b9d212a815ef9e2ee9a9680270801d946c94000062001edf60201b60201c565b6200180e73b5ac8804acdd56905c83ca4ed752788155e2296e680270801d946c94000062001edf60201b60201c565b6200183d73ef7d508fcfb61187d8d8a48cc6cb187722633e2d680270801d946c94000062001edf60201b60201c565b6200186c73cc2e32ca9beea92e4bbd5777a30d1fb922cfa0f6680270801d946c94000062001edf60201b60201c565b6200189b73b163870edc9d1a1681f6c88b68fca770a23fb4846804e1003b28d928000062001edf60201b60201c565b620018ca7394f490cc1e2f47393676b5518cc5e29785dce5ca6804e1003b28d928000062001edf60201b60201c565b620018f973c0a0add83f96f455f726d2734f2a87616810c04b680270801d946c94000062001edf60201b60201c565b620019287340febfc8cc40712937021d117a5fd299c44dd09d680270801d946c94000062001edf60201b60201c565b6200195773c7861b59e2193424afc83a83bd65c8b5216c7eb0680270801d946c94000062001edf60201b60201c565b6200198673ef572fbbdb552a00bdc2a3e3bc9306df9e9e169d680270801d946c94000062001edf60201b60201c565b620019b57317bd48111d066870fabbbf341e1f844fea7058226804e1003b28d928000062001edf60201b60201c565b620019e473ac6c371ad7015d1653cada1b39824849884824d4680270801d946c94000062001edf60201b60201c565b62001a1373957982b268a15ad3fe3a4f45daf74bd730ea85226804e1003b28d928000062001edf60201b60201c565b62001a4273ac6c371ad7015d1653cada1b39824849884824d4680270801d946c94000062001edf60201b60201c565b62001a7173957982b268a15ad3fe3a4f45daf74bd730ea85226804e1003b28d928000062001edf60201b60201c565b62001aa073bacf9c6afbf0377467679746fac0bc82ebc55c136804e1003b28d928000062001edf60201b60201c565b62001acf73374de73bb1c65da4ea256eafdcd5671747bea22b680270801d946c94000062001edf60201b60201c565b62001afe73b6ec0d0172bc4cff8ff669b543e03c2c8b64fc5e680270801d946c94000062001edf60201b60201c565b62001b2d734ca0201f99b59fde76b8df81c2df83b356d4e02e680270801d946c94000062001edf60201b60201c565b62001b5c73d41c0982bc3fc6dfe763b044808126529c4513c668046419ced7f6a4000062001edf60201b60201c565b62001b8b7347262b32a23b902a5083b3be5e6a270a71be83e0680270801d946c94000062001edf60201b60201c565b62001bba7397d3f96c89eef4de83c336b8715f78f45ca32411680270801d946c94000062001edf60201b60201c565b62001be973cb98923e740db68a341c5c30f375a34352272321680270801d946c94000062001edf60201b60201c565b62001c1873c0a564ae0bfbfb5c0d2027559669a785916387a6680270801d946c94000062001edf60201b60201c565b62001c4773d1fdb36024aca892daa711fc97a0373bf918ac7e6804e1003b28d928000062001edf60201b60201c565b62001c7673164d53a734f68f2832721c0f1ca859c062c0909f680270801d946c94000062001edf60201b60201c565b62001ca573f4314e597fc3b53d5bef1d5362d327c00388a64f680270801d946c94000062001edf60201b60201c565b62001cd47383a9b9cf068c4f6a47bbd372c5e915350dfc88f7680270801d946c94000062001edf60201b60201c565b62001d0373c86cea81d3c320086ce20efdec2e65d0391364516804e1003b28d928000062001edf60201b60201c565b62001d3273b2c480b570d5d85099ddb62f5bdbf8294eeb7bc46802ed6689e54f18000062001edf60201b60201c565b62001d61736c0ac58a28e14aa72eb4ba1b5c40f3b82b73da016804e1003b28d928000062001edf60201b60201c565b62001d9073035000529cffe9f04db8e81b7a53807e63eeac126804e1003b28d928000062001edf60201b60201c565b62001dbf73759878ffa1a043064f7b1a46869f7360d0e1bed0680270801d946c94000062001edf60201b60201c565b62001dee733151335a0f4dd51fc553c39d3003acbb59568f096803e73362871420000062001edf60201b60201c565b62001e1d731e46fc7c886aacfb46d774d2281c0a64747fd50a680270801d946c94000062001edf60201b60201c565b62001e4c739cf3d7e809d4db6b97281e0092603ed93d84998f680270801d946c94000062001edf60201b60201c565b62001e7b73df219a91c6e6eb0506b5d658b0ebb99aa978195c6803a8c02c5ea2de000062001edf60201b60201c565b62001eaa73452eacc327d4b9764a54e031a33c0d7a4b2907466804e1003b28d928000062001edf60201b60201c565b62001ed9737222659adc246fd757b411d34e786f27e644708c680270801d946c94000062001edf60201b60201c565b620021d8565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562001f83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62001f9f81600254620020a960201b620009a01790919060201c565b60028190555062001ffd816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620020a960201b620009a01790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008082840190508381101562002128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200217557805160ff1916838001178555620021a6565b82800160010185558215620021a6579182015b82811115620021a557825182559160200191906001019062002188565b5b509050620021b59190620021b9565b5090565b5b80821115620021d4576000816000905550600101620021ba565b5090565b61139a80620021e86000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461025857806370a08231146102bc57806395d89b4114610314578063a457c2d714610397578063a9059cbb146103fb578063dd62ed3e1461045f576100a9565b806306fdde03146100ae578063095ea7b31461013157806318160ddd1461019557806323b872dd146101b3578063313ce56714610237575b600080fd5b6100b66104d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f65780820151818401526020810190506100db565b50505050905090810190601f1680156101235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561014757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610579565b60405180821515815260200191505060405180910390f35b61019d610597565b6040518082815260200191505060405180910390f35b61021f600480360360608110156101c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a1565b60405180821515815260200191505060405180910390f35b61023f61067a565b604051808260ff16815260200191505060405180910390f35b6102a46004803603604081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610691565b60405180821515815260200191505060405180910390f35b6102fe600480360360208110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610744565b6040518082815260200191505060405180910390f35b61031c61078c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035c578082015181840152602081019050610341565b50505050905090810190601f1680156103895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061082e565b60405180821515815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108fb565b60405180821515815260200191505060405180910390f35b6104c16004803603604081101561047557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610919565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600061058d610586610a28565b8484610a30565b6001905092915050565b6000600254905090565b60006105ae848484610c27565b61066f846105ba610a28565b61066a856040518060600160405280602881526020016112cf60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610620610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b610a30565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061073a61069e610a28565b8461073585600160006106af610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a090919063ffffffff16565b610a30565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108f161083b610a28565b846108ec856040518060600160405280602581526020016113406025913960016000610865610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b610a30565b6001905092915050565b600061090f610908610a28565b8484610c27565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080828401905083811015610a1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061131c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806112666022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806112f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806112436023913960400191505060405180910390fd5b6000610d3e82610fc6565b9050610d498161100d565b610db482604051806060016040528060268152602001611288602691396000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e59610e0c828461106290919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b6000838311158290610fb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f78578082015181840152602081019050610f5d565b50505050905090810190601f168015610fa55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060065460025411610fdc5760009050611008565b6110056103e8610ff7600754856110ac90919063ffffffff16565b61113290919063ffffffff16565b90505b919050565b6110228160025461106290919063ffffffff16565b6002819055507f16e242caecd49eba32ab5e9940fff8c2d5f0317c244943c46366cf69a845dfbc816040518082815260200191505060405180910390a150565b60006110a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f06565b905092915050565b6000808314156110bf576000905061112c565b60008284029050828482816110d057fe5b0414611127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806112ae6021913960400191505060405180910390fd5b809150505b92915050565b600061117483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061117c565b905092915050565b60008083118290611228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ed5780820151818401526020810190506111d2565b50505050905090810190601f16801561121a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161123457fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122043ee292b4093b9fccccf3e46def9c2d08dc45ed8fbdcde2f4f7f942dc34965b464736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461025857806370a08231146102bc57806395d89b4114610314578063a457c2d714610397578063a9059cbb146103fb578063dd62ed3e1461045f576100a9565b806306fdde03146100ae578063095ea7b31461013157806318160ddd1461019557806323b872dd146101b3578063313ce56714610237575b600080fd5b6100b66104d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f65780820151818401526020810190506100db565b50505050905090810190601f1680156101235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561014757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610579565b60405180821515815260200191505060405180910390f35b61019d610597565b6040518082815260200191505060405180910390f35b61021f600480360360608110156101c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a1565b60405180821515815260200191505060405180910390f35b61023f61067a565b604051808260ff16815260200191505060405180910390f35b6102a46004803603604081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610691565b60405180821515815260200191505060405180910390f35b6102fe600480360360208110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610744565b6040518082815260200191505060405180910390f35b61031c61078c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035c578082015181840152602081019050610341565b50505050905090810190601f1680156103895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061082e565b60405180821515815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108fb565b60405180821515815260200191505060405180910390f35b6104c16004803603604081101561047557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610919565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600061058d610586610a28565b8484610a30565b6001905092915050565b6000600254905090565b60006105ae848484610c27565b61066f846105ba610a28565b61066a856040518060600160405280602881526020016112cf60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610620610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b610a30565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061073a61069e610a28565b8461073585600160006106af610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a090919063ffffffff16565b610a30565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108f161083b610a28565b846108ec856040518060600160405280602581526020016113406025913960016000610865610a28565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b610a30565b6001905092915050565b600061090f610908610a28565b8484610c27565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080828401905083811015610a1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061131c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806112666022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806112f76025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806112436023913960400191505060405180910390fd5b6000610d3e82610fc6565b9050610d498161100d565b610db482604051806060016040528060268152602001611288602691396000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f069092919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e59610e0c828461106290919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109a090919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b6000838311158290610fb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f78578082015181840152602081019050610f5d565b50505050905090810190601f168015610fa55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060065460025411610fdc5760009050611008565b6110056103e8610ff7600754856110ac90919063ffffffff16565b61113290919063ffffffff16565b90505b919050565b6110228160025461106290919063ffffffff16565b6002819055507f16e242caecd49eba32ab5e9940fff8c2d5f0317c244943c46366cf69a845dfbc816040518082815260200191505060405180910390a150565b60006110a483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f06565b905092915050565b6000808314156110bf576000905061112c565b60008284029050828482816110d057fe5b0414611127576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806112ae6021913960400191505060405180910390fd5b809150505b92915050565b600061117483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061117c565b905092915050565b60008083118290611228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ed5780820151818401526020810190506111d2565b50505050905090810190601f16801561121a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161123457fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122043ee292b4093b9fccccf3e46def9c2d08dc45ed8fbdcde2f4f7f942dc34965b464736f6c634300060c0033

Deployed Bytecode Sourcemap

10642:21449:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23307:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25413:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24382:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26064:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24234:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26794:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24545:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23509:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27515:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24877:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25115:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23307:83;23344:13;23377:5;23370:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23307:83;:::o;25413:169::-;25496:4;25513:39;25522:12;:10;:12::i;:::-;25536:7;25545:6;25513:8;:39::i;:::-;25570:4;25563:11;;25413:169;;;;:::o;24382:100::-;24435:7;24462:12;;24455:19;;24382:100;:::o;26064:321::-;26170:4;26187:36;26197:6;26205:9;26216:6;26187:9;:36::i;:::-;26234:121;26243:6;26251:12;:10;:12::i;:::-;26265:89;26303:6;26265:89;;;;;;;;;;;;;;;;;:11;:19;26277:6;26265:19;;;;;;;;;;;;;;;:33;26285:12;:10;:12::i;:::-;26265:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;26234:8;:121::i;:::-;26373:4;26366:11;;26064:321;;;;;:::o;24234:83::-;24275:5;24300:9;;;;;;;;;;;24293:16;;24234:83;:::o;26794:218::-;26882:4;26899:83;26908:12;:10;:12::i;:::-;26922:7;26931:50;26970:10;26931:11;:25;26943:12;:10;:12::i;:::-;26931:25;;;;;;;;;;;;;;;:34;26957:7;26931:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;26899:8;:83::i;:::-;27000:4;26993:11;;26794:218;;;;:::o;24545:119::-;24611:7;24638:9;:18;24648:7;24638:18;;;;;;;;;;;;;;;;24631:25;;24545:119;;;:::o;23509:87::-;23548:13;23581:7;23574:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23509:87;:::o;27515:269::-;27608:4;27625:129;27634:12;:10;:12::i;:::-;27648:7;27657:96;27696:15;27657:96;;;;;;;;;;;;;;;;;:11;:25;27669:12;:10;:12::i;:::-;27657:25;;;;;;;;;;;;;;;:34;27683:7;27657:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;27625:8;:129::i;:::-;27772:4;27765:11;;27515:269;;;;:::o;24877:175::-;24963:4;24980:42;24990:12;:10;:12::i;:::-;25004:9;25015:6;24980:9;:42::i;:::-;25040:4;25033:11;;24877:175;;;;:::o;25115:151::-;25204:7;25231:11;:18;25243:5;25231:18;;;;;;;;;;;;;;;:27;25250:7;25231:27;;;;;;;;;;;;;;;;25224:34;;25115:151;;;;:::o;4882:181::-;4940:7;4960:9;4976:1;4972;:5;4960:17;;5001:1;4996;:6;;4988:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5054:1;5047:8;;;4882:181;;;;:::o;606:106::-;659:15;694:10;687:17;;606:106;:::o;31025:346::-;31144:1;31127:19;;:5;:19;;;;31119:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31225:1;31206:21;;:7;:21;;;;31198:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31309:6;31279:11;:18;31291:5;31279:18;;;;;;;;;;;;;;;:27;31298:7;31279:27;;;;;;;;;;;;;;;:36;;;;31347:7;31331:32;;31340:5;31331:32;;;31356:6;31331:32;;;;;;;;;;;;;;;;;;31025:346;;;:::o;28274:590::-;28398:1;28380:20;;:6;:20;;;;28372:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28482:1;28461:23;;:9;:23;;;;28453:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28537:18;28558:22;28573:6;28558:14;:22::i;:::-;28537:43;;28591:28;28608:10;28591:16;:28::i;:::-;28652:71;28674:6;28652:71;;;;;;;;;;;;;;;;;:9;:17;28662:6;28652:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;28632:9;:17;28642:6;28632:17;;;;;;;;;;;;;;;:91;;;;28757:48;28782:22;28793:10;28782:6;:10;;:22;;;;:::i;:::-;28757:9;:20;28767:9;28757:20;;;;;;;;;;;;;;;;:24;;:48;;;;:::i;:::-;28734:9;:20;28744:9;28734:20;;;;;;;;;;;;;;;:71;;;;28838:9;28821:35;;28830:6;28821:35;;;28849:6;28821:35;;;;;;;;;;;;;;;;;;28274:590;;;;:::o;5785:192::-;5871:7;5904:1;5899;:6;;5907:12;5891:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5931:9;5947:1;5943;:5;5931:17;;5968:1;5961:8;;;5785:192;;;;;:::o;31876:212::-;31947:7;31985:10;;31971:12;;:24;31967:65;;32019:1;32012:8;;;;31967:65;32049:31;32075:4;32049:21;32060:9;;32049:6;:10;;:21;;;;:::i;:::-;:25;;:31;;;;:::i;:::-;32042:38;;31876:212;;;;:::o;30431:156::-;30516:24;30533:6;30516:12;;:16;;:24;;;;:::i;:::-;30501:12;:39;;;;30556:23;30572:6;30556:23;;;;;;;;;;;;;;;;;;30431:156;:::o;5346:136::-;5404:7;5431:43;5435:1;5438;5431:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5424:50;;5346:136;;;;:::o;6236:471::-;6294:7;6544:1;6539;:6;6535:47;;;6569:1;6562:8;;;;6535:47;6594:9;6610:1;6606;:5;6594:17;;6639:1;6634;6630;:5;;;;;;:10;6622:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6698:1;6691:8;;;6236:471;;;;;:::o;7183:132::-;7241:7;7268:39;7272:1;7275;7268:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7261:46;;7183:132;;;;:::o;7811:278::-;7897:7;7929:1;7925;:5;7932:12;7917:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7956:9;7972:1;7968;:5;;;;;;7956:17;;8080:1;8073:8;;;7811:278;;;;;:::o

Swarm Source

ipfs://43ee292b4093b9fccccf3e46def9c2d08dc45ed8fbdcde2f4f7f942dc34965b4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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